code stringlengths 1 1.72M | language stringclasses 1 value |
|---|---|
'''
Created on 3/06/2014
@author: Juan Pablo Moreno - 20111020059
@author:
@author:
@author:
'''
from PyQt4.QtGui import QMainWindow, QDialog, QFileDialog, QSizePolicy
from PyQt4.QtGui import QComboBox, QPushButton, QMessageBox, QLabel
class VentanaMenu(QMainWindow):
def __init__(self):
super(VentanaMenu, self).__init__()
self.inicializar()
def inicializar(self):
self.titulo = QLabel("PROCESAMIENTO DIGITAL DE IMAGENES", self)
self.titulo.move(50,50)
self.titulo.adjustSize()
self.filtrar = QPushButton("Filtrar", self)
self.filtrar.move(100,100)
self.filtrar.clicked.connect(self.abrirFiltrar)
self.analizar = QPushButton("Analizar", self)
self.analizar.move(100,150)
self.analizar.clicked.connect(self.abrirAnalizar)
self.invertir = QPushButton("Invertir", self)
self.invertir.move(100,200)
self.invertir.clicked.connect(self.abrirInvertir)
self.setWindowTitle("Transformada de Fourier")
self.resize(300,300)
self.setSizePolicy(QSizePolicy.Fixed,QSizePolicy.Fixed)
self.show()
def abrirFiltrar(self):
self.ventanaFiltrar = VentanaFiltrar(self)
def abrirAnalizar(self):
archivo = QFileDialog(self)
ruta = archivo.getOpenFileName(self, 'Seleccionar imagen', '', "Images (*.png *.gif *.jpg *.bmp)")
if not ruta.isEmpty():
try:
from core import transformar
img1, img2 = transformar(str(ruta))
ruta1 = archivo.getSaveFileName(self, "Guardar Magnitud", '', "Images (*.png *.gif *.jpg *.bmp)")
img1.save(str(ruta1) + ".png")
ruta2 = archivo.getSaveFileName(self, "Guardar Fase", '', "Images (*.png *.gif *.jpg *.bmp)")
img2.save(str(ruta2) + ".png")
except ImportError:
resp = QMessageBox.information(self, 'Error', 'Hubo un error inesperado',
QMessageBox.Ok, QMessageBox.NoButton)
else:
resp = QMessageBox.information(self, 'Error', 'No ha elegido imagenes',
QMessageBox.Ok, QMessageBox.NoButton)
def abrirInvertir(self):
self.ventanaInversa = VentanaInvertir(self)
class VentanaFiltrar(QDialog):
def __init__(self, padre):
super(VentanaFiltrar, self).__init__(padre)
self.inicializar()
def inicializar(self):
self.titulo = QLabel("SELECCIONE EL FILTRO A APLICAR", self)
self.titulo.move(50,50)
self.titulo.adjustSize()
self.filtros = QComboBox(self)
self.filtros.move(100,100)
self.filtros.sizeAdjustPolicy()
self.filtros.addItem("Low pass filter")
self.filtros.addItem("High pass filter")
self.filtros.addItem("Gaussian filter")
self.filtros.addItem("Pyramidal filter")
self.filtros.addItem("Sinc filter")
self.seleccionar = QPushButton("Seleccionar imagen", self)
self.seleccionar.move(100,200)
self.seleccionar.clicked.connect(self.filtrar)
self.setWindowTitle("Filtrar una imagen")
self.resize(300,300)
self.setWindowModality(1)
self.setSizePolicy(QSizePolicy.Fixed,QSizePolicy.Fixed)
self.show()
def filtrar(self):
archivo = QFileDialog(self)
ruta = archivo.getOpenFileName(self, 'Seleccionar imagen', '', "Images (*.png *.gif *.jpg *.bmp)")
if not ruta.isEmpty():
try:
from core import filtrar
img = filtrar(str(ruta), str(self.filtros.currentText()))
ruta1 = archivo.getSaveFileName(self, "Guardar imagen", '', "Images (*.png *.gif *.jpg *.bmp)")
img.save(str(ruta1) + ".png")
except ImportError:
resp = QMessageBox.information(self, 'Error', 'Hubo un error inesperado',
QMessageBox.Ok, QMessageBox.NoButton)
else:
resp = QMessageBox.information(self, 'Error', 'No ha elegido imagenes',
QMessageBox.Ok, QMessageBox.NoButton)
class VentanaInvertir(QDialog):
def __init__(self, padre):
super(VentanaInvertir, self).__init__(padre)
self.inicializar()
def inicializar(self):
self.titulo = QLabel("SELECCIONE LAS IMAGENES DE MAGNITUD Y FASE", self)
self.titulo.move(50,50)
self.titulo.adjustSize()
self.magnitud = QPushButton("magnitud", self)
self.magnitud.move(100,200)
self.magnitud.clicked.connect(self.seleccionar)
"""
self.fase = QPushButton("fase", self)
self.fase.move(100,150)
self.fase.clicked.connect(self.seleccionar)
"""
self.setWindowTitle("Transformada Inversa")
self.resize(300,300)
self.setWindowModality(1)
self.setSizePolicy(QSizePolicy.Fixed,QSizePolicy.Fixed)
self.show()
def seleccionar(self):
archivo = QFileDialog(self)
ruta1 = archivo.getOpenFileName(self, 'Seleccionar magnitud', '', "Images (*.png *.gif *.jpg *.bmp)")
ruta2 = archivo.getOpenFileName(self, 'Seleccionar fase', '', "Images (*.png *.gif *.jpg *.bmp)")
if not ruta1.isEmpty() and not ruta2.isEmpty():
from core import invertir, NoCorrespondenError
try:
img = invertir((str(ruta1), str(ruta2)))
ruta3 = archivo.getSaveFileName(self, 'Guardar imagen', '', "Images (*.png *.gif *.jpg *.bmp)")
img.save(str(ruta3) + ".png")
except NoCorrespondenError:
resp = QMessageBox.information(self, 'Error', 'Las imagenes no corresponden',
QMessageBox.Ok, QMessageBox.NoButton)
else:
resp = QMessageBox.information(self, 'Error', 'No ha elegido imagenes',
QMessageBox.Ok, QMessageBox.NoButton)
| Python |
from interfaz import VentanaMenu | Python |
#====================================================================
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# ====================================================================
#
# This software consists of voluntary contributions made by many
# individuals on behalf of the Apache Software Foundation. For more
# information on the Apache Software Foundation, please see
# <http://www.apache.org/>.
#
import os
import re
import tempfile
import shutil
ignore_pattern = re.compile('^(.svn|target|bin|classes)')
java_pattern = re.compile('^.*\.java')
annot_pattern = re.compile('import org\.apache\.http\.annotation\.')
def process_dir(dir):
files = os.listdir(dir)
for file in files:
f = os.path.join(dir, file)
if os.path.isdir(f):
if not ignore_pattern.match(file):
process_dir(f)
else:
if java_pattern.match(file):
process_source(f)
def process_source(filename):
tmp = tempfile.mkstemp()
tmpfd = tmp[0]
tmpfile = tmp[1]
try:
changed = False
dst = os.fdopen(tmpfd, 'w')
try:
src = open(filename)
try:
for line in src:
if annot_pattern.match(line):
changed = True
line = line.replace('import org.apache.http.annotation.', 'import net.jcip.annotations.')
dst.write(line)
finally:
src.close()
finally:
dst.close();
if changed:
shutil.move(tmpfile, filename)
else:
os.remove(tmpfile)
except:
os.remove(tmpfile)
process_dir('.')
| Python |
#!/usr/bin/python
from bottle import route,run,get,post,response,static_file,request
import cv2,cv
import thread
import base64
#import carcontrol module
from controlServer import *
cam=cv2.VideoCapture(0)
if(cam.isOpened()==False):
print("cant open cam")
exit()
cam.set(cv.CV_CAP_PROP_FRAME_WIDTH,320)
cam.set(cv.CV_CAP_PROP_FRAME_HEIGHT,240)
gimg=''
#get image from cam
def img_thread():
global cam
global gimg
while True:
ret,gimg=cam.read()
#respone image for ajax by base64 string
@get('/getImg')
def get_img2ba_base64():
global gimg
jpg_img=cv2.imencode(".jpeg",gimg)[1].tostring()
encoded_str=base64.b64encode(jpg_img)
return encoded_str
#control rccar
@post('/rccar')
def control_rccar():
cmd=request.forms.get('cmd')
print cmd
if cmd == "GO":
forward()
elif cmd == "LEFT":
left()
elif cmd == "STOP":
stop()
elif cmd == "RIGHT":
right()
elif cmd == "BACK":
backward()
return ''
@route('/')
def do_route():
return static_file("index.html",root=".")
thread.start_new_thread(img_thread,())
run(host='192.168.0.14', port=8080)
| Python |
import RPi.GPIO as gpio
import RPi.GPIO as GPIO
import time
import thread
from threading import *
GPIO_SIG = 8
#Motor 1 GPIO Pin
IC1A = 25
IC2A = 10
#Motor 2 GPIO Pin
IC3A = 17
IC4A = 4
#get semaphore
sem=Semaphore()
def getAndPrint():
for i in range(100):
global sem
sem.acquire()
measurementInCM()
sem.release()
gpio.cleanup()
def measurementInCM():
gpio.setmode(gpio.BOARD)
gpio.setup(GPIO_SIG, gpio.OUT)
gpio.output(GPIO_SIG, gpio.LOW)
time.sleep(0.2)
gpio.output(GPIO_SIG, gpio.HIGH)
time.sleep(0.5)
gpio.output(GPIO_SIG, gpio.LOW)
start = time.time()
gpio.setup(GPIO_SIG, gpio.IN)
while gpio.input(GPIO_SIG) == 0:
start = time.time()
while gpio.input(GPIO_SIG) == 1:
stop = time.time()
measurementPulse(start, stop)
def measurementPulse(start, stop):
elapsed = stop-start
distance = elapsed * 34300
distance = distance / 2
if distance <= 20:
gpio.setmode(gpio.BCM)
gpio.output(IC1A, gpio.LOW)
gpio.output(IC2A, gpio.LOW)
gpio.output(IC3A, gpio.LOW)
gpio.output(IC4A, gpio.LOW)
print "Distance : %.lf CM" % distance
def forward():
global sem
sem.acquire()
gpio.setmode(gpio.BCM)
gpio.output(IC3A, gpio.HIGH)
gpio.output(IC4A, gpio.HIGH)
sem.release()
def backward():
global sem
sem.acquire()
gpio.setmode(gpio.BCM)
gpio.output(IC3A, gpio.HIGH)
gpio.output(IC4A, gpio.LOW)
sem.release()
def left():
global sem
sem.acquire()
gpio.setmode(gpio.BCM)
gpio.output(IC1A, gpio.HIGH)
gpio.output(IC2A, gpio.HIGH)
sem.release()
def right():
global sem
sem.acquire()
gpio.setmode(gpio.BCM)
gpio.output(IC1A, gpio.LOW)
gpio.output(IC2A, gpio.HIGH)
sem.release()
def stop():
global sem
sem.acquire()
gpio.setmode(gpio.BCM)
gpio.output(IC1A, gpio.LOW)
gpio.output(IC2A, gpio.LOW)
gpio.output(IC3A, gpio.LOW)
gpio.output(IC4A, gpio.LOW)
sem.release()
gpio.setwarnings(False)
gpio.setmode( gpio.BCM )
#Pin Output Setup
gpio.setup(IC1A, gpio.OUT)
gpio.setup(IC2A, gpio.OUT)
gpio.setup(IC3A, gpio.OUT)
gpio.setup(IC4A, gpio.OUT)
#Pin Initialization
gpio.output(IC1A, gpio.LOW)
gpio.output(IC2A, gpio.LOW)
gpio.output(IC3A, gpio.LOW)
gpio.output(IC4A, gpio.LOW)
#thread start
thread.start_new_thread(getAndPrint, ())
| Python |
# -*- coding: utf-8 -*-
"""
Created on Mon May 05 14:51:22 2014
@author: JuanMed
"""
lectura = 0
inp = raw_input("Ingrese la conversion ADC obtenida (de 0 a 4096): ")
lectura = int(inp)
lectura = (lectura*2.5)/4096
print "Voltaje en ADC: ",lectura
lectura = (lectura * 2)
print "Voltaje en Paneles (a desplegar en GCS): ",lectura
| Python |
#!/usr/bin/python3
#coding=utf-8
import os
#读取文件列表
f=open('etc/list')
clist=[]
for line in f:
if len(line.strip('\n').strip('\r'))>0:
clist.append(line.strip('\n').strip('\r'))
#生成文档
docCommand='java -jar lib/jsdoc/jsrun.jar lib/jsdoc/app/run.js \
-a -v -p -t=lib/jsdoc/templates/CodeView -D="title:Castle API" -D="noGlobal:true" -d=doc -o=log/doc.log'
for line in clist:
docCommand+=' src/'+line+'.js'
print('生成文档中...')
res=os.system(docCommand)
if res>0:
print('生成文档失败')
quit(2)
print('生成文档成功')
#压缩.js文件
comCommand='java -jar lib/closure/compiler.jar \
--js_output_file out/core.js \
--compilation_level SIMPLE_OPTIMIZATIONS \
--language_in ECMASCRIPT5 --js'
for line in clist:
comCommand+=' src/'+line+'.js'
print ('代码压缩中...')
res=os.system(comCommand)
if res>0:
print('代码压缩失败')
quit(3)
print ('代码压缩成功')
| Python |
#!/usr/bin/python3
#coding=utf-8
import os
#读取文件列表
f=open('etc/list')
clist=[]
for line in f:
if len(line.strip('\n').strip('\r'))>0:
clist.append(line.strip('\n').strip('\r'))
#生成文档
docCommand='java -jar lib/jsdoc/jsrun.jar lib/jsdoc/app/run.js \
-a -v -p -t=lib/jsdoc/templates/CodeView -D="title:Castle API" -D="noGlobal:true" -d=doc -o=log/doc.log'
for line in clist:
docCommand+=' src/'+line+'.js'
print('生成文档中...')
res=os.system(docCommand)
if res>0:
print('生成文档失败')
quit(2)
print('生成文档成功')
#压缩.js文件
comCommand='java -jar lib/closure/compiler.jar \
--js_output_file out/core.js \
--compilation_level SIMPLE_OPTIMIZATIONS \
--language_in ECMASCRIPT5 --js'
for line in clist:
comCommand+=' src/'+line+'.js'
print ('代码压缩中...')
res=os.system(comCommand)
if res>0:
print('代码压缩失败')
quit(3)
print ('代码压缩成功')
| Python |
__version__ = '1.3.0'
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.properties import NumericProperty, OptionProperty, ObjectProperty
from kivy.graphics import Color, BorderImage
from kivy.clock import Clock
from kivy.vector import Vector
from kivy.metrics import dp
from kivy.animation import Animation
from kivy.utils import get_color_from_hex
from kivy.core.window import Window
from kivy.utils import platform
from kivy.factory import Factory
from random import choice, random
platform = platform()
app = None
if platform == 'android':
# Support for Google Play
import gs_android
leaderboard_highscore = 'CgkI0InGg4IYEAIQBg'
achievement_block_32 = 'CgkI0InGg4IYEAIQCg'
achievement_block_64 = 'CgkI0InGg4IYEAIQCQ'
achievement_block_128 = 'CgkI0InGg4IYEAIQAQ'
achievement_block_256 = 'CgkI0InGg4IYEAIQAg'
achievement_block_512 = 'CgkI0InGg4IYEAIQAw'
achievement_block_1024 = 'CgkI0InGg4IYEAIQBA'
achievement_block_2048 = 'CgkI0InGg4IYEAIQBQ'
achievement_block_4096 = 'CgkI0InGg4IYEAIQEg'
achievement_100x_block_512 = 'CgkI0InGg4IYEAIQDA'
achievement_1000x_block_512 = 'CgkI0InGg4IYEAIQDQ'
achievement_100x_block_1024 = 'CgkI0InGg4IYEAIQDg'
achievement_1000x_block_1024 = 'CgkI0InGg4IYEAIQDw'
achievement_10x_block_2048 = 'CgkI0InGg4IYEAIQEA'
achievements = {
32: achievement_block_32,
64: achievement_block_64,
128: achievement_block_128,
256: achievement_block_256,
512: achievement_block_512,
1024: achievement_block_1024,
2048: achievement_block_2048,
4096: achievement_block_4096}
from kivy.uix.popup import Popup
class GooglePlayPopup(Popup):
pass
else:
achievements = {}
class ButtonBehavior(object):
# XXX this is a port of the Kivy 1.8.0 version, the current android versino
# still use 1.7.2. This is going to be removed soon.
state = OptionProperty('normal', options=('normal', 'down'))
last_touch = ObjectProperty(None)
def __init__(self, **kwargs):
self.register_event_type('on_press')
self.register_event_type('on_release')
super(ButtonBehavior, self).__init__(**kwargs)
def _do_press(self):
self.state = 'down'
def _do_release(self):
self.state = 'normal'
def on_touch_down(self, touch):
if super(ButtonBehavior, self).on_touch_down(touch):
return True
if touch.is_mouse_scrolling:
return False
if not self.collide_point(touch.x, touch.y):
return False
if self in touch.ud:
return False
touch.grab(self)
touch.ud[self] = True
self.last_touch = touch
self._do_press()
self.dispatch('on_press')
return True
def on_touch_move(self, touch):
if touch.grab_current is self:
return True
if super(ButtonBehavior, self).on_touch_move(touch):
return True
return self in touch.ud
def on_touch_up(self, touch):
if touch.grab_current is not self:
return super(ButtonBehavior, self).on_touch_up(touch)
assert(self in touch.ud)
touch.ungrab(self)
self.last_touch = touch
self._do_release()
self.dispatch('on_release')
return True
def on_press(self):
pass
def on_release(self):
pass
class Number(Widget):
number = NumericProperty(2)
scale = NumericProperty(.1)
colors = {
2: get_color_from_hex('#eee4da'),
4: get_color_from_hex('#ede0c8'),
8: get_color_from_hex('#f2b179'),
16: get_color_from_hex('#f59563'),
32: get_color_from_hex('#f67c5f'),
64: get_color_from_hex('#f65e3b'),
128: get_color_from_hex('#edcf72'),
256: get_color_from_hex('#edcc61'),
512: get_color_from_hex('#edc850'),
1024: get_color_from_hex('#edc53f'),
2048: get_color_from_hex('#edc22e'),
4096: get_color_from_hex('#ed702e'),
8192: get_color_from_hex('#ed4c2e')}
def __init__(self, **kwargs):
super(Number, self).__init__(**kwargs)
anim = Animation(scale=1., d=.15, t='out_quad')
anim.bind(on_complete=self.clean_canvas)
anim.start(self)
def clean_canvas(self, *args):
self.canvas.before.clear()
self.canvas.after.clear()
def move_to_and_destroy(self, pos):
self.destroy()
#anim = Animation(opacity=0., d=.25, t='out_quad')
#anim.bind(on_complete=self.destroy)
#anim.start(self)
def destroy(self, *args):
self.parent.remove_widget(self)
def move_to(self, pos):
if self.pos == pos:
return
Animation(pos=pos, d=.1, t='out_quad').start(self)
def on_number(self, instance, value):
if platform == 'android':
if value in achievements:
app.gs_unlock(achievements[value])
if value == 512:
app.gs_increment(achievement_100x_block_512)
app.gs_increment(achievement_1000x_block_512)
elif value == 1024:
app.gs_increment(achievement_100x_block_1024)
app.gs_increment(achievement_1000x_block_1024)
elif value == 2048:
app.gs_increment(achievement_10x_block_2048)
class Game2048(Widget):
cube_size = NumericProperty(10)
cube_padding = NumericProperty(10)
score = NumericProperty(0)
def __init__(self, **kwargs):
super(Game2048, self).__init__()
self.grid = [
[None, None, None, None],
[None, None, None, None],
[None, None, None, None],
[None, None, None, None]]
# bind keyboard
Window.bind(on_key_down=self.on_key_down)
Window.on_keyboard = lambda *x: None
self.restart()
def on_key_down(self, window, key, *args):
if key == 273:
self.move_topdown(True)
elif key == 274:
self.move_topdown(False)
elif key == 276:
self.move_leftright(False)
elif key == 275:
self.move_leftright(True)
elif key == 27 and platform == 'android':
from jnius import autoclass
PythonActivity = autoclass('org.renpy.android.PythonActivity')
PythonActivity.mActivity.moveTaskToBack(True)
return True
def rebuild_background(self):
self.canvas.before.clear()
with self.canvas.before:
Color(0xbb / 255., 0xad / 255., 0xa0 / 255.)
BorderImage(pos=self.pos, size=self.size, source='data/round.png')
Color(0xcc / 255., 0xc0 / 255., 0xb3 / 255.)
csize = self.cube_size, self.cube_size
for ix, iy in self.iterate_pos():
BorderImage(pos=self.index_to_pos(ix, iy), size=csize,
source='data/round.png')
def reposition(self, *args):
self.rebuild_background()
# calculate the size of a number
l = min(self.width, self.height)
padding = (l / 4.) / 8.
cube_size = (l - (padding * 5)) / 4.
self.cube_size = cube_size
self.cube_padding = padding
for ix, iy, number in self.iterate():
number.size = cube_size, cube_size
number.pos = self.index_to_pos(ix, iy)
def iterate(self):
for ix, iy in self.iterate_pos():
child = self.grid[ix][iy]
if child:
yield ix, iy, child
def iterate_empty(self):
for ix, iy in self.iterate_pos():
child = self.grid[ix][iy]
if not child:
yield ix, iy
def iterate_pos(self):
for ix in range(4):
for iy in range(4):
yield ix, iy
def index_to_pos(self, ix, iy):
padding = self.cube_padding
cube_size = self.cube_size
return [
(self.x + padding) + ix * (cube_size + padding),
(self.y + padding) + iy * (cube_size + padding)]
def spawn_number(self, *args):
empty = list(self.iterate_empty())
if not empty:
return
value = 2 if random() < .9 else 4
ix, iy = choice(empty)
self.spawn_number_at(ix, iy, value)
def spawn_number_at(self, ix, iy, value):
number = Number(
size=(self.cube_size, self.cube_size),
pos=self.index_to_pos(ix, iy),
number=value)
self.grid[ix][iy] = number
self.add_widget(number)
def on_touch_up(self, touch):
v = Vector(touch.pos) - Vector(touch.opos)
if v.length() < dp(20):
return
# detect direction
dx, dy = v
if abs(dx) > abs(dy):
self.move_leftright(dx > 0)
else:
self.move_topdown(dy > 0)
return True
def move_leftright(self, right):
r = range(3, -1, -1) if right else range(4)
grid = self.grid
moved = False
for iy in range(4):
# get all the cube for the current line
cubes = []
for ix in r:
cube = grid[ix][iy]
if cube:
cubes.append(cube)
# combine them
self.combine(cubes)
# update the grid
for ix in r:
cube = cubes.pop(0) if cubes else None
if grid[ix][iy] != cube:
moved = True
grid[ix][iy] = cube
if not cube:
continue
pos = self.index_to_pos(ix, iy)
if cube.pos != pos:
cube.move_to(pos)
if not self.check_end() and moved:
Clock.schedule_once(self.spawn_number, .20)
def move_topdown(self, top):
r = range(3, -1, -1) if top else range(4)
grid = self.grid
moved = False
for ix in range(4):
# get all the cube for the current line
cubes = []
for iy in r:
cube = grid[ix][iy]
if cube:
cubes.append(cube)
# combine them
self.combine(cubes)
# update the grid
for iy in r:
cube = cubes.pop(0) if cubes else None
if grid[ix][iy] != cube:
moved = True
grid[ix][iy] = cube
if not cube:
continue
pos = self.index_to_pos(ix, iy)
if cube.pos != pos:
cube.move_to(pos)
if not self.check_end() and moved:
Clock.schedule_once(self.spawn_number, .20)
def combine(self, cubes):
if len(cubes) <= 1:
return cubes
index = 0
while index < len(cubes) - 1:
cube1 = cubes[index]
cube2 = cubes[index + 1]
if cube1.number == cube2.number:
cube1.number *= 2
self.score += cube1.number
cube2.move_to_and_destroy(cube1.pos)
del cubes[index + 1]
index += 1
def check_end(self):
# we still have empty space
if any(self.iterate_empty()):
return False
# check if 2 numbers of the same type are near each others
if self.have_available_moves():
return False
self.end()
return True
def have_available_moves(self):
grid = self.grid
for iy in range(4):
for ix in range(3):
cube1 = grid[ix][iy]
cube2 = grid[ix + 1][iy]
if cube1.number == cube2.number:
return True
for ix in range(4):
for iy in range(3):
cube1 = grid[ix][iy]
cube2 = grid[ix][iy + 1]
if cube1.number == cube2.number:
return True
def end(self):
end = self.ids.end.__self__
self.remove_widget(end)
self.add_widget(end)
text = 'Game\nover!'
for ix, iy, cube in self.iterate():
if cube.number == 2048:
text = 'WIN !'
self.ids.end_label.text = text
Animation(opacity=1., d=.5).start(end)
app.gs_score(self.score)
def restart(self):
self.score = 0
for ix, iy, child in self.iterate():
child.destroy()
self.grid = [
[None, None, None, None],
[None, None, None, None],
[None, None, None, None],
[None, None, None, None]]
self.reposition()
Clock.schedule_once(self.spawn_number, .1)
Clock.schedule_once(self.spawn_number, .1)
self.ids.end.opacity = 0
class Game2048App(App):
use_kivy_settings = False
def build_config(self, config):
if platform == 'android':
config.setdefaults('play', {'use_google_play': '0'})
def build(self):
global app
app = self
if platform == 'android':
self.use_google_play = self.config.getint('play', 'use_google_play')
if self.use_google_play:
gs_android.setup(self)
else:
Clock.schedule_once(self.ask_google_play, .5)
else:
# remove all the leaderboard and achievement buttons
scoring = self.root.ids.scoring
scoring.parent.remove_widget(scoring)
def gs_increment(self, uid):
if platform == 'android' and self.use_google_play:
gs_android.increment(uid, 1)
def gs_unlock(self, uid):
if platform == 'android' and self.use_google_play:
gs_android.unlock(uid)
def gs_score(self, score):
if platform == 'android' and self.use_google_play:
gs_android.leaderboard(leaderboard_highscore, score)
def gs_show_achievements(self):
if platform == 'android':
if self.use_google_play:
gs_android.show_achievements()
else:
self.ask_google_play()
def gs_show_leaderboard(self):
if platform == 'android':
if self.use_google_play:
gs_android.show_leaderboard(leaderboard_highscore)
else:
self.ask_google_play()
def ask_google_play(self, *args):
popup = GooglePlayPopup()
popup.open()
def activate_google_play(self):
self.config.set('play', 'use_google_play', '1')
self.config.write()
self.use_google_play = 1
gs_android.setup(self)
def on_pause(self):
if platform == 'android':
gs_android.on_stop()
return True
def on_resume(self):
if platform == 'android':
gs_android.on_start()
def _on_keyboard_settings(self, *args):
return
if __name__ == '__main__':
Factory.register('ButtonBehavior', cls=ButtonBehavior)
Game2048App().run()
| Python |
# Game services for Android
from jnius import autoclass, PythonJavaClass, java_method
from android.runnable import run_on_ui_thread
import android
import android.activity
PythonActivity = autoclass('org.renpy.android.PythonActivity')
GameHelper = autoclass('com.google.example.games.basegameutils.GameHelper')
Games = autoclass('com.google.android.gms.games.Games')
class GameHelperListener(PythonJavaClass):
__javacontext__ = 'app'
__javainterfaces__ = ['com.google.example.games.basegameutils.GameHelper$GameHelperListener']
@java_method('()V')
def onSignInFailed(self):
print 'signing failed :('
@java_method('()V')
def onSignInSucceeded(self):
print 'signin success :)'
gh_instance = None
gh_instance_listener = None
def _on_activity_result(request, response, data):
gh_instance.onActivityResult(request, response, data)
@run_on_ui_thread
def setup(app):
global gh_instance
global gh_instance_listener
gh_instance = GameHelper(PythonActivity.mActivity, GameHelper.CLIENT_ALL)
#gh_instance.enableDebugLog(True)
gh_instance_listener = GameHelperListener()
gh_instance.setup(gh_instance_listener)
gh_instance.onStart(PythonActivity.mActivity)
android.activity.unbind(on_activity_result=_on_activity_result)
android.activity.bind(on_activity_result=_on_activity_result)
def unlock(uid):
if not gh_instance.isSignedIn():
return
Games.Achievements.unlock(gh_instance.getApiClient(), uid)
def increment(uid, count):
if not gh_instance.isSignedIn():
return
Games.Achievements.increment(gh_instance.getApiClient(), uid, count)
def leaderboard(uid, score):
if not gh_instance.isSignedIn():
return
Games.Leaderboards.submitScore(gh_instance.getApiClient(), uid, score)
def show_leaderboard(uid):
if not gh_instance.isSignedIn():
return
PythonActivity.mActivity.startActivityForResult(
Games.Leaderboards.getLeaderboardIntent(
gh_instance.getApiClient(), uid), 0x6601)
def show_achievements():
if not gh_instance.isSignedIn():
return
PythonActivity.mActivity.startActivityForResult(
Games.Achievements.getAchievementsIntent(
gh_instance.getApiClient()), 0x6602)
def on_stop():
gh_instance.onStop()
def on_start():
gh_instance.onStart(PythonActivity.mActivity)
| Python |
__version__ = '1.3.0'
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.properties import NumericProperty, OptionProperty, ObjectProperty
from kivy.graphics import Color, BorderImage
from kivy.clock import Clock
from kivy.vector import Vector
from kivy.metrics import dp
from kivy.animation import Animation
from kivy.utils import get_color_from_hex
from kivy.core.window import Window
from kivy.utils import platform
from kivy.factory import Factory
from random import choice, random
platform = platform()
app = None
if platform == 'android':
# Support for Google Play
import gs_android
leaderboard_highscore = 'CgkI0InGg4IYEAIQBg'
achievement_block_32 = 'CgkI0InGg4IYEAIQCg'
achievement_block_64 = 'CgkI0InGg4IYEAIQCQ'
achievement_block_128 = 'CgkI0InGg4IYEAIQAQ'
achievement_block_256 = 'CgkI0InGg4IYEAIQAg'
achievement_block_512 = 'CgkI0InGg4IYEAIQAw'
achievement_block_1024 = 'CgkI0InGg4IYEAIQBA'
achievement_block_2048 = 'CgkI0InGg4IYEAIQBQ'
achievement_block_4096 = 'CgkI0InGg4IYEAIQEg'
achievement_100x_block_512 = 'CgkI0InGg4IYEAIQDA'
achievement_1000x_block_512 = 'CgkI0InGg4IYEAIQDQ'
achievement_100x_block_1024 = 'CgkI0InGg4IYEAIQDg'
achievement_1000x_block_1024 = 'CgkI0InGg4IYEAIQDw'
achievement_10x_block_2048 = 'CgkI0InGg4IYEAIQEA'
achievements = {
32: achievement_block_32,
64: achievement_block_64,
128: achievement_block_128,
256: achievement_block_256,
512: achievement_block_512,
1024: achievement_block_1024,
2048: achievement_block_2048,
4096: achievement_block_4096}
from kivy.uix.popup import Popup
class GooglePlayPopup(Popup):
pass
else:
achievements = {}
class ButtonBehavior(object):
# XXX this is a port of the Kivy 1.8.0 version, the current android versino
# still use 1.7.2. This is going to be removed soon.
state = OptionProperty('normal', options=('normal', 'down'))
last_touch = ObjectProperty(None)
def __init__(self, **kwargs):
self.register_event_type('on_press')
self.register_event_type('on_release')
super(ButtonBehavior, self).__init__(**kwargs)
def _do_press(self):
self.state = 'down'
def _do_release(self):
self.state = 'normal'
def on_touch_down(self, touch):
if super(ButtonBehavior, self).on_touch_down(touch):
return True
if touch.is_mouse_scrolling:
return False
if not self.collide_point(touch.x, touch.y):
return False
if self in touch.ud:
return False
touch.grab(self)
touch.ud[self] = True
self.last_touch = touch
self._do_press()
self.dispatch('on_press')
return True
def on_touch_move(self, touch):
if touch.grab_current is self:
return True
if super(ButtonBehavior, self).on_touch_move(touch):
return True
return self in touch.ud
def on_touch_up(self, touch):
if touch.grab_current is not self:
return super(ButtonBehavior, self).on_touch_up(touch)
assert(self in touch.ud)
touch.ungrab(self)
self.last_touch = touch
self._do_release()
self.dispatch('on_release')
return True
def on_press(self):
pass
def on_release(self):
pass
class Number(Widget):
number = NumericProperty(2)
scale = NumericProperty(.1)
colors = {
2: get_color_from_hex('#eee4da'),
4: get_color_from_hex('#ede0c8'),
8: get_color_from_hex('#f2b179'),
16: get_color_from_hex('#f59563'),
32: get_color_from_hex('#f67c5f'),
64: get_color_from_hex('#f65e3b'),
128: get_color_from_hex('#edcf72'),
256: get_color_from_hex('#edcc61'),
512: get_color_from_hex('#edc850'),
1024: get_color_from_hex('#edc53f'),
2048: get_color_from_hex('#edc22e'),
4096: get_color_from_hex('#ed702e'),
8192: get_color_from_hex('#ed4c2e')}
def __init__(self, **kwargs):
super(Number, self).__init__(**kwargs)
anim = Animation(scale=1., d=.15, t='out_quad')
anim.bind(on_complete=self.clean_canvas)
anim.start(self)
def clean_canvas(self, *args):
self.canvas.before.clear()
self.canvas.after.clear()
def move_to_and_destroy(self, pos):
self.destroy()
#anim = Animation(opacity=0., d=.25, t='out_quad')
#anim.bind(on_complete=self.destroy)
#anim.start(self)
def destroy(self, *args):
self.parent.remove_widget(self)
def move_to(self, pos):
if self.pos == pos:
return
Animation(pos=pos, d=.1, t='out_quad').start(self)
def on_number(self, instance, value):
if platform == 'android':
if value in achievements:
app.gs_unlock(achievements[value])
if value == 512:
app.gs_increment(achievement_100x_block_512)
app.gs_increment(achievement_1000x_block_512)
elif value == 1024:
app.gs_increment(achievement_100x_block_1024)
app.gs_increment(achievement_1000x_block_1024)
elif value == 2048:
app.gs_increment(achievement_10x_block_2048)
class Game2048(Widget):
cube_size = NumericProperty(10)
cube_padding = NumericProperty(10)
score = NumericProperty(0)
def __init__(self, **kwargs):
super(Game2048, self).__init__()
self.grid = [
[None, None, None, None],
[None, None, None, None],
[None, None, None, None],
[None, None, None, None]]
# bind keyboard
Window.bind(on_key_down=self.on_key_down)
Window.on_keyboard = lambda *x: None
self.restart()
def on_key_down(self, window, key, *args):
if key == 273:
self.move_topdown(True)
elif key == 274:
self.move_topdown(False)
elif key == 276:
self.move_leftright(False)
elif key == 275:
self.move_leftright(True)
elif key == 27 and platform == 'android':
from jnius import autoclass
PythonActivity = autoclass('org.renpy.android.PythonActivity')
PythonActivity.mActivity.moveTaskToBack(True)
return True
def rebuild_background(self):
self.canvas.before.clear()
with self.canvas.before:
Color(0xbb / 255., 0xad / 255., 0xa0 / 255.)
BorderImage(pos=self.pos, size=self.size, source='data/round.png')
Color(0xcc / 255., 0xc0 / 255., 0xb3 / 255.)
csize = self.cube_size, self.cube_size
for ix, iy in self.iterate_pos():
BorderImage(pos=self.index_to_pos(ix, iy), size=csize,
source='data/round.png')
def reposition(self, *args):
self.rebuild_background()
# calculate the size of a number
l = min(self.width, self.height)
padding = (l / 4.) / 8.
cube_size = (l - (padding * 5)) / 4.
self.cube_size = cube_size
self.cube_padding = padding
for ix, iy, number in self.iterate():
number.size = cube_size, cube_size
number.pos = self.index_to_pos(ix, iy)
def iterate(self):
for ix, iy in self.iterate_pos():
child = self.grid[ix][iy]
if child:
yield ix, iy, child
def iterate_empty(self):
for ix, iy in self.iterate_pos():
child = self.grid[ix][iy]
if not child:
yield ix, iy
def iterate_pos(self):
for ix in range(4):
for iy in range(4):
yield ix, iy
def index_to_pos(self, ix, iy):
padding = self.cube_padding
cube_size = self.cube_size
return [
(self.x + padding) + ix * (cube_size + padding),
(self.y + padding) + iy * (cube_size + padding)]
def spawn_number(self, *args):
empty = list(self.iterate_empty())
if not empty:
return
value = 2 if random() < .9 else 4
ix, iy = choice(empty)
self.spawn_number_at(ix, iy, value)
def spawn_number_at(self, ix, iy, value):
number = Number(
size=(self.cube_size, self.cube_size),
pos=self.index_to_pos(ix, iy),
number=value)
self.grid[ix][iy] = number
self.add_widget(number)
def on_touch_up(self, touch):
v = Vector(touch.pos) - Vector(touch.opos)
if v.length() < dp(20):
return
# detect direction
dx, dy = v
if abs(dx) > abs(dy):
self.move_leftright(dx > 0)
else:
self.move_topdown(dy > 0)
return True
def move_leftright(self, right):
r = range(3, -1, -1) if right else range(4)
grid = self.grid
moved = False
for iy in range(4):
# get all the cube for the current line
cubes = []
for ix in r:
cube = grid[ix][iy]
if cube:
cubes.append(cube)
# combine them
self.combine(cubes)
# update the grid
for ix in r:
cube = cubes.pop(0) if cubes else None
if grid[ix][iy] != cube:
moved = True
grid[ix][iy] = cube
if not cube:
continue
pos = self.index_to_pos(ix, iy)
if cube.pos != pos:
cube.move_to(pos)
if not self.check_end() and moved:
Clock.schedule_once(self.spawn_number, .20)
def move_topdown(self, top):
r = range(3, -1, -1) if top else range(4)
grid = self.grid
moved = False
for ix in range(4):
# get all the cube for the current line
cubes = []
for iy in r:
cube = grid[ix][iy]
if cube:
cubes.append(cube)
# combine them
self.combine(cubes)
# update the grid
for iy in r:
cube = cubes.pop(0) if cubes else None
if grid[ix][iy] != cube:
moved = True
grid[ix][iy] = cube
if not cube:
continue
pos = self.index_to_pos(ix, iy)
if cube.pos != pos:
cube.move_to(pos)
if not self.check_end() and moved:
Clock.schedule_once(self.spawn_number, .20)
def combine(self, cubes):
if len(cubes) <= 1:
return cubes
index = 0
while index < len(cubes) - 1:
cube1 = cubes[index]
cube2 = cubes[index + 1]
if cube1.number == cube2.number:
cube1.number *= 2
self.score += cube1.number
cube2.move_to_and_destroy(cube1.pos)
del cubes[index + 1]
index += 1
def check_end(self):
# we still have empty space
if any(self.iterate_empty()):
return False
# check if 2 numbers of the same type are near each others
if self.have_available_moves():
return False
self.end()
return True
def have_available_moves(self):
grid = self.grid
for iy in range(4):
for ix in range(3):
cube1 = grid[ix][iy]
cube2 = grid[ix + 1][iy]
if cube1.number == cube2.number:
return True
for ix in range(4):
for iy in range(3):
cube1 = grid[ix][iy]
cube2 = grid[ix][iy + 1]
if cube1.number == cube2.number:
return True
def end(self):
end = self.ids.end.__self__
self.remove_widget(end)
self.add_widget(end)
text = 'Game\nover!'
for ix, iy, cube in self.iterate():
if cube.number == 2048:
text = 'WIN !'
self.ids.end_label.text = text
Animation(opacity=1., d=.5).start(end)
app.gs_score(self.score)
def restart(self):
self.score = 0
for ix, iy, child in self.iterate():
child.destroy()
self.grid = [
[None, None, None, None],
[None, None, None, None],
[None, None, None, None],
[None, None, None, None]]
self.reposition()
Clock.schedule_once(self.spawn_number, .1)
Clock.schedule_once(self.spawn_number, .1)
self.ids.end.opacity = 0
class Game2048App(App):
use_kivy_settings = False
def build_config(self, config):
if platform == 'android':
config.setdefaults('play', {'use_google_play': '0'})
def build(self):
global app
app = self
if platform == 'android':
self.use_google_play = self.config.getint('play', 'use_google_play')
if self.use_google_play:
gs_android.setup(self)
else:
Clock.schedule_once(self.ask_google_play, .5)
else:
# remove all the leaderboard and achievement buttons
scoring = self.root.ids.scoring
scoring.parent.remove_widget(scoring)
def gs_increment(self, uid):
if platform == 'android' and self.use_google_play:
gs_android.increment(uid, 1)
def gs_unlock(self, uid):
if platform == 'android' and self.use_google_play:
gs_android.unlock(uid)
def gs_score(self, score):
if platform == 'android' and self.use_google_play:
gs_android.leaderboard(leaderboard_highscore, score)
def gs_show_achievements(self):
if platform == 'android':
if self.use_google_play:
gs_android.show_achievements()
else:
self.ask_google_play()
def gs_show_leaderboard(self):
if platform == 'android':
if self.use_google_play:
gs_android.show_leaderboard(leaderboard_highscore)
else:
self.ask_google_play()
def ask_google_play(self, *args):
popup = GooglePlayPopup()
popup.open()
def activate_google_play(self):
self.config.set('play', 'use_google_play', '1')
self.config.write()
self.use_google_play = 1
gs_android.setup(self)
def on_pause(self):
if platform == 'android':
gs_android.on_stop()
return True
def on_resume(self):
if platform == 'android':
gs_android.on_start()
def _on_keyboard_settings(self, *args):
return
if __name__ == '__main__':
Factory.register('ButtonBehavior', cls=ButtonBehavior)
Game2048App().run()
| Python |
# Game services for Android
from jnius import autoclass, PythonJavaClass, java_method
from android.runnable import run_on_ui_thread
import android
import android.activity
PythonActivity = autoclass('org.renpy.android.PythonActivity')
GameHelper = autoclass('com.google.example.games.basegameutils.GameHelper')
Games = autoclass('com.google.android.gms.games.Games')
class GameHelperListener(PythonJavaClass):
__javacontext__ = 'app'
__javainterfaces__ = ['com.google.example.games.basegameutils.GameHelper$GameHelperListener']
@java_method('()V')
def onSignInFailed(self):
print 'signing failed :('
@java_method('()V')
def onSignInSucceeded(self):
print 'signin success :)'
gh_instance = None
gh_instance_listener = None
def _on_activity_result(request, response, data):
gh_instance.onActivityResult(request, response, data)
@run_on_ui_thread
def setup(app):
global gh_instance
global gh_instance_listener
gh_instance = GameHelper(PythonActivity.mActivity, GameHelper.CLIENT_ALL)
#gh_instance.enableDebugLog(True)
gh_instance_listener = GameHelperListener()
gh_instance.setup(gh_instance_listener)
gh_instance.onStart(PythonActivity.mActivity)
android.activity.unbind(on_activity_result=_on_activity_result)
android.activity.bind(on_activity_result=_on_activity_result)
def unlock(uid):
if not gh_instance.isSignedIn():
return
Games.Achievements.unlock(gh_instance.getApiClient(), uid)
def increment(uid, count):
if not gh_instance.isSignedIn():
return
Games.Achievements.increment(gh_instance.getApiClient(), uid, count)
def leaderboard(uid, score):
if not gh_instance.isSignedIn():
return
Games.Leaderboards.submitScore(gh_instance.getApiClient(), uid, score)
def show_leaderboard(uid):
if not gh_instance.isSignedIn():
return
PythonActivity.mActivity.startActivityForResult(
Games.Leaderboards.getLeaderboardIntent(
gh_instance.getApiClient(), uid), 0x6601)
def show_achievements():
if not gh_instance.isSignedIn():
return
PythonActivity.mActivity.startActivityForResult(
Games.Achievements.getAchievementsIntent(
gh_instance.getApiClient()), 0x6602)
def on_stop():
gh_instance.onStop()
def on_start():
gh_instance.onStart(PythonActivity.mActivity)
| Python |
import sqlite3
#import time
#conn = sqlite3.connect("mydatabase.db")
#cursor=conn.cursor()
#cursor.execute('CREATE TABLE mytable (Id INTEGER PRIMARY KEY, Date TEXT, Entry TEXT)')
#today="monday"
#cursor.execute('INSERT INTO mytable VALUES(null, ?, ?)', (today, "This entry could be the first item on a To-Do List, or it could be a journal entry, or whatever you want."))
#cursor.execute('INSERT INTO mytable VALUES(null, ?, ?)', (today, "To-Do: Write an SQLite3 tutorial!"))
#conn.commit()
#allentries=cursor.fetchall()
#print allentries
#cursor.execute('DELETE FROM mytable WHERE Id<=1')
#conn.commit()
#for x in cursor.execute('SELECT * FROM mytable'):
# print "Item number: " + str(x[0]) + " Date: " + x[1] + " Entry: " + x[2]
#cursor.close()
class dataBase:
def createTable(self):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('CREATE TABLE mytable (Id INTEGER PRIMARY KEY, cageName TEXT, CageDescription TEXT, numDoors TEXT, doorsOpen TEXT, humanInside TEXT)')
conn.commit()
def dropTable(self):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.executescript('drop table if exists myTable;')
conn.commit()
def addCage(self, cageName, cageDescription, numDoors = 2, doorsOpen = False, humanInside = False):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
self.cageName = cageName
self.cageDescription = cageDescription
self.numDoors = numDoors
self.doorsOpen = doorsOpen
self.humanInside = humanInside
cursor.execute('INSERT INTO myTable VALUES(null, ?, ?, ?, ?, ?)', (cageName, cageDescription, numDoors, doorsOpen, humanInside))
conn.commit()
def removeCage(cage, cageID):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('DELETE FROM mytable WHERE Id=%s' %cageID)
conn.commit()
def printTable(self):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
allentries=cursor.fetchall()
returnStr = ""
for x in cursor.execute('SELECT * FROM mytable'):
returnStr += "cageID : " + str(x[0]) + " cageName: " + str(x[1]) + " cageDescription: " + x[2] + " numDoors: " + x[3] + " doorsOpen: " + x[4] + " humanInside: " + x[5] +"\n"
return returnStr
def editTable(self, cageName):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('UPDATE myTable SET cageDescription = "Its crazy ere", numDoors= 3, doorsOpen = "Null", humanInside = "False" WHERE cageName = "cow"')
conn.commit()
def main(self):
db = dataBase()
db.dropTable()
db.createTable()
db.addCage("doneky", "donkey kong cage", numDoors = 1, doorsOpen = False, humanInside = True)
db.addCage("moneky", "mokey cage", numDoors = 2, doorsOpen = False, humanInside = False)
db.addCage("cow", "moo mans cage", numDoors = 7, doorsOpen = False, humanInside = True)
db.addCage("chicken", "the nest", numDoors = 3, doorsOpen = False, humanInside = False)
print db.printTable()
db.editTable("cow")
print db.printTable()
db = dataBase()
db.main() | Python |
class Cage():
def __init__(self, cageName, cageDescription, numDoors = 2, doorsOpen = False):
self.cageName = cageName
self.cageDescription = cageDescription
self.numDoors = numDoors
self.doorsOpen = doorsOpen
def openDoor(self):
print("hello")
| Python |
class Cage():
cageID = ""
doorNumber = 1
cageMaxPopCap = 1
currentCap = 1
doorStatus = True
numberOfDoors = 1
cageDescription = ""
exhibitOccupied = True
cageSize = ""
def main():
lionCage = Cage("Lion", True, 21, 10, "A real environment", 2, True)
lionCage.closeDoor()
lionCage.doorAlarm()
print(lionCage)
def openDoor():
#code for opening the door
doorStatus = True
print("door Open :/")
return doorStatus
def closeDoor():
#code for closing the door
doorStatus = False
print("door closed :)")
return doorStatus
## def doorAlarm():
## if doorStatus == True and exhibitOccupied == True:
## print("Close " + cageID + "cage door it has been left open")
## print("everythings fine")
def __init__(self, cageID, doorStatus, doorNumber, cageSize, cageDescription, cageMaxPopCap, exhibitOccupied):
self._cageID = cageID
self._doorNumber = doorNumber
self._cageSize = cageSize
self._cageDesciption = cageDescription
self._cageMaxPopCap = cageMaxPopCap
self._exhibitOccupied = exhibitOccupied
self._doorStatus = doorStatus
def getCageID(self):
return self._cageID
def setCageID(self, new_cageID):
self._cageID = new_cageID
def getDoorStatus(self):
return self._doorStatus
def setDoorStatus(self, new_doorStatus):
self._doorStatus = new_doorStatus
def getDoorNumber(self):
return self._doorNumber
def setDoorNumber(self, new_doorNumber):
self._doorNumber = new_doorNumber
def getCageSize(self):
return self._cageSize
def setCageSize(self, new_cageSize):
self._cageSize = new_cageSize
def getCageDescription(self):
return self._cageDescription
def setCageDescription(self, new_cageDescription):
self._cageDescription = new_cageDescription
def getCageMaxCap(self):
return self._cageMaxPopCap
def setCageID(self, new_cageMaxPopCap):
self._cageMaxPopCap = new_cageMaxPopCap
def getExhibitOccupied(self):
return self._exhibitOccupied
def setCageID(self, new_exhibitOccupied):
self._exhibitOccupied = new_exhibitOccupied
## def doorAlarm():
## if self._doorStatus == True and self._exhibitOccupied == True:
## print("Close " + cageID + "cage door it has been left open")
## print("everythings fine")
| Python |
//take 2 revsion
import random
class Zoo():
cages = list[]
def addCage(cageID):
cages.append(cageID)
def removeCage(cageID):
cages.remove(cageID)
class Cage():
def openDoor():
#stuff for opening the door
return 0
def closeDoor():
#stuff for closing the door
return 0
print "hello python in the zoo" | Python |
import unittest
import zooMonitoring
import zoo
class CageTests(unittest.TestCase):
def testNoCagesPresent(self):
zoo1 = zoo.Zoo()
#Test to check no cages are initially present
self.assertEqual(zoo1.getNumCages(), 1)
print zoo1.cages
def testAddPresent(self):
zoo1 = zoo.Zoo()
#Test to check no cages are initiay present
zoo1.addCage("Monkey", "Chimpanzee lives here")
self.assertEqual(zoo1.getNumCages(), 2)
if __name__ == '__main__':
unittest.main() | Python |
import zoo
import cage
class ZooMonitoring():
def __init__(self):
jcu = zoo.Zoo()
jcu.addCage("lion", "the lion lives here")
jcu.addCage("tim", "timmy lives here")
print jcu.getNumCages()
jcu.cages[0].openDoor()
def main():
print "main"
z = ZooMonitoring() | Python |
from turtle import *
import forest
import os
f = forest()
x = 1
t = Turtle()
t.write("home =", True, align="center")
t.showturtle()
speed("fastest")
while x < 100:
pd()
sety(121)
setx(66)
c = ["red","green","yellow","blue","purple","cyan","pink"]
color(c[x%7])
forward(45)
right(31)
forward(15)
right(29)
forward(63)
right(42)
forward(17)
right(123)
forward(66)
right(193)
forward(201)
x+=1
def writeZoo():
width(10)
color("blue")
penup()
setx(-300)
sety(300)
pendown()
pendown()
forward(75)
right(135)
forward(100)
left(135)
forward(75)
penup()
setx(-180)
sety(228)
pd()
circle(38)
penup()
setx(-90)
sety(228)
pd()
circle(38)
penup()
width(1)
setx(-170)
sety(260)
speed("fastest")
color("red")
down()
for i in range(36):
for j in range(10):
forward(50)
right(36)
right(10)
up()
| Python |
import zooMonitoring
import database
import zoo
if __name__ == '__main__':
z = zoo.Zoo()
db = database.dataBase()
choice = None
menuNotChosen = True
choice = raw_input("Please Choose Option \ncage \nadmin\n Choose: ")
while choice:
if choice == "cage":
#menuNotChosen = False
db = database.dataBase()
cageSelect = raw_input("1: Select Cage \n2: feed animals \n3: get list of cages \n4: edit cage \nChoose: ")
menuNotChosen = False
while cageSelect:
if cageSelect == "1":
db.findCage("cow")
print "found cage! :-D"
cageSelect = raw_input("1: Select Cage \n2: feed animals \n3: get list of cages \n4: edit cage \nChoose: ")
elif cageSelect == "2":
z = zoo.Zoo()
z.feedAnimals(db.findCage())
print "animals fed"
cageSelect = raw_input("1: Select Cage \n2: feed animals \n3: get list of cages \n4: edit cage \nChoose: ")
elif cageSelect == "3":
db.printTable()
print "printed tables"
cageSelect = raw_input("1: Select Cage \n2: feed animals \n3: get list of cages \n4: edit cage \nChoose: ")
elif cageSelect == "4":
#insert another list item here for element to edit.
print"1: edit name\n 2: edit description\n 3: edit number of doors \n"
editSelect = raw_input("1: edit name \n2: edit description \n3: edit number of doors \nChoose: ")
if editSelect == "1":
cageName = raw_input("Choose cage name: ")
db.editCageName(db.findCage(cageName))
print"complete"
editSelect = raw_input("1: edit name \n2: edit description \n3: edit number of doors \nChoose: ")
elif editSelect == "2":
cageName = raw_input("Change Description: ")
db.editCageDescription(db.findCage(cageName))
print"complete"
editSelect = raw_input("1: edit name \n2: edit description \n3: edit number of doors \nChoose: ")
elif editSelect == "3":
cageName = raw_input("Change number of doors: ")
db.editNumOfDoors(db.findCage(cageName))
print"complete"
editSelect = raw_input("1: edit name \n2: edit description \n3: edit number of doors \nChoose: ")
else:
print "Please select"
editSelect = raw_input("1: edit name \n2: edit description \n3: edit number of doors \nChoose: ")
if editSelect == "1" or editSelect == "2" or editSelect == "3":
editSelect = True
else:
cageSelect = raw_input("1: Select Cage \n2: feed animals \n3: get list of cages \n4: edit cage \nChoose: ")
else:
if choice == "cage" or choice == "admin":
choice = True
else:
choice = raw_input("cage \nadmin \nChoose: ")
print "Sorry that is not a valid menu item choose either:"
choice = raw_input("Please Choose Option \ncage \nadmin\n Choose: ")
elif choice == "admin":
while menuNotChosen:
menuNotChosen = False
adminSelect = raw_input("1: add Cage \n2: delete Cage \n3: feed Animals \n4: close doors \nChoose Admin option: ")
if adminSelect == "1":
#jcu = zooMonitoring.ZooMonitoring()
cageName = raw_input("Cage Name: ")
z.addCageList(cageName, "grass is greener")
print z.printCages()
adminSelect = raw_input("1: add Cage \n2: delete Cage \n3: feed Animals \n4: close doors \nChoose Admin option: ")
elif adminSelect == "2":
cageName = raw_input("Cage Name: ")
print "i do this"
z.removeCage(db.findCage(cageName))
adminSelect = raw_input("1: add Cage \n2: delete Cage \n3: feed Animals \n4: close doors \nChoose Admin option: ")
elif adminSelect == "3":
cageName = raw_input("feed which animals: ")
print "i do this"
z.feedAnimals(db.findCage(cageName))
adminSelect = raw_input("1: add Cage \n2: delete Cage \n3: feed Animals \n4: close doors \nChoose Admin option: ")
elif adminSelect == "4":
cageName = raw_input("Close doors on which cage: ")
zoo.closeDoors(db.findCage(cageName))
adminSelect = raw_input("1: add Cage \n2: delete Cage \n3: feed Animals \n4: close doors \nChoose Admin option: ")
else:
if choice == "cage" or choice == "admin":
choice = True
else:
choice = raw_input("cage \nadmin \nChoose: ")
print "Sorry that is not a valid menu item choose either:"
choice = raw_input("Please Choose Option \ncage \nadmin\n Choose: ")
else:
if choice == "cage" or choice == "admin":
choice = True
else:
choice = raw_input("cage \nadmin \nChoose: ")
print "Sorry that is not a valid menu item choose either:"
choice = raw_input("Please Choose Option \ncage \nadmin\n Choose: ")
| Python |
import sqlite3
#import time
#conn = sqlite3.connect("mydatabase.db")
#cursor=conn.cursor()
#cursor.execute('CREATE TABLE mytable (Id INTEGER PRIMARY KEY, Date TEXT, Entry TEXT)')
#today="monday"
#cursor.execute('INSERT INTO mytable VALUES(null, ?, ?)', (today, "This entry could be the first item on a To-Do List, or it could be a journal entry, or whatever you want."))
#cursor.execute('INSERT INTO mytable VALUES(null, ?, ?)', (today, "To-Do: Write an SQLite3 tutorial!"))
#conn.commit()
#allentries=cursor.fetchall()
#print allentries
#cursor.execute('DELETE FROM mytable WHERE Id<=1')
#conn.commit()
#for x in cursor.execute('SELECT * FROM mytable'):
# print "Item number: " + str(x[0]) + " Date: " + x[1] + " Entry: " + x[2]
#cursor.close()
import cage
class dataBase:
def createTable(self):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('CREATE TABLE mytable (Id INTEGER PRIMARY KEY, cageName TEXT, CageDescription TEXT, numDoors TEXT, doorsOpen TEXT, humanInside TEXT, cageType TEXT, cageSize TEXT, hasFood TEXT, cleaningMode TEXT)')
conn.commit()
def saveToDB(self, cages):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
counter = 1
for cage in cages:
cageID = counter
cageName = cage[1]
cageDescription = cage[2]
numDoors = cage[3]
doorsOpen = cage[4]
humanInside = cage[5]
cageType = cage[6]
cageSize = cage[7]
hasFood = cage[8]
cleaningMode = cage[9]
cursor.execute('INSERT INTO myTable VALUES(null, ?, ?, ?, ?, ?, ?, ?, ?, ?)', (cageName, cageDescription, numDoors, doorsOpen, humanInside, cageType, cageSize, hasFood, cleaningMode))
counter += 1
conn.commit()
def dropTable(self):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.executescript('drop table if exists myTable;')
conn.commit()
def addCage(self, cageName, cageDescription, numDoors = 2, doorsOpen = False, humanInside = False, cageType = "mesh", cageSize = "5sqm", hasFood = False, cleaningMode = False):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
self.cageName = cageName
self.cageDescription = cageDescription
self.numDoors = numDoors
self.doorsOpen = doorsOpen
self.humanInside = humanInside
cursor.execute('INSERT INTO myTable VALUES(null, ?, ?, ?, ?, ?, ?, ?, ?, ?)', (cageName, cageDescription, numDoors, doorsOpen, humanInside, cageType, cageSize, hasFood, cleaningMode))
conn.commit()
def betterAddCage(self, cageName, cageDescription, numDoors = 2, doorsOpen = False, humanInside = False):
self.cageName = cage.Cage(cageName, cageDescription, numDoors = 2, doorsOpen = False, humanInside = False)
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('INSERT INTO myTable VALUES(null , ?, ?, ?, ?, ?, ?, ?,?)', (cageName, cageDescription, numDoors, doorsOpen, humanInside, cageType, cageSize, hasFood, cleaningMode))
conn.commit()
def removeCage(cage, cageID):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('DELETE FROM mytable WHERE Id=%s' %cageID)
conn.commit()
def printTable(self):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
allentries=cursor.fetchall()
returnStr = []
for x in cursor.execute('SELECT * FROM mytable'):
innerList = []
innerList.append(str(x[0]))
innerList.append(str(x[1]))
innerList.append(str(x[2]))
innerList.append(str(x[3]))
innerList.append(str(x[4]))
innerList.append(str(x[5]))
innerList.append(str(x[6]))
innerList.append(str(x[7]))
innerList.append(str(x[8]))
innerList.append(str(x[9]))
returnStr.append(innerList)
#returnStr += "cageID : " + str(x[0]) + " cageName: " + str(x[1]) + " cageDescription: " + x[2] + " numDoors: " + x[3] + " doorsOpen: " + x[4] + " humanInside: " + x[5] + " cageType: " + x[6] + " cageSize: " + x[7] + " hasFood: " + x[8] + " cleaningMode: " + x[9] +"\n"
return returnStr
def selectAll(self):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
allentries=cursor.fetchall()
returnStr = []
for x in cursor.execute('SELECT * FROM mytable'):
returnStr += "cageID : " + str(x[0]) + " cageName: " + str(x[1]) + " cageDescription: " + x[2] + " numDoors: " + x[3] + " doorsOpen: " + x[4] + " humanInside: " + x[5] + " cageType: " + x[6] + " cageSize: " + x[7] + " hasFood: " + x[8] + " cleaningMode: " + x[9] +"\n"
return returnStr
def editCageName(self, cageName):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('UPDATE myTable SET cageName = "?"')
conn.commit()
def editPersonInside(self, HumanInside):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('UPDATE myTable SET humanInside = "?"')
conn.commit()
def editCageDescription(self, cageDescription):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('UPDATE myTable SET cageDescription = "?"')
conn.commit()
def editNumOfDoors(self, numDoors):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('UPDATE myTable SET numDoors = "?"')
conn.commit()
def editOpenDoors(self, doorsOpen):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
cursor.execute('UPDATE myTable SET doorsOpen = "?"')
conn.commit()
def findCage(self, cageName):
conn = sqlite3.connect("mydatabase.db")
cursor=conn.cursor()
for x in cursor.execute('SELECT * FROM mytable'):
if str(x[1]) == cageName:
return (x)
#returnStr += "cageID : " + str(x[0]) + " cageName: " + str(x[1]) + " cageDescription: " + x[2] + " numDoors: " + x[3] + " doorsOpen: " + x[4] + " humanInside: " + x[5] +"\n"
#return returnStr
def __init__(self):
self.dropTable()
self.createTable()
self.addCage("doneky", "donkey kong cage", numDoors = 1, doorsOpen = False)
self.addCage("moneky", "mokey cage", numDoors = 2, doorsOpen = False)
self.addCage("cow", "moo mans cage", numDoors = 7, doorsOpen = False)
self.addCage("chicken", "the nest", numDoors = 3, doorsOpen = False)
self.addCage("mouse", "Mickys house", numDoors = 3, doorsOpen = False)
#conn.commit()
def main(self):
#db = dataBase()
#db.dropTable()
#db.createTable()
#db.addCage("doneky", "donkey kong cage", numDoors = 1, doorsOpen = False)
#db.addCage("moneky", "mokey cage", numDoors = 2, doorsOpen = False)
#db.addCage("cow", "moo mans cage", numDoors = 7, doorsOpen = False)
#db.addCage("chicken", "the nest", numDoors = 3, doorsOpen = False)
#db.addCage("mouse", "Mickys house", numDoors = 3, doorsOpen = False)
#print db.printTable()
#cageFound = db.findCage("cow")
# print cageFound
#cageFound[1].editCageName("pig")
#cageFound = "pig"
#conn = sqlite3.connect("mydatabase.db")
#cursor=conn.cursor()
#cursor.execute('UPDATE myTable SET cageName = "tim" WHERE cageName == "cow"')
#conn.commit()
#print db.printTable()
pass
#db = dataBase()
#db.main()
| Python |
class Cage():
def __init__(self, cageName, cageDescription, numDoors = 2, doorsOpen = False, humanInside = False):
self.cageName = cageName
self.cageDescription = cageDescription
self.numDoors = numDoors
self.doorsOpen = doorsOpen
self.humanInside = humanInside
def getNumDoor(self):
return self.numDoors
def setNumDoor(self):
self._numDoors = numDoors
| Python |
import cage
import database
class Zoo:
def __init__(self):
self.cages = []
print self.cages
#dont USE!!
def addCage(self, cageName, cageDescription):
cageName = cage.Cage(cageName, cageDescription)
self.cages.append(cageName)
def addCageList(self, cageName, cageDescription, numDoors = 2, doorsOpen = 0, humanInside = False, cageType = "mesh", cageSize = "5sqm", hasFood = False, cleaningMode = False):
cageToAdd = [cageName, cageDescription, numDoors, doorsOpen , humanInside, cageType, cageSize, hasFood, cleaningMode]
self.cages.append(cageToAdd)
def getNumCages(self):
return len(self.cages)
def findCage(self, cageName):
counter = 0
for cage in self.cages:
print self.cages[counter][0]
if self.cages[counter][0] == cageName:
return counter
else:
counter += 1
def removeCage(self, cageName):
del self.cages[self.findCage(cageName)]
print "deleted " + cageName
def displayCages(self):
displayString = "cageName, cageDescription, numDoors , doorsOpen , humanInside , cageType , cageSize , hasFood"
displayString += "___________\n"
counter = 0
for cage in self.cages:
attributes = 0
if counter < len(self.cages):
for attribute in self.cages[attributes]:
if attributes < len(self.cages[counter]):
displayString += str(self.cages[counter][attributes])
displayString += ", "
attributes += 1
displayString += '\n'
counter += 1
displayString += "___________"
return displayString
def getNumDoors(self, cageName):
return self.cages[self.findCage(cageName)][2]
def changeNumDoors(self, cageName, numDoors):
self.cages[self.findCage(cageName)][2] = numDoors
def getCageType(self, cageName):
return self.cages[self.findCage(cageName)][5]
#this stuff under here may need to be changed...
def editCageType(self, cageName, cageType):
self.cages[self.findCage(cageName)][5] = cageType
def getCageSize(self, cageName):
return self.cages[self.findCage(cageName)][6]
def setCageSize(self, cageName, cageSize):
self.cages[self.findCage(cageName)][6] = cageSize
def feedAllAnimals(self):
self.feedingTrayEmpty = False
def isFeedingTrayEmpty(self, cageName):
return self.cages[self.findCage(cageName)][7]
def lockAllDoors(self):
counter = 0
if counter < len(self.cages):
for cage in self.cages:
self.cages[self.findCage(cage)][3] = 0
def unlockAllDoors(self):
for cage in cages:
self.cages[self.findCage(cage)][3] = self.cages[self.findCage(cage)][2]
def setCleaningMode(self, cageName):
self.cages[self.findCage(cageName)][8] = True
def isCleaningMode(self, cageName):
return self.cages[self.findCage(cageName)][8]
def main():
db = database.dataBase()
dbTable = db.printTable()
#self.cages += dbTable
self.cages = dbTable
print self.cages
z = Zoo()
z.displayCages()
z.addCageList("cow", "moo")
z.findCage("cow")
z.removeCage("cow") | Python |
def tree(tlist, size, level, widthfactor, branchlists, angledist=10, sizedist=5):
# benutzt Liste von turtles und Liste von Zweiglisten,
# fuer jede turtle eine!
if level > 0:
lst = []
brs = []
for t, branchlist in list(zip(tlist,branchlists)):
t.pensize( size * widthfactor )
t.pencolor( 255 - (180 - 11 * level + symRandom(15)),
180 - 11 * level + symRandom(15),
0 )
t.pendown()
randomfd(t, size, level, angledist )
yield 1
for angle, sizefactor in branchlist:
t.left(angle)
lst.append(t.clone())
brs.append(randomize(branchlist, angledist, sizedist))
t.right(angle)
for x in tree(lst, size*sizefactor, level-1, widthfactor, brs,
angledist, sizedist):
yield None
| Python |
import unittest
#import zooMonitoring
import zoo
class CageTests(unittest.TestCase):
def testNoCagesPresent(self):
emptyZoo = zoo.Zoo()
#emptyZoo.cages = []
#Test to check no cages are initially present
#emptyZoo.addCage("Monkey", "Chimpanzee lives here")
self.assertEqual(emptyZoo.getNumCages(), 0)
def testAddCages(self):
fullZoo = zoo.Zoo()
#Test to check adding of cages works
fullZoo.addCage("Monkey", "Chimpanzee lives here")
fullZoo.addCage("Horse", "Horse lives here")
fullZoo.addCage("Donkey", "Donkey lives here")
fullZoo.addCage("Panda", "Panda lives here")
self.assertEqual(fullZoo.getNumCages(), 4)
def testRemoveCage(self):
removeZoo = zoo.Zoo()
#Test to check removing of cages works
removeZoo.addCage("Monkey", "Chimpanzee lives here")
removeZoo.addCage("Horse", "Horse lives here")
removeZoo.addCage("Donkey", "Donkey lives here")
removeZoo.addCage("Panda", "Panda lives here")
#The bit we're testing below...
removeZoo.removeCage("Monkey")
self.assertEqual(removeZoo.getNumCages(), 3)
def testDisplaceCages(self):
displayZoo = zoo.Zoo()
displayZoo.addCage("Horse", "Horse lives here")
displayZoo.addCage("Donkey", "Donkey lives here")
self.assertEqual(displayZoo.displayCages(), "___________\nHorse Horse lives here\nDonkey Donkey lives here\n___________")
def testGetNumDoors(self):
doorTestZoo = zoo.Zoo()
doorTestZoo.addCage("Horse", "Horse lives here")
self.assertEqual(doorTestZoo.getNumDoors("Horse"), 2)
def testChangeNumDoors(self):
changeDoorZoo = zoo.Zoo()
changeDoorZoo.addCage("Horse", "Horse lives here")
changeDoorZoo.changeNumDoors("Horse",5)
self.assertEqual(changeDoorZoo.getNumDoors("Horse"), 4)
def testLockAllDoors(self):
lockAllDoors = zoo.Zoo()
lockAllDoors.addCage("donkey", "donkey lives here")
lockAllDoors.lockAllDoors()
self.asserEqual(lockAllDoors.lockAllDoors(), True)
def testSelectCage(self):
selectCage = menu.Menu()
cageFound = database.dataBase()
cageFound.selectAll()
selectCage.findCage("cow")
aelf.assertEqual(selectCage.findCage(), "cow")
def testFeedAnimals(self):
selectCage = menu.Menu()
cageToFeed = zoo.Zoo()
cageToFeed.addCage("lion", "Lion Lives here")
cageToFeed.feedAnimals()
self.assertEqual(cageToFeed.feedAnimals(), True)
def testPrintTable(self):
db = database.dataBase()
db.addCage("Lion", "Mufasa is alive!!")
testCages = []
testCages = db.printTable()
self.assertEqual(testCages[0], Null)
def testEditCageName(self):
db = database.dataBase()
db.addCage("Lion", "Mufasa is alive!!")
db.editCageName("Lion", "cow")
self.assertEqual(db.editCageName(), "cow")
def testEditCageDescription(self):
db = database.dataBase()
db.addCage("Lion", "Mufasa is alive!!")
db.editCageDescription("Lion", "Simba is the KING!!")
self.assertEqual(db.editCageDescription(), "Simba is the KING!!")
if __name__ == '__main__':
unittest.main()
| Python |
from turtle import *
from random import randrange
from time import clock
def writeZoo():
width(10)
color("blue")
penup()
setx(-300)
sety(300)
pendown()
pendown()
forward(75)
right(135)
forward(100)
left(135)
forward(75)
penup()
setx(-180)
sety(228)
pd()
circle(38)
penup()
setx(-90)
sety(228)
pd()
circle(38)
penup()
width(1)
setx(-170)
sety(260)
speed("fastest")
color("red")
down()
for i in range(36):
for j in range(10):
forward(50)
right(36)
right(10)
up()
def symRandom(n):
return randrange(-n,n+1)
def randomize( branchlist, angledist, sizedist ):
return [ (angle+symRandom(angledist),
sizefactor*1.01**symRandom(sizedist))
for angle, sizefactor in branchlist ]
def randomfd( t, distance, parts, angledist ):
for i in range(parts):
t.left(symRandom(angledist))
t.forward( (1.0 * distance)/parts )
def tree(tlist, size, level, widthfactor, branchlists, angledist=10, sizedist=5):
# benutzt Liste von turtles und Liste von Zweiglisten,
# fuer jede turtle eine!
if level > 0:
lst = []
brs = []
for t, branchlist in list(zip(tlist,branchlists)):
t.pensize( size * widthfactor )
t.pencolor( 255 - (180 - 11 * level + symRandom(15)),
180 - 11 * level + symRandom(15),
0 )
t.pendown()
randomfd(t, size, level, angledist )
yield 1
for angle, sizefactor in branchlist:
t.left(angle)
lst.append(t.clone())
brs.append(randomize(branchlist, angledist, sizedist))
t.right(angle)
for x in tree(lst, size*sizefactor, level-1, widthfactor, brs,
angledist, sizedist):
yield None
def start(t,x,y):
colormode(255)
t.reset()
t.speed(0)
t.hideturtle()
t.left(90)
t.penup()
t.setpos(x,y)
t.pendown()
def doit1(level, pen):
pen.hideturtle()
start(pen, 20, -208)
t = tree( [pen], 80, level, 0.1, [[ (45,0.69), (0,0.65), (-45,0.71) ]] )
return t
def doit2(level, pen):
pen.hideturtle()
start(pen, -135, -130)
t = tree( [pen], 120, level, 0.1, [[ (45,0.69), (-45,0.71) ]] )
return t
def doit3(level, pen):
pen.hideturtle()
start(pen, 190, -90)
t = tree( [pen], 100, level, 0.1, [[ (45,0.7), (0,0.72), (-45,0.65) ]] )
return t
# Hier 3 Baumgeneratoren:
def main():
print("in main")
p = Turtle()
p.ht()
tracer(75,0)
u = doit1(6, Turtle())
s = doit2(7, Turtle())
t = doit3(5, Turtle())
a = clock()
while True:
done = 0
for b in u,s,t:
try:
b.next()
except:
done += 1
if done == 3:
break
tracer(1,10)
b = clock()
return "runtime: %.2f sec." % (b-a)
if __name__ == '__main__':
print("start")
writeZoo()
msg = main()
print(msg)
mainloop()
| Python |
import sqlite3
conn = sqlite3.connect('example.db')
c = conn.cursor()
# Create table
#c.execute('''CREATE TABLE cages
# (cageName, cageDescription, numDoors, doorsOpen)''')
# Insert a row of data
c.execute("INSERT INTO cages VALUES ('bear','this is the bears houese','2','False')")
# Save (commit) the changes
conn.commit()
#c.executescript('drop table if exists cages;')
c.execute('delete from cages')
for row in c.execute('SELECT * FROM cages ORDER BY cageName'):
print row
# We can also close the cursor if we are done with it
c.close()
| Python |
import zoo
import cage
class ZooMonitoring:
def __init__(self):
jcu = zoo.Zoo()
#jcu.addCageList("lion", "1")
#jcu.addCageList("moose", "2")
#jcu.addCageList("panda", "3")
#jcu.addCageList("bird", "4")
# print jcu.getNumCages()
# print jcu.displayCages()
# print "the lions doors below"
# print "lion is at index " + str(jcu.findCage("lion"))
# print "the lion has " + str(jcu.getNumDoors("lion"))+" doors"
# jcu.changeNumDoors("lion", 15)
# print "the lion has " + str(jcu.getNumDoors("lion"))+" doors"
# print "the bird cage is in cleaningMode " + str(jcu.isCleaningMode("bird"))
def main():
print "main"
z = ZooMonitoring()
| Python |
#-*- coding: utf-8 -*-
#! /usr/bin/python
#######################################################################################
# #
# File: online_keeper.py #
# Part of 21tb_cheater #
# Home: http://pcbeta-cheater.googlecode.com #
# #
# The MIT License #
# #
# Copyright (c) 2010-2011 <araya.akashic@gmail.com> #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to deal #
# in the Software without restriction, including without limitation the rights #
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
# copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN #
# THE SOFTWARE. #
# #
#######################################################################################
# This code is to automatically do daily task for pcbeta bbs
# Author: elsesky
import time
import re
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import urllib
import urllib2
import socket
from browser_bogus import Browser
from com_lib import *
account_list = {"":""}
cycle = 1
delay = 3610 * 22
try:
_fromUtf8 = QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
#do not change below this if no need
user_agent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.772.0 Safari/535.1"
login_page_init = "http://nari.21tb.com/login/login.init.do?returnUrl=http%3A%2F%2Fnari.21tb.com%2Felos%2Fhtml%2Findex.init.do&elnScreen=1920*1200elnScreen"
login_page = "http://nari.21tb.com/login/login.checkLogin.do";
login_page2 = "http://nari.21tb.com/login/login.login.do";
logout_page = "http://nari.21tb.com/login/login.logout.do";
couse_list_post = "http://nari.21tb.com/els/html/course/course.listMyCourse.do"
couse_update_post = "http://nari.21tb.com/els/html/coursebasic/coursebasic.saveCoursePrecent.do"
goto_course_evaluate_pre = "http://nari.21tb.com/els/html/study/study.doStudy.do?linkBy=1&courseId="
course_evaluate = "http://nari.21tb.com/els/html/study/study.doStudy.do"
task_page = "http://i.pcbeta.com/home.php?mod=task";
task_doing_page = "http://i.pcbeta.com/home.php?mod=task&item=doing";
bangui_leaarn_pg1 = "http://bbs.pcbeta.com/viewthread-951045-7575-1.html";
post_bangui_learn_pg = "http://bbs.pcbeta.com/forum.php?mod=post&action=reply&extra=page%3D1&replysubmit=yes&infloat=yes&handlekey=fastpost&inajax=1";
bangui_ID = "75"
task_info_detail_pre = "http://i.pcbeta.com/home.php?mod=task&do=view&id="
bangui_learn_task_detail = "http://i.pcbeta.com/home.php?mod=task&do=view&id=" + bangui_ID
bangui_learn_need = False
defaulttimeout = 3
socket.setdefaulttimeout(defaulttimeout)
class ExamNotAvailable(Exception):
def __init__(self, time):
self.value = time
def __str__(self):
return repr(self.value)
class LoginFailed(Exception):
def __init__(self, str):
self.value = str
def __str__(self):
return repr(self.value)
#method login
def do_login(user):
#记录日志调试
fname = "sysrun.log"
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("do login\r\n"))
# try:
# fp = open(fname, "a")
# fp.write(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("do login\r\n"))
# except IOError:
# print "log err"
print "正在登录".decode("utf-8").encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "正在登录".decode("utf-8").encode('gbk') + "\r\n")
url = login_page_init
#First access,get COOKIE and store
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
clen = 0
i = 1
while clen < 20:
try:
result = user.urlOpener.open(request)
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "数据提交完毕".decode("utf-8").encode('gbk') + "\r\n")
content = result.read();
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "读取内容完毕".decode("utf-8").encode('gbk') + "\r\n")
clen = len(content)
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "内容长度为:".decode("utf-8").encode('gbk') + str(clen) + "\r\n")
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "休眠5秒后重试".decode("utf-8").encode('gbk') + "\r\n")
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "休眠5秒后重试".decode("utf-8").encode('gbk') + "\r\n")
time.sleep(5)
i += 1
logindata = {
"corpCode":"sgepri.com",
"referer":login_page_init,
"loginName":"0",
"loginName":user.username,
"password":user.password,
"submit.x":"52",
"submit.y":"8"
}
en_logindata = urllib.urlencode(logindata)
#init login post url login_page1只用来确认用户是否在其它地方登录过,无视即可
url = login_page2;
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
#do login
clen = 0
i = 1
# fp.write(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("do login post\r\n"))
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("do login post\r\n"))
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read()
clen = len(content)
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "休眠5秒后重试".decode("utf-8").encode('gbk') + "\r\n")
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "休眠5秒后重试".decode("utf-8").encode('gbk') + "\r\n")
time.sleep(5)
i += 1
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("login post done\r\n"))
#check login
if content.find("南瑞学堂".decode("utf-8").encode("gbk")) < 0:
print "用户".decode('utf-8').encode('gbk') + user.username + "已成功登录".decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "用户".decode('utf-8').encode('gbk') + user.username + "已成功登录\r\n".decode('utf-8').encode('gbk') + "\r\n")
# fp.write(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("login done\r\n"))
# fp.close()
return user;
else:
print "登录失败,请重试".decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "登录失败,请重试".decode('utf-8').encode('gbk') + "\r\n")
# fp.write(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("login error\r\n"))
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("login error\r\n"))
# fp.close()
raise LoginFailed(user.username)
#method completed task
def get_couselist(user):
print "获取课程列表".decode("utf-8").encode('gbk')
logindata = {
"courseStatus":"NOT_STARTED,STUDY,HAS_EXPIRED",
"current_app_id":"",
"coureseStudyRecord":"",
"courseCodeOrName":"",
"objectId":"",
"objectType":"",
"courseStudyRecord.courseStudyType":"",
"page.pageNo":"1",
"page.pageSize":"5000",
"courseStudyType":""
}
en_logindata = urllib.urlencode(logindata)
url = couse_list_post
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
clen = 0
i = 1
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
i += 1
couse_ids = []
regex = re.compile(r'courseId":".*?"')
for match in regex.findall(content):
# print match.split("\":\"")[1].split("\"")[0]
couse_ids.append(match.split("\":\"")[1].split("\"")[0]);
return couse_ids
# modify user refresh url
def update_lt(user,learnedtime="120"):
couse_ids = get_couselist(user)
for ids in couse_ids:
print "更新课程ID: ".decode("utf-8").encode('gbk') + ids
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "更新课程ID: ".decode("utf-8").encode('gbk') + ids + "\r\n")
logindata = {
"courseId":ids,
"playTime":learnedtime
}
en_logindata = urllib.urlencode(logindata)
url = couse_update_post
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
clen = 0
i = 1
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
time.sleep(2)
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
i += 1
if clen == 0:
update_lt_evaluate(user,ids)
clen = 9999
#如果有已经完成的课程,执行进入考试步骤
if content.find("\"100\"")> 0:
update_lt_evaluate(user,ids)
# print content
def update_lt_evaluate(user , cid):
#检查该课程的状态
step_stat = get_course_status(user,cid)
#如果该课程为已经提交评价,并进入考试进程时,不再提交评价
if step_stat == "COURSE_EXAM":
print "ID为".decode("utf-8").encode('gbk') + cid + "的课程已评价过,需考试,跳过".decode("utf-8").encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "ID为".decode("utf-8").encode('gbk') + cid + "的课程已评价过,需考试,跳过".decode("utf-8").encode('gbk') + "\r\n")
return
print "完成课程ID".decode("utf-8").encode('gbk') + cid + "的学习,尝试评价该课程".decode("utf-8").encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "完成课程ID".decode("utf-8").encode('gbk') + cid + "的学习,尝试评价该课程".decode("utf-8").encode('gbk') + "\r\n")
url = goto_course_evaluate_pre + cid
logindata = {
"Referer":"http://nari.21tb.com/els/html/course/course.frame.do"
}
en_logindata = urllib.urlencode(logindata)
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
clen = 0
i = 1
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
i += 1
if clen == 0:
break
# print content
url = course_evaluate
logindata = {
"type":"COURSE_EVALUATE_SAVE",
"answers":"[{\"name\":\"4df9b0b2e0e14869a185fc024a6cdeec\",\"value\":\"\"},{\"name\":\"5159dba01a664fb79b8f0ad547165259\",\"value\":\"\"},{\"name\":\"ab10aa493b6a4f3e9b8ce36804ec6a25\",\"value\":\"\"}]",
"courseId":cid,
"star":"5",
"current_app_id":""
}
en_logindata = urllib.urlencode(logindata)
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
clen = 0
i = 1
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
i += 1
if clen == 0:
break
# print content
# exit()
#获取课程
def get_course_status(user,cid):
#获取课程编号后获取该课程的ID
curl = "http://nari.21tb.com/els/html/course/course.courseInfo.do?courseId=" + cid
ccontent = getcontent(curl,user)
regex = re.compile(r'(课程编号:.*?)<\/')
match = regex.findall(ccontent)
courseid = match[0].split("课程编号:")[1].split(")")[0]
# print courseid
#通过ID获取该课程的详细信息
curl = "http://nari.21tb.com/els/html/course/course.listMyCourse.do"
logindata = {
"coureseStudyRecord":"",
"courseCodeOrName":courseid,
"courseStatus":"",
"courseStudyType":"",
"current_app_id":"",
"objectId":"",
"objectType":"",
"page.pageNo":"1",
"page.pageSize":"1",
"selectStudyClient":"",
}
course_des = getpostcontent(curl,user,logindata)
# print course_des
regex = re.compile(r'\"currentStep\":\".*?\",')
match = regex.findall(course_des)
step_stat = match[0].split("\"currentStep\":\"")[1].split("\"")[0]
# print step_stat
return step_stat
def logout(user):
url = logout_page
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
clen = 0
i = 1
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
i += 1
print "Online Keeper Logout " + user.username
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "Online Keeper Logout. username: " + user.username + "\r\n")
def select_lession(user,lessionnum=2):
fname = "cp.log"
cnum = 0
totalpg = 250
cp = 1
#读取记录文件中的页数
try:
fp = open(fname, "r")
cp = int(_fromUtf8(fp.read()))
except IOError:
cp = 1
if cp>totalpg or cp<1:
cp=1
while cp<totalpg:
print "===========正在刷第".decode('utf-8').encode('gbk') + str(cp) + "页===========".decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========正在刷第".decode('utf-8').encode('gbk') + str(cp) + "页\r\n".decode('utf-8').encode('gbk') + "\r\n")
logindata = {
"courseInfo.categoryId":"",
"courseInfo.terminal":"",
"objectId":"",
"objectName":"",
"courseLimitType":"NEW",
"type":"UNCHECKED",
"current_app_id":"",
"page.pageNo":cp,
}
en_logindata = urllib.urlencode(logindata)
url = 'http://nari.21tb.com/els/html/elective/elective.courseInfoList.do'
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
clen = 0
i = 1
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
#检查是否已经超时,如果超时,重新登录后再次刷新该页
if content.find("top.location.href=\"\/login\/login.init.do")>0:
print '用户SESSION已超时,重登录'.decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "用户SESSION已超时,重登录".decode('utf-8').encode('gbk') + "\r\n")
#重登录
logout(user)
do_login(user)
continue
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
i += 1
couse_ids = []
regex = re.compile(r'data-id=\".*?" data-type')
for match in regex.findall(content):
cid = match.split("\"")[1].split("\"")[0]
curl = "http://nari.21tb.com/els/html/course/course.courseInfo.do?courseId=" + cid
ccontent = getcontent(curl,user)
if ccontent.find("课程评估")>0:
#if the lession total selected more than the limit setting, return.
if cnum >= lessionnum:
#写入当前读取的页数
fp = open(fname,"w")
#因为已经选过的在翻页后导致后面的课程前移,需要减去选的课程数除以每页的课程数
fp.write(str(cp-int(lessionnum/10)))
fp.close()
return
# print cid
getlession('http://nari.21tb.com/els/html/elective/elective.chooseCourseOrCoursePack.do',user,cid)
cnum += 1
print '已选课程ID'.decode('utf-8').encode('gbk') + str(cid)
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + '已选课程ID'.decode('utf-8').encode('gbk') + str(cid) + "\r\n")
# continue
# return
cp +=1
fp = open(fname,"w")
fp.write(str(cp))
fp.close()
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + '选课完毕'.decode('utf-8').encode('gbk') + str(cnum) + "\r\n\r\n")
def select_lession_by_credit (user,creditnum=2):
fname = "cp_credit.log"
#由于学分有小数,转换为浮点计算
creditnum = float(creditnum)
cnum = 0.0
totalpg = 250
cp = 1
#读取记录文件中的页数
try:
fp = open(fname, "r")
cp = int(_fromUtf8(fp.read()))
except IOError:
cp = 1
if cp>totalpg or cp<1:
cp=1
while cp<totalpg:
print "===========正在刷第".decode('utf-8').encode('gbk') + str(cp) + "页===========".decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========正在刷第".decode('utf-8').encode('gbk') + str(cp) + "页\r\n".decode('utf-8').encode('gbk'))
logindata = {
"courseInfo.categoryId":"",
"courseInfo.terminal":"",
"objectId":"",
"objectName":"",
"courseLimitType":"NEW",
"type":"UNCHECKED",
"current_app_id":"",
"page.pageNo":cp,
}
en_logindata = urllib.urlencode(logindata)
url = 'http://nari.21tb.com/els/html/elective/elective.courseInfoList.do'
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
clen = 0
i = 1
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
# print '当前页内容大小'.decode('utf-8').encode('gbk') + str(clen)
# logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========当前页内容大小".decode('utf-8').encode('gbk') + str(clen) + "\r\n")
# debug
# fnamet = str(cp) + ".htm"
# fpt = open(fnamet, "w")
# fpt.write(content)
# fpt.close()
#检查是否已经超时,如果超时,重新登录后再次刷新该页
if content.find("top.location.href=\"\/login\/login.init.do")>0:
print '用户SESSION已超时,重登录'.decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "用户SESSION已超时,重登录".decode('utf-8').encode('gbk') + "\r\n")
#重登录
logout(user)
do_login(user)
continue
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
time.sleep(5)
i += 1
creditnums = []
#学分下标
cindex = 0
cregex = re.compile(r'学分:</span><span class=\"orange\">.*?</span>')
for cmatch in cregex.findall(content):
# print cmatch.split("orange\">")[1].split("<")[0]
creditnums.append(float(cmatch.split("orange\">")[1].split("<")[0]))
#搜索课程,注意匹配学分下标
regex = re.compile(r'data-id=\".*?" data-type')
for match in regex.findall(content):
cid = match.split("\"")[1].split("\"")[0]
curl = "http://nari.21tb.com/els/html/course/course.courseInfo.do?courseId=" + cid
ccontent = getcontent(curl,user)
if ccontent.find("课程评估")>0:
#if the lession total selected more than the limit setting, return.
if cnum >= creditnum:
#写入当前读取的页数
fp = open(fname,"w")
fp.write(str(cp))
fp.close()
return
# print cid
getlession('http://nari.21tb.com/els/html/elective/elective.chooseCourseOrCoursePack.do',user,cid)
#累加已经选择的课程的学分
cnum += creditnums[cindex]
print '已选课程ID'.decode('utf-8').encode('gbk') + str(cid)
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + '已选课程ID'.decode('utf-8').encode('gbk') + str(cid) + "\r\n")
print '当前已选学分'.decode('utf-8').encode('gbk') + str(cnum)
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + '当前已选学分'.decode('utf-8').encode('gbk') + str(cnum) + "\r\n")
#课程下标顺移
cindex += 1
cp +=1
fp = open(fname,"w")
fp.write(str(cp))
fp.close()
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + '选课完毕'.decode('utf-8').encode('gbk') + str(cnum) + "\r\n\r\n")
def getlession(url,user,lid):
# print "in getlession"
logindata = {
"endStudyTime":"2024-01-16",
"startStudyTime":"2014-01-16",
"objId":lid,
"objType":"COURSE",
"current_app_id":"",
}
en_logindata = urllib.urlencode(logindata)
url = 'http://nari.21tb.com/els/html/elective/elective.chooseCourseOrCoursePack.do'
request = urllib2.Request(url, en_logindata)
request.add_header("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8")
request.add_header("X-Requested-With", "XMLHttpRequest")
request.add_header("Referer", "http://nari.21tb.com/els/html/course/course.frame.do")
request.add_header("Accept-Language", "en-US,en;q=0.8,zh-Hans-CN;q=0.6,zh-Hans;q=0.4,ja;q=0.2")
request.add_header("Origin", "http://nari.21tb.com")
request.add_header("Accept-Encoding", "gzip, deflate")
request.add_header("User-Agent", user.user_agent)
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
print '第'.decode('utf-8').encode('gbk') + str(1) +'次提交成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(1) +'次提交失败'.decode('utf-8').encode('gbk')
time.sleep(5)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(1) +'次提交失败'.decode('utf-8').encode('gbk')
time.sleep(5)
if __name__ == "__main__":
while cycle:
print "------------------------------------------"
print time.strftime("%a, %b %d %Y %H:%M:%S", time.localtime()) + "-----------------"
user = Browser('55109', "", user_agent)
do_login(user)
update_lt(user)
logout(user)
if cycle > 1:
time.sleep(delay)
cycle = cycle - 1 | Python |
#This contains global definition of Browser class and other useful thing
#######################################################################################
# #
# File: browser_bogus.py #
# Home: http://pcbeta-cheater.googlecode.com #
# #
# The MIT License #
# #
# Copyright (c) 2010-2011 <araya.akashic@gmail.com> #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to deal #
# in the Software without restriction, including without limitation the rights #
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
# copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN #
# THE SOFTWARE. #
# #
#######################################################################################
#Author: Araya
import urllib2
import cookielib
class Browser():
def __init__(self, user, passwd, user_agent="Python-urllib/2.7"):
self.username = user
self.password = passwd
self.user_agent = user_agent
self.cookie = cookielib.CookieJar()
self.urlOpener = urllib2.build_opener(urllib2.HTTPCookieProcessor(self.cookie))
self.logout_URI = ""
self.verifyhash = "" | Python |
#! /usr/bin/python
# -*- coding: utf-8 -*-
from distutils.core import setup
import py2exe
import main
from glob import glob
data_files = [("Microsoft.VC100.CRT",
glob(r'E:\important\应用软件\开发工具\python\开发代码\Microsoft.VC100.CRT\*.*'))]
setup(
options = {"py2exe": {"optimize": 2,
"compressed": 1,
# "dll_excludes": ["MSVCP90.dll",],
"bundle_files": 1,
"includes": ["sip"]} },
name = "21tb_cheater",
version = main.VERSION,
description = "21TB Cheating Tools",
zipfile = None,
# data_files=data_files,
windows=[{'script': 'main.py',
"icon_resources": [(1, "./images/logo.ico")]}],
data_files = [('images', ['./images/logo.png'])])
| Python |
#!/usr/bin/python
from socket import *
import struct,os,time,sys
from ntp_server_lib import get_random_ntp_server
# print get_random_ntp_server()
# Script to set Linux hardware clock (/usr/sbin/hwclock) from an NTP
# time server. Run as "setclock.py" to simply print the time from
# the NTP server. Run as "setclock.py --set" to set the Linux
# hardware clock (as the super user, of course).
# Based on Simon Foster's simple SNTP client from ASPN Python cookbook.
# Adapted by Paul Rubin; this script lives at:
# http://www.nightsong.com/phr/python/setclock.py
time_server = (get_random_ntp_server(), 123)
# time.apple.com is a stratum 2 time server. (123 is the SNTP port number).
# More servers info can be found at
#
# http://www.eecis.udel.edu/~mills/ntp/servers.htm
#
# Note it's considered antisocial to use a stratum 1 server (like NIST)
# for purposes like this which don't need extreme accuracy (i.e. syncing
# your own big NTP network). See www.ntp.org for more info.
#
# You could also use time.windows.com (Microsoft server) which syncs
# all Windows XP machines everywhere, so it can presumably handle lots
# of clients.
# number of seconds between NTP epoch (1900) and Unix epoch (1970).
TIME1970 = 2208988800L # Thanks to F.Lundh
def get_ntp_time():
client = socket( AF_INET, SOCK_DGRAM )
data = '\x1b' + 47 * '\0'
client.sendto(data, time_server)
data, address = client.recvfrom( 1024 )
if data:
print 'Response received from', address,'\n'
t = struct.unpack( '!12I', data )[10]
if t == 0:
return -1
return t - TIME1970
else:
return -1
| Python |
#-*- coding: utf-8 -*-
#! /usr/bin/python
import urllib
import urllib2
import time
import socket
from browser_bogus import Browser
def logd(content,fname = "sysrun.log",dolog = True):
if dolog:
try:
if fname == None:
fname = "sysrun.log"
fp = open(fname, "a")
fp.write(content)
fp.close()
return True
except IOError:
print "log err"
return False
else:
return True
def getcontent(url,user,retrytime=5):
request = urllib2.Request(url)
clen = 0
i = 1
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk') + "读取错误,休眠5秒后重试".decode("utf-8").encode('gbk') + "\r\n")
time.sleep(retrytime)
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk') + "连接超时,休眠5秒后重试".decode("utf-8").encode('gbk') + "\r\n")
time.sleep(retrytime)
i += 1
return content
def getpostcontent(url,user,logindata):
en_logindata = urllib.urlencode(logindata)
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
request.add_header("Referer", "http://nari.21tb.com/els/html/course/course.frame.do#index")
clen = 0
i = 1
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 1:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
#解决某些没有返回值的情况
if clen == 0:
break
return content
| Python |
# -*- coding: utf-8 -*-
#! /usr/bin/python
#######################################################################################
# #
# File: main.py #
# Part of 21th-cheater #
# Home: http://21th-cheater.googlecode.com #
# #
# The MIT License #
# #
# Copyright (c) 2010-2011 <elsesky@gmail.com> #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to deal #
# in the Software without restriction, including without limitation the rights #
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
# copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN #
# THE SOFTWARE. #
# #
#######################################################################################
'''
Created on May 9, 2013
@author: elsesky
@modified by: elsesky
'''
import time, datetime, sys
import random
import sqlite3
import browser_bogus
import online_keeper
import urllib2
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from ui.Core import *
from user_agent_lib import get_random_user_agent
from ntpsocket import get_ntp_time
from com_lib import *
VERSION = "1.5.5"
online_keeper_threads = []
lession_selector_threads = []
lession_selector_by_credit_threads = []
online_keeper_accounts = []
app = QApplication(sys.argv)
window = MainWindow()
online_keeper_update_timer = QTimer()
lession_selector_update_timer = QTimer()
lession_selector_credit_update_timer = QTimer()
try:
_fromUtf8 = QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class OnlineKeeperWorker(QThread):
learnedtime = 120
refreshtime = 60
relogintime = 3600
relogintime_indicator = 3600
#设定重选课间隔60*60*24/10/2
refreshtime_lession_selector = 3600
relogintime_lession_selector = 3600
# relogintime_lession_selector = 10
lessionnum = 2
creditnum = 2
totaldone = 0
def __init__(self, username, passwd, itemdata, parent=None):
super(OnlineKeeperWorker, self).__init__(parent)
self.browser = browser_bogus.Browser(username, passwd, get_random_user_agent())
# self.setDaemon(True)
# self.stopevent = threading.Event()
self.itemdata = itemdata
def set_learnedtime(self,learnedtime):
self.learnedtime = learnedtime
def set_refreshtime(self,refreshtime):
self.refreshtime = refreshtime
def set_lessionnum(self,lessionnum):
self.lessionnum = lessionnum
def set_creditnum(self,creditnum):
self.creditnum = creditnum
def set_relogintime(self,relogintime):
self.relogintime_indicator = relogintime
self.relogintime = relogintime
def set_refreshtime_lession_selector(self,refreshtime_lession_selector):
#传进来的是小时数,转换为秒
# self.refreshtime_lession_selector = refreshtime_lession_selector * 10
# self.relogintime_lession_selector = refreshtime_lession_selector * 10
self.refreshtime_lession_selector = refreshtime_lession_selector * 3600
self.relogintime_lession_selector = refreshtime_lession_selector * 3600
# self.refreshtime_lession_selector = refreshtime_lession_selector
# self.relogintime_lession_selector = refreshtime_lession_selector
def login(self):
# print "UA: ", self.browser.user_agent
try:
self.itemdata[2] = _fromUtf8("正在登录")
self.sleep(1)
online_keeper.do_login(self.browser)
self.itemdata[2] = _fromUtf8("已登录")
self.sleep(1)
except online_keeper.LoginFailed:
self.itemdata[2] = _fromUtf8("登录失败")
except urllib2.URLError:
self.itemdata[2] = _fromUtf8("网络连接不正常")
except urllib2.HTTPError, err:
self.itemdata[2] = _fromUtf8("请求被拒绝 %d" % err.code)
except:
self.itemdata[2] = _fromUtf8("未知异常")
def refresh(self,learnedtime="120",refreshtime=60):
fname = "sysrun.log"
while True:
#获取开始时间戳
stime = int(time.time())
try:
self.itemdata[2] = _fromUtf8("刷新课程中")
self.sleep(1)
online_keeper.update_lt(self.browser,learnedtime)
self.itemdata[2] = _fromUtf8("刷新完毕")
self.sleep(1)
except urllib2.URLError:
self.itemdata[2] = _fromUtf8("网络连接不正常")
except urllib2.HTTPError, err:
self.itemdata[2] = _fromUtf8("请求被拒绝 %d" % err.code)
except:
self.itemdata[2] = _fromUtf8("未知异常")
print "执行完毕".decode("utf-8").encode("gbk")
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "执行完毕".decode("utf-8").encode("gbk") + "\r\n")
i = refreshtime
self.totaldone += 1
#同时计算超时设置
while True:
self.itemdata[2] = _fromUtf8("完毕.将在" + str(i-1) +"秒后刷新,共执行" + str(self.totaldone) + "次")
i -= 1
#重新选课的倒计时(整合进时间戳里面计算)
# self.refreshtime_lession_selector -= 1
if i < 1:
break
self.sleep(1)
#计时重登陆,避免SESSION超期
# self.relogintime -= refreshtime
#修改为取实际执行耗时
retime = int(time.time())
totalrtime = retime - stime
self.relogintime -= totalrtime
print "剩余重登录时间为:".decode("utf-8").encode("gbk") + str(self.relogintime)
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "剩余重登录时间为:".decode("utf-8").encode("gbk") + str(self.relogintime) + "\r\n")
if self.relogintime <= 0:
print "relogin"
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "relogin" + "\r\n")
# try:
# fp = open(fname, "a")
# fp.write(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("do relogin\r\n"))
# except IOError:
# print "log err"
self.relogintime = self.relogintime_indicator
self.logout()
self.login()
# fp.write(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + str("relogin done\r\n"))
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "relogin done" + "\r\n")
etime = int(time.time())
totalctime = etime - stime
#减去花掉的时间
self.refreshtime_lession_selector -= totalctime
print "刷课花费时间:".decode("utf-8").encode("gbk") + str(totalctime)
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "刷课花费时间:".decode("utf-8").encode("gbk") + str(totalctime) + "\r\n")
#计时选课
print "剩余选课时间为:".decode("utf-8").encode("gbk") + str(self.refreshtime_lession_selector)
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "剩余选课时间为:".decode("utf-8").encode("gbk") + str(self.refreshtime_lession_selector) + "\r\n")
if self.refreshtime_lession_selector <= 0:
#当同时启用选课设置时,进入选课设置
if window.get_checkbox_lession_select_in_refresh_state():
#判断按照何种方式选课(学分或课程数)
if window.get_radioButton_lession_select_in_refresh_by_credit_state():
print "开始按学分设置选课".decode("utf-8").encode("gbk")
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "开始按学分设置选课".decode("utf-8").encode("gbk") + "\r\n")
#重置选课倒计时
self.refreshtime_lession_selector = self.relogintime_lession_selector
self.itemdata[2] = _fromUtf8("选课中")
self.sleep(1)
online_keeper.select_lession_by_credit(self.browser,self.creditnum)
self.itemdata[2] = _fromUtf8("选课完成")
self.sleep(1)
else:
print "开始按课程数设置选课".decode("utf-8").encode("gbk")
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "开始按课程数设置选课".decode("utf-8").encode("gbk") + "\r\n")
#重置选课倒计时
self.refreshtime_lession_selector = self.relogintime_lession_selector
self.itemdata[2] = _fromUtf8("选课中")
self.sleep(1)
online_keeper.select_lession(self.browser,self.lessionnum)
self.itemdata[2] = _fromUtf8("选课完成")
self.sleep(1)
logd(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))+ "===========" + "选课完成".decode("utf-8").encode("gbk") + "\r\n")
# fp.close()
def logout(self):
self.itemdata[2] = _fromUtf8("正在注销")
online_keeper.logout(self.browser)
self.itemdata[2] = _fromUtf8("已注销")
def run(self):
while True:
self.login()
self.refresh(self.learnedtime,self.refreshtime)
self.logout()
self.login()
self.exec_()
def quit(self):
self.logout()
self.itemdata[2] = _fromUtf8("已停止")
super(OnlineKeeperWorker, self).quit()
class LessionSelectorWorker(QThread):
learnedtime = "80"
refreshtime = 10
relogintime = 3600
lessionnum = 2
totaldone = 0
def __init__(self, username, passwd, itemdata, parent=None):
super(LessionSelectorWorker, self).__init__(parent)
self.browser = browser_bogus.Browser(username, passwd, get_random_user_agent())
self.itemdata = itemdata
def login(self):
# print "UA: ", self.browser.user_agent
try:
self.itemdata[2] = _fromUtf8("正在登录")
self.sleep(1)
online_keeper.do_login(self.browser)
self.itemdata[2] = _fromUtf8("已登录")
self.sleep(1)
except online_keeper.LoginFailed:
self.itemdata[2] = _fromUtf8("登录失败")
except urllib2.URLError:
self.itemdata[2] = _fromUtf8("网络连接不正常")
except urllib2.HTTPError, err:
self.itemdata[2] = _fromUtf8("请求被拒绝 %d" % err.code)
except:
self.itemdata[2] = _fromUtf8("未知异常")
def logout(self):
online_keeper.logout(self.browser)
def refresh(self,learnedtime="120",refreshtime=60,lessionnum=2):
self.itemdata[2] = _fromUtf8("选课中")
self.sleep(1)
online_keeper.select_lession(self.browser,lessionnum)
self.itemdata[2] = _fromUtf8("选课完成")
self.sleep(1)
#
# while True:
# try:
# self.itemdata[2] = _fromUtf8("刷新课程中")
# self.sleep(1)
# online_keeper.update_lt(self.browser,learnedtime)
# self.itemdata[2] = _fromUtf8("刷新完毕")
# self.sleep(1)
# except:
# self.itemdata[2] = _fromUtf8("未知异常")
# print "执行完毕".decode("utf-8").encode("gbk")
# i = refreshtime
# #计时重登陆,避免SESSION超期
# self.relogintime -= refreshtime
# if self.relogintime <= 0:
# print "relogin"
# self.relogintime = 3600
# self.logout()
# self.login()
def run(self):
self.login()
self.refresh(self.learnedtime,self.refreshtime,self.lessionnum)
self.logout()
#set button status to enable
window.lession_selector_start()
super(LessionSelectorWorker, self).quit()
def set_learnedtime(self,learnedtime):
self.learnedtime = learnedtime
def set_refreshtime(self,refreshtime):
self.refreshtime = refreshtime
def set_lessionnum(self,lessionnum):
self.lessionnum = lessionnum
def quit(self):
self.logout()
super(LessionSelectorWorker, self).quit()
class LessionSelectorByCreditWorker(QThread):
learnedtime = "80"
refreshtime = 10
relogintime = 3600
lessionnum = 2
creditnum = 2
totaldone = 0
def __init__(self, username, passwd, itemdata, parent=None):
super(LessionSelectorByCreditWorker, self).__init__(parent)
self.browser = browser_bogus.Browser(username, passwd, get_random_user_agent())
self.itemdata = itemdata
def login(self):
# print "UA: ", self.browser.user_agent
try:
self.itemdata[2] = _fromUtf8("正在登录")
self.sleep(1)
online_keeper.do_login(self.browser)
self.itemdata[2] = _fromUtf8("已登录")
self.sleep(1)
except online_keeper.LoginFailed:
self.itemdata[2] = _fromUtf8("登录失败")
except urllib2.URLError:
self.itemdata[2] = _fromUtf8("网络连接不正常")
except urllib2.HTTPError, err:
self.itemdata[2] = _fromUtf8("请求被拒绝 %d" % err.code)
except:
self.itemdata[2] = _fromUtf8("未知异常")
def logout(self):
online_keeper.logout(self.browser)
def refresh(self,learnedtime="120",refreshtime=60,creditnum=2):
self.itemdata[2] = _fromUtf8("选课中")
self.sleep(1)
online_keeper.select_lession_by_credit(self.browser,creditnum)
self.itemdata[2] = _fromUtf8("选课完成")
self.sleep(1)
def run(self):
self.login()
self.refresh(self.learnedtime,self.refreshtime,self.creditnum)
self.logout()
#set button status to enable
window.lession_selector_start()
super(LessionSelectorByCreditWorker, self).quit()
def set_learnedtime(self,learnedtime):
self.learnedtime = learnedtime
def set_refreshtime(self,refreshtime):
self.refreshtime = refreshtime
def set_lessionnum(self,lessionnum):
self.lessionnum = lessionnum
def set_creditnum(self,creditnum):
self.creditnum = creditnum
def quit(self):
self.logout()
super(LessionSelectorWorker, self).quit()
def read_account(filename="accounts.db"):
# file = open(filename, "r")
# lines = file.readlines()
# file.close()
#
# for line in lines:
# if line[0] == "#":
# continue
# if line[0] == "o":
# account_data = line.strip().split(",")[1:]
# online_keeper_accounts.append([QString.fromUtf8(account_data[0]),
# QString.fromUtf8(account_data[1]),
# QString.fromUtf8('##')])
# if line[0] == "d":
# account_data = line.strip().split(",")[1:]
# daily_job_accounts.append([QString.fromUtf8(account_data[0]),
# QString.fromUtf8(account_data[1]),
# QString.fromUtf8('##'),
# QString.fromUtf8('##')])
conn = sqlite3.connect(filename)
c = conn.cursor()
c.execute("""SELECT * FROM online_keeper_accounts""")
items = c.fetchall()
for item in items:
online_keeper_accounts.append([QString(item[0]),
QString(item[1]),
QString.fromUtf8('##')])
conn.close()
def write_account(filename="accounts.db"):
conn = sqlite3.connect(filename)
c = conn.cursor()
c.execute("DROP TABLE online_keeper_accounts")
c.execute("""CREATE TABLE online_keeper_accounts
(username TEXT PRIMARY KEY, passwd TEXT)""")
for item in online_keeper_accounts:
c.execute("INSERT INTO online_keeper_accounts VALUES (?,?)",
(item[0].__str__(), item[1].__str__()))
conn.commit()
conn.close()
# file = open(filename, "w")
# for item in online_keeper_accounts:
# if QString.toUtf8(item[0]) == "##":
# continue
# file.write("o," + QString.toUtf8(item[0]) + "," + QString.toUtf8(item[1]) + "\n")
# for item in daily_job_accounts:
# if QString.toUtf8(item[0]) == "##":
# continue
# file.write("d," + QString.toUtf8(item[0]) + "," + QString.toUtf8(item[1]) + "\n")
#
# file.close()
# print daily_job_threads
# print online_keeper_threads
def start_online_keeper():
learnedtime = _fromUtf8(window.get_learnedtime())
refreshtime = int(_fromUtf8(window.get_refreshtime()))
lessionnum = int(_fromUtf8(window.get_lession_num()))
creditnum = int(_fromUtf8(window.get_credit_num()))
refreshtime_lession_selector = int(_fromUtf8(window.get_refreshtime_lession_selector()))
relogintime = int(_fromUtf8(window.get_relogin_time()))
window.online_keeper_start()
# print window.pushButton_online_keeper_start.state
if window.pushButton_online_keeper_start.state:
for item in online_keeper_accounts:
worker = OnlineKeeperWorker(QString.toUtf8(item[0]),
QString.toUtf8(item[1]), item)
worker.set_learnedtime(learnedtime)
worker.set_refreshtime(refreshtime)
worker.set_lessionnum(lessionnum)
worker.set_creditnum(creditnum)
worker.set_relogintime(relogintime)
worker.set_refreshtime_lession_selector(refreshtime_lession_selector)
online_keeper_threads.append(worker)
for worker in online_keeper_threads:
worker.start()
print online_keeper_threads
online_keeper_update_timer.start(1000)
else:
print "stop workers"
for worker in online_keeper_threads:
worker.quit()
online_keeper_update_timer.stop()
while len(online_keeper_threads) > 0:
online_keeper_threads.pop()
print online_keeper_threads
def start_select_lesson():
learnedtime = _fromUtf8(window.get_learnedtime())
refreshtime = int(_fromUtf8(window.get_refreshtime()))
lessionnum = int(_fromUtf8(window.get_lession_num()))
window.lession_selector_start()
if window.pushButton_online_keeper_start.state:
for item in online_keeper_accounts:
worker = LessionSelectorWorker(QString.toUtf8(item[0]),
QString.toUtf8(item[1]), item)
worker.set_learnedtime(learnedtime)
worker.set_refreshtime(refreshtime)
worker.set_lessionnum(lessionnum)
lession_selector_threads.append(worker)
for worker in lession_selector_threads:
worker.start()
print lession_selector_threads
lession_selector_update_timer.start(1000)
else:
print "stop workers"
for worker in lession_selector_threads:
worker.quit()
lession_selector_update_timer.stop()
while len(lession_selector_threads) > 0:
lession_selector_threads.pop()
print lession_selector_threads
def start_select_by_credit():
learnedtime = _fromUtf8(window.get_learnedtime())
refreshtime = int(_fromUtf8(window.get_refreshtime()))
lessionnum = int(_fromUtf8(window.get_lession_num()))
creditnum = int(_fromUtf8(window.get_credit_num()))
window.lession_selector_by_credit_start()
if window.pushButton_online_keeper_start.state:
for item in online_keeper_accounts:
worker = LessionSelectorByCreditWorker(QString.toUtf8(item[0]),
QString.toUtf8(item[1]), item)
worker.set_learnedtime(learnedtime)
worker.set_refreshtime(refreshtime)
worker.set_lessionnum(lessionnum)
worker.set_creditnum(creditnum)
lession_selector_by_credit_threads.append(worker)
for worker in lession_selector_by_credit_threads:
worker.start()
print lession_selector_by_credit_threads
lession_selector_credit_update_timer.start(1000)
else:
print "stop workers"
for worker in lession_selector_by_credit_threads:
worker.quit()
lession_selector_credit_update_timer.stop()
while len(lession_selector_by_credit_threads) > 0:
lession_selector_by_credit_threads.pop()
print lession_selector_by_credit_threads
return
#定义单选框的信号处理
def checkbox_lession_select_in_refresh_onclick():
#如果是已经勾上的状态则禁止掉其它两个
window.checkbox_lession_select_in_refresh_onclick()
# print window.get_checkbox_lession_select_in_refresh_state()
# print window.get_radioButton_lession_select_in_refresh_by_lessionnum_state()
# print window.get_radioButton_lession_select_in_refresh_by_credit_state()
return
if __name__ == "__main__":
random.seed()
try:
read_account()
except:
QMessageBox.information(window, _fromUtf8("错误"),
_fromUtf8("无法打开账户文件accounts.db"))
window.update_online_keeper_account_list(online_keeper_accounts)
window.init_display_properties()
window.init_signals()
QObject.connect(online_keeper_update_timer,
SIGNAL(_fromUtf8("timeout()")),
window.online_keeper_account_list.reset)
QObject.connect(window.pushButton_online_keeper_start,
SIGNAL(QString.fromUtf8("clicked()")),
start_online_keeper)
QObject.connect(window.online_keeper_dataModel,
SIGNAL(QString.fromUtf8("dataChanged()")),
write_account)
QObject.connect(window.pushButton,
SIGNAL(QString.fromUtf8("clicked()")),
start_select_lesson)
QObject.connect(window.pushButton_lession_selector_by_credit,
SIGNAL(QString.fromUtf8("clicked()")),
start_select_by_credit)
#关联单选框信号
QObject.connect(window.checkbox_lession_select_in_refresh,
SIGNAL(QString.fromUtf8("clicked()")),
checkbox_lession_select_in_refresh_onclick)
window.write_account_signal.connect(write_account)
QApplication.setQuitOnLastWindowClosed(False)
window.show()
sys.exit(app.exec_()) | Python |
import random
NS_NTP = ["132.163.4.101",
"132.163.4.102",
"132.163.4.103",
"128.138.140.44",
"69.25.96.13",
"64.236.96.53"]
#print len(UA_MSIE10)
#print len(UA_MSIE9)
#print len(UA_MSIE8)
#print len(UA_MSIE7)
#print len(UA_MSIE6)
def get_random_ntp_server():
random.seed()
i = random.randrange(0, len(NS_NTP) - 1)
return NS_NTP[i]
if __name__ == "__main__":
print "currnet ntp server is " + get_random_ntp_server()
| Python |
#######################################################################################
#
# File: user_agent_lib
# Part of pcbeta-cheater
# Home: http://pcbeta-cheater.googlecode.com
#
# The MIT License
#
# Copyright (c) 2010-2011 <araya.akashic@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#######################################################################################
'''
Created on May 29, 2011
@author: flyxian
'''
import random
UA_MSIE10 = ["Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)",
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)",
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/5.0)",
"Mozilla/4.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/5.0)",
"Mozilla/1.22 (compatible; MSIE 10.0; Windows 3.1)"]
UA_MSIE9 = ["Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))",
"Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 7.1; Trident/5.0)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8; Zune 4.7)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8; Zune 4.7",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 4.0; InfoPath.3; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 4.0; Tablet PC 2.0; InfoPath.3; .NET4.0C; .NET4.0E)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; chromeframe/11.0.696.57)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) chromeframe/10.0.648.205",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; chromeframe/11.0.696.57)",
"Mozilla/5.0 ( ; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)",
"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 7.1; Trident/5.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; FDM; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Tablet PC 2.0; InfoPath.3; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/5.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; FDM; .NET4.0C; .NET4.0E; chromeframe/11.0.696.57)"]
UA_MSIE8 = ["Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; Media Center PC 4.0; SLCC1; .NET CLR 3.0.04320)",
"Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 3.0.04506.30)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/4.0; FBSMTWB; .NET CLR 2.0.34861; .NET CLR 3.0.3746.3218; .NET CLR 3.5.33652; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.3; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; msn OptimizedIE8;ZHCN)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; InfoPath.3; .NET4.0C; .NET4.0E) chromeframe/8.0.552.224",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; Zune 4.7; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E; MS-RTC LM 8; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; Zune 3.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; MS-RTC LM 8; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; FDM; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.1; AskTbMYC/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC EA 2; MS-RTC LM 8; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 4.0.20402; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.3; .NET CLR 4.0.20506)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; QQPinyin 686; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRA 5.5 (build 02842); SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRA 5.5 (build 02842); GTB6.3; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; Zune 4.0; .NET CLR 1.",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB0.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; FunWebProducts; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; OfficeLiveConnector.1.5; OfficeLivePatch.",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; SLCC2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; GTB6; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; AskTbIJBME/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Media Center PC 5.0; SLCC1; Tablet PC 2.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; AskTbGOM2/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.04506; Media Center PC 5.0; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; .NET4.0C; AskTbPTV2/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.1; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; .NET CLR 3.0.04506; Media Center PC 5.0; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; Tablet PC 2.0; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; InfoPath.3; AskTbBT4/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET CLR 1.0.3705; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8; Tablet PC 2.0; .NET CLR 1.1.4322; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET CLR 1.1.4322; .NET4.0E; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.1; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; SLCC1; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; FDM; Tablet PC 2.0; .NET CLR 4.0.20506; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Zune 4.7; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C) chromeframe/8.0.552.237",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.30618; Media Center PC 5.0; MS-RTC LM 8; SLCC1; Tablet PC 2.0; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.30618; .NET4.0C; InfoPath.2; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.04506; Media Center PC 5.0; SLCC1; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; Tablet PC 2.0; OfficeLiveConnector.1.3; OfficeLivePatch.1.3; MS-RTC LM 8; InfoP",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; SLCC1; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.3029; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 661; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRA 5.7 (build 03797); SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; FDM; InfoPath.2; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Media Center PC 3.1; SV1; WOW64; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 4.0.20402; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MathPlayer 2.20; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; iCafeMedia; QQDownload 667; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.04506; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C) chromef",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; SLCC1; Tablet PC 2.0; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; .NET4.0C; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; AskTbFWV5/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; QQDownload 667; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.3; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB0.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB0.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; eSobiSubscriber 2.0.4.16; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; chromeframe/10.0.648.151; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MSSDMC1.3.1020.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; FDM; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; MS-RTC LM 8; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729; .NET CLR 4.0.20506; OfficeLiveConnector.1.4; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) chromeframe/6.0.472.63",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.5.21022; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.30729; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MSSDMC2.4.2011.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 1.1.4322; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; FunWebProducts; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; WinNT-PAR 03.09.2009; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SV1; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SV1; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1;)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; Media Center PC 5.0; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Tablet PC 2.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 1.1.4322; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; InfoPath.1; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; FDM; .NET4.0C; .NET4.0E; chromeframe/11.0.696.57)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; MS-RTC LM 8; .NET4.0C; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; Zune 3.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Tablet PC 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; MEGAUPLOAD 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; Zune 2.5; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; Windows-Media-Player/10.00.00.3990; .NET CLR 3.5.30428; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; MS-RTC LM 8; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; InfoPath.1; .NET CLR 3.0.30729; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLivePatch.1.3; MS-RTC LM 8; OfficeLiveConnector.1.5; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; MS-RTC LM 8; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30428; .NET CLR 3.5.30729; Media Center PC 5.1; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.0.30729; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 1.1.4322; Tablet PC 2.0; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Tablet PC 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 627; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30729; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 627; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 627; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 590; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Q312461; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; Zune 4.0; MS-RTC LM 8; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; MathPlayer 2.10d; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; MathPlayer 2.10d; GTB6.4; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; InfoPath.2; AskTbMYC-ST/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Zune 3.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Zune 3.0; .NET CLR 3.5.30729; InfoPath.1; .NET CLR 3.0.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Windows-Media-Player/10.00.00.3990; Zune 3.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; Dealio Toolbar 3.4; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.1; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET4.0C; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnect",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; FDM; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; MEGAUPLOAD 3.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.21022; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB0.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.1; A",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB0.0; (R1 1.6); SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB6.6; SLCC1; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB6.3; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.0.0; .NET CLR 3.0.30729; InfoPath.2; MS-RTC LM 8; .NE",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB0.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FBSMTWB; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FBSMTWB; GTB6.3; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FBSMTWB; FunWebProducts; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.3; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; chromeframe; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; .NET CLR 3.5.30729; .NET4.0C; OfficeLiveConnector.1.5; .NET4.0E; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; ja)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 3.0.04506.648; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.0450",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; YPC 3.2.0; MSN Optimized;GB; .NET CLR 2.0.50727; InfoPath.1; MSN Optimized;GB)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Windows-Media-Player/10.00.00.3990; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQPinyinSetup 620; QQPinyin 730; GTB6.5; QQDownload 661; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQPinyinSetup 620; QQPinyin 689; QQPinyin 730)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 665; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 2.0.50727; Zune 2.5; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 4.3 (build 01218); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; chromeframe; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MathPlayer 2.10d; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MathPlayer 2.10d; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MathPlayer 2.10b)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; Zune 3.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbARS/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; iCafeMedia; GTB6.5; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; QQDownload 672)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.1; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.1; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 1.1.4322; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.1; .NET CLR 2.0.50727; Dealio Toolbar 3.4; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; FBSMTWB; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;DEAT)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;ENGB)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET CLR 4.0.20506)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zune 2.0; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; MEGAUPLOAD 2.0; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; Zango 10.3.75.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; AskTbARS/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; InfoPath.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/8.0.552.224",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/8.0.552.215",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; msn OptimizedIE8;ZHTW)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; Windows-Media-Player/10.00.00.3990; .NET CLR 3.5.30729; AskTbBT5/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; WinNT-EVI 30.03.2010; InfoPath.2; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; InfoPath.1; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;JAJP)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3; Windows-Media-Player/10.00.00.3990; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2; AskTbX-SD/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 3.0.04506.30; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; AskTbMP3R7/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/8.0.552.224",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;JAJP)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; AskTbF-ET/5.11.3.15590)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; yie8; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 1.1.4322; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; InfoPath.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.20706; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.4)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.0.3705; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB0.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.1.3; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/7.0.517.44",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProductsp; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.45",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 1.1.4322; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6.6; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6.6; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6.4)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6.3; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) chromeframe/8.0.552.224",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.370.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FBSMTWB; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FBSMTWB; GTB6.6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FBSMTWB; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe/10.0.648.204; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; ABPlayer_3.0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; InfoPath.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.5.30729; FDM; MS-RTC LM 8; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; InfoPath.1; .NET CLR 3.5.30729; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET4.0C; .NET4.0E; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; msn OptimizedIE8;KOKR)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbF-ET/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022;",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; FDM; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Trident/4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.5.20404; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.1.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; Zune 3.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC EA 2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MSN Optimized;ENAU)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MSSDMC2.4.2011.2; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MSSDMC2.4.2011.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Paros/3.2.13",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Zune 3.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; InfoPath.1; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Windows-Media-Player/10.00.00.3990; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4;)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; AskTbSPC/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0) chromeframe/8.0.552.237",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; fr-CA)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; en-GB)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows 98; Win 9x 4.90; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; ; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E) chromeframe/8.0.552.237",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.3; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.3; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; AskTbARS/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; FDM; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.3; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; OfficeLivePatch.1.3; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; InfoPath.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 3.0; InfoPath.1; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET CLR 3.0.30618; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 665; QQDownload 667; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 663; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.1; Tablet PC 2.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 663; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 661; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 661; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 646; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; Media Center PC 6.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; Tablet PC 2.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; Media Center PC 3.1; .NET CLR 3.0.04320)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/5.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; Zune 3.0; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; FBSMTWB; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; InfoPath.2; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Zune 3.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; FDM; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.20706; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; Alexa Toolbar; MEGAUPLOAD 1.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729; msn OptimizedIE8;ZHHK)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.30729; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6.3; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; QQDownload 667; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.5.30",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; (R1 1.6); SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0; SLCC1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; QQDownload 1.7; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.1) Paros/3.2.13",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.1; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Alexa Toolbar; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.4; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.4; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.3; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FunWebProducts; InfoPath.1; .NET CLR 2.0.50727; MSN OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; Zune 4.7; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/8.0.552.237",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 4.0.20506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 4.0.20506; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; AskTB5.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 ( ; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; .NET CLR 3.5.30729)",
"Mozilla/4.0 ( ; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"(Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0))"]
UA_MSIE7 = ["Mozilla/4.0(compatible; MSIE 7.0b; Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.0.3705; Media Center PC 3.1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)",
"Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; el-GR)",
"Mozilla/5.0 (MSIE 7.0; Macintosh; U; SunOS; X11; gu; SV1; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; c .NET CLR 3.0.04506; .NET CLR 3.5.30707; InfoPath.1; el-GR)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; c .NET CLR 3.0.04506; .NET CLR 3.5.30707; InfoPath.1; el-GR)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; fr-FR)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; en-US)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; SpamBlockerUtility 6.3.91; SpamBlockerUtility 6.2.91; .NET CLR 4.1.89;GB)",
"Mozilla/4.79 [en] (compatible; MSIE 7.0; Windows NT 5.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (Windows; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (Mozilla/4.0; MSIE 7.0; Windows NT 5.1; FDM; SV1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (Mozilla/4.0; MSIE 7.0; Windows NT 5.1; FDM; SV1)",
"Mozilla/4.0 (compatible;MSIE 7.0;Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; InfoPath.3; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0;)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; YPC 3.2.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; YPC 3.2.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; Media Center PC 5.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30707; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30428; .NET CLR 3.0.30422)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30618; .NET CLR 3.5.30729; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; .NET CLR 3.5.21022; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.30729; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Media Center PC 5.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; chromeframe; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; .NET CLR 2.0.50727; SLCC1; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1;); SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; InfoPath.1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Zango 10.3.75.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.1; .NET CLR 3.5.21022; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; FDM; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; Dealio Toolbar 3.4; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; InfoPath.2; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30628)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zango 10.3.70.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; MEGAUPLOAD 2.0; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1; MS-RTC LM 8; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Alexa Toolbar; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506; Tablet PC 2.0; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30729; MS-RTC LM 8; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30618; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30428; .NET CLR 3.0.30422)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; .NET4.0C; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Zango 10.3.35.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Tablet PC 2.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Zune 3.0; MS-RTC LM 8; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.20706; .NET CLR 3.0.590)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1); SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MathPlayer 2.10d; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MathPlayer 2.10d; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MathPlayer 2.10d; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; InfoPath.1; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; Zune 2.5; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322; Dealio Toolbar 3.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Dealio Toolbar 3.4; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1; Zune 2.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.4; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.3; FBSMTWB; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; FDM; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zune 3.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.1; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; MS-RTC LM 8; InfoPath.2; OfficeLiveConnector.1.2; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; MathPlayer 2.10d; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; (R1 1.5); SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; (R1 1.5); SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Zango 10.3.75.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FBSMTWB; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; chromeframe; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; chromeframe; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; ABPlayer_1.3.22; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; (R1 1.6); SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; (R1 1.6); SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; (R1 1.5); SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0 SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; Seekmo 10.0.431.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; FDM; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; GTB6.5; MathPlayer 2.20; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; InfoPath.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.03)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Win64; x64; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Win64; x64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Q312461; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; MathPlayer 2.10; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; FunWebProducts; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1;)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; zh-cn)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Zango 10.3.75.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Zango 10.0.370.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; SV1; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 2.0.50727; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; PeoplePal 3.0; yplus 5.6.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.314.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 2.0.50727; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; Zango 10.0.314.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.5.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; (R1 1.5); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.0.3; yplus 4.2.00b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.0.3; .NET CLR 1.1.4322; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.0.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.0.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YComp 5.0.0.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Wysigot 5.5; .NET CLR 2.0.50727; .NET CLR 3.0.04307.00; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; T312461; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; YPC 3.2.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Stardock Blog Navigator 1.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; HbTools 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; GTB6.6; AskTbPTV2/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; GTB5; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FunWebProducts; Zango 10.0.341.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.03)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Stardock Blog Navigator 1.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SiteKiosk 6.5 Build 150)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Seekmo 10.0.345.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Q312461; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; PeoplePal 6.1; PeoplePal 3.0; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Q312461; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Q312461; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MS-RTC LM 8; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zune 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRA 5.2 (build 02405); GTB6.3; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRA 4.2 (build 01102); GTB6.3; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.648; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Zango 10.0.314.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; chromeframe; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; Seekmo 10.0.431.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; MEGAUPLOAD 2.0; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1; .NET CLR 2.0.50727; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; (R1 1.6); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MEGAUPLOAD 2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; (R1 1.1); .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iOpus-I-M; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.577; .NET CLR 3.5.20526)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iOpus-I-M; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; MS-RTC LM 8; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; msn Optimized IE build03;JP)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; HbTools 4.8.4; Zango 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iebar; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iebar; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iCafeMedia; GTB6; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Hotbar 4.5.0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.1; FDM; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.1; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zune 2.5; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1))",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.6; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; MS-RTC LM 8; AskTbARS/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.5; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; WinNT-PAI 28.08.2009; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; MRA 5.2 (build 02405); InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; MRA 5.0 (build 02094); .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatc",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; (R1 1.3); .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Zango 10.3.36.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; Zango 10.0.314.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.2; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; FunWebProducts; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.4; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; PeoplePal 6.2; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.2; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.2; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; Hotbar 10.2.236.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.79.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.2.191.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.3.79.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.5.30428; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 2.0.50727; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.6); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB0.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbARS/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB0.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB0.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Zango 10.0.314.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6.3; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MEGAUPLOAD 2.0; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 2.0.50727; Zune 2.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.3.35.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.328.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.314.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 10.2.203.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.8.4; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts-MyWay; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; SV1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR.3.0.04131.06)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FBSMTWB; GTB6.3; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FBSMTWB; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FBSMTWB; .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;ESES)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; en-US; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; en-US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; DigExt; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; chromeframe; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; chromeframe; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; chromeframe/10.0.648.204; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Alexa Toolbar; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; SLCC1; Media Center PC 5.0; .NET CLR 3.0.04506; MEGAUPLOAD 2.0; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Advanced Searchbar; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Advanced Searchbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Advanced Searchbar 3.36; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Zune 3.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Zune 2.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.590; Alexa Toolbar; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Hotbar 10.0.342.0; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.5.30428; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 1.1.4322; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30428)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; MS-RTC LM 8; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yplus 5.6.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 1.0.3705; Tablet PC 1.7; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Zango 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MEGAUPLOAD 2.0; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.0.3705; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.0.3705; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04307.00; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50215; Avalon 6.0.5070; WinFX RunTime 3.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.40607; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.40301; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.3.36.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.0.370.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.0.341.0; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.0.314.0; SpamBlockerUtility 4.8.4; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.0.275.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; Zango 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.341.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.314.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; Zango 10.0.341.0; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; AskTB5.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) (383; 383; 383)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Zango 10.0.370.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Zango 10.0.314.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Seekmo 10.0.275.0; Zango 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Zango 10.0.370.0; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; SpamBlockerUtility 4.8.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zune 2.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.314.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Avalon 6.0.5070; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MEGAUPLOAD 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.2; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zune 3.0; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Media Center PC 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; Seekmo 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30428)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.5.30428)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.0.3705; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.0.3705; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.5.30428)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.507277777)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50110; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322) Paros/3.2.13",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; InfoPath.1; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Seekmo 10.0.406.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Compatible; SV1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; PeoplePal 3.0; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; yplus 5.6.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; Zango 10.0.314.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); Zune 3.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.314.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 1.1.4322; Hotbar 10.0.368.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322; Seekmo 10.0.341.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.1); .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.1); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SLCC2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.5.30729; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1, .NET CLR 1.1.4322, .NET CLR 2.0.50727, .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)",
"Mozilla/4.0 (Compatible; MSIE 7.0; Windows NT 5.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows 95)",
"Mozilla/4.0 (compatible; MSIE 7.0; CP/M 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0)",
"Mozilla/4.0 (compatible; Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727); Windows NT 5.1; .NET CLR 2.0.50727)",
"Mozilla/2.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)",
"Mozilla/10.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)",
"Mozilla/1.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)",
"Mozilla /4.0 (compatible;MSIE 7.0;Windows NT6.0)"]
UA_MSIE6 = ["Mozilla/4.0 (compatible; MSIE 6.1; Windows XP; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)",
"Mozilla/4.0 (compatible; MSIE 6.01; Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.1; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; YComp 5.0.0.0) (Compatible; ; ; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 4.0; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98; Win 9x 4.90)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 4.0)",
"Mozilla/5.0 (Windows; U; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4325)",
"Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/45.0 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.08 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.01 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (X11; MSIE 6.0; i686; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 6.0)",
"Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 5.2)",
"Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 5.0)",
"Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (MSIE 6.0; Windows NT 5.0)",
"Mozilla/4.0 (compatible;MSIE 6.0;Windows 98;Q312461)",
"Mozilla/4.0 (Compatible; Windows NT 5.1; MSIE 6.0) (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; U; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; QQDownload 534; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (Compatible; MSIE 8.0; Windows NT 6.1; FDM; .NET CLR 1.1.4322; Windows NT 6.1; Trident/4.0; Mozilla/4.0; MSIE 6.0; Windows NT 5.1; SV1 ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.",
"Mozilla/4.0 (Compatible; MSIE 8.0; Windows NT 6.1; .NET CLR 1.1.4322; Windows NT 6.1; Trident/4.0; Mozilla/4.0; MSIE 6.0; Windows NT 5.1; SV1 ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 590; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E; OfficeLiveConnector",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; AskTbMYC-ST/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Embedded Web Browser from: http://bsalsa.com/; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQWubi 87; QQDownload 665; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FBSMTWB; QQDownload 627; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; AskTbPSI/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; http://bsalsa.com) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Tablet PC 2.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MathPlayer 2.10b; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.5.30729; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MEGAUPLOAD 1.0; MEGAUPLOAD 2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; FDM; MEGAUPLOAD 1.0; MEGAUPLOAD 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.648; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows; U; Win98; en-US)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows XP; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows XP; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows XP)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SiteKiosk 4.9; SiteCoach 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SiteKiosk 4.9)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SiteKiosk 4.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; InfoPath.3; MS-RTC LM 8; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.1; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SV1; InfoPath.1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Trident/4.0; SV1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Trident/4.0; Media Center PC 3.1; SV1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; QQDownload 627; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; QQDownload 1.7; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; iCafeMedia; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; )",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.40607; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; MathPlayer 2.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; GTB6.6; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; FunWebProducts; SV1; .NET CLR 1.1.4322; Alexa Toolbar; InfoPath.1; .NET CLR 2.0.50727; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.1399)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; yplus 5.6.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; yplus 5.3.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; yplus 5.3.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; (R1 1.5; yplus 4.1.00b); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; yplus 4.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.1.0; SV1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.1.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.1.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; SV1; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; SV1; FunWebProducts; yplus 4.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; SV1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; SV1; .NET CLR 1.1.4322; HbTools 4.8.2; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; FunWebProducts; .NET CLR 1.0.3705; Hotbar 4.6.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.0; YPC 3.0.1; SV1; .NET CLR 1.0.3705; HbTools 4.7.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.0; SV1; YPC 3.0.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.6; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.5; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.5; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.4; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Windows 98; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.7; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.7; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; .NET CLR 1.1.4322; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.0; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; Wanadoo 6.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; Wanadoo 6.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; FunWebProducts; SV1; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.4; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; U; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; U)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.04506; SLCC1; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; tr)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TMCID=SIEMENS-SK55; .NET CLR 1.1.4322; SiteKiosk 5.5 Build 45; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TMCID=AMT000201; .NET CLR 1.1.4322; SiteKiosk 5.5 Build 45; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; Q312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Zango 10.0.370.0; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.5.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.4.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.3.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.3.01d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; Media Center PC 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; InfoPath.1; .NET CLR 2.0.50727; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; Seekmo 10.0.341.0; yplus 5.6.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.5.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.01d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; InfoPath.1; yplus 5.3.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; InfoPath.1; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.341.0; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yplus 5.6.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1; yplus 5.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.3.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; (R1 1.5; yplus 5.3.01b); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.1.0; Rogers Hi-Speed Internet; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; InfoPath.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; yplus 4.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; yplus 4.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; yplus 4.3.01d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; .NET CLR 1.1.4322; yplus 4.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1; FreeprodTB; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 4.0.00d) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yie8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 7.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; Media Center PC 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.6; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; Wanadoo 6.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 5.6; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.3",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Stardock Blog Navigator 1.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SiteKiosk 6.5 Build 150)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SiteKiosk 6.0 Build 98; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SiteKiosk 6.0 Build 98)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Seekmo 10.0.424.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Rogers Hi-Speed Internet; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Rogers Hi-Speed Internet; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Rogers Hi-Speed Internet; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 681; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 1.7; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; PeoplePal 6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; PeoplePal 3.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; msn OptimizedIE8;ENUS; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MS-RTC LM 8; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; AskTbNCE/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 5.4 (build 02625))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 5.3 (build 02564))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 4.9 (build 01849); .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; MEGAUPLOAD 2.0; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.40607; .NET CLR 1.1.4322; FDM; MS-RTC LM",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 2.8; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10d; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10 beta 2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10 beta 2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10 beta 1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; KB0:718886; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; IPOffice; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; InfoPath.2; MEGAUPLOAD 1.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Windows-Media-Player/10.00.00.3990; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; image_azv; i-NavFourF; .NET CLR 1.1.4322; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; image_azv; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; image_azv; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; image_azv; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; FunWebProducts; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; ie4.com; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iCafeMedia; QQPinyinSetup 614; .NET CLR 2.0.50727; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iCafeMedia; QQDownload 627; GTB6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iCafeMedia; QQDownload 1.7; User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; http://bsalsa.com) ; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iCafeMedia; InfoPath.2; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; icafe8; QQDownload 667; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; icafe8; QQDownload 615; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; icafe8; QQDownload 1.7; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.0.3705; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.6.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.5.1.0; FunWebProducts; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.5.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.4.2.0; FunWebProducts; .NET CLR 1.0.3705; PeoplePal 3.0; .NET CLR 1.1.4322; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.4.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.4.1.1381)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.5; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.6.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; InfoPath.2; Dealio Toolbar 3.1.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; msn Optimized IE build03;JP)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.6; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.5; .NET CLR 2.0.50727; InfoPath.2; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727) chromeframe/6.0.472.33",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.5; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; InfoPath.1; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Zango 10.0.370.0; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProductsn)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.75.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB0.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Wanadoo 7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Wanadoo 6.7; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; SpamBlockerUtility 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Media Center PC 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; InfoPath.1; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Hotbar 4.5.1.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Hotbar 4.5.1.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; GTB5; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Advanced Searchbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.50727; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.2; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; Hotbar 4.6.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.6.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; Hotbar 10.2.217.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Hotbar 10.2.191.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50215; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 2.8; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727; Media Center PC 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; SpamBlockerUtility 4.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Seekmo 10.0.345.0; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; PeoplePal 6.6; Zango 10.0.314.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1; Hotbar 10.2.217.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.6.04)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; SpamBlockerUtility 10.0.327.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; HbTools 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; SpamBlockerUtility 4.8.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; SpamBlockerUtility 4.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; HbTools 4.7.7; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.6))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts-MyWay; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts-MyWay; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts-MyWay)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 2.0.50727; InfoPath.1; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FBSMTWB; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FBSMTWB; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; DigExt; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; DigExt; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; CursorZone Grip Toolbar 2.08.552; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar 3.25)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar 3.24; EmbeddedWB 14.5 from: http://www.bsalsa.com/ EmbeddedWB 14.5; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar 3.24; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR SV.4.0.329; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; FDM; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR.3.0.04131.06)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 2.0.50215; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50215; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50110; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.41115; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Zango 10.0.314.0; .NET CLR 2.0.50727; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Tablet PC 1.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; SiteKiosk 6.0 Build 98; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; SiteKiosk 6.0 Build 98)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.431.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.370.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 6.1; PeoplePal 6.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 3.0; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; Windows-Media-Player/10.00.00.3990; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Tablet PC 1.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50215; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.3; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; Alexa Toolbar) (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Alexa Toolbar; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; SiteKiosk 6.2 Build 51)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD TOOLBAR 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; MS-RTC LM 8)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar; yplus 5.3.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; ;ja)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; SiteKiosk)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.6",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) Paros/3.2.13",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; Avalon 6.0.5070; WinFX RunTime 3.0.50215; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; Avalon 6.0.4030; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.40903)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.1432)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Tablet PC 1.7; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Tablet PC 1.7; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Tablet PC 1.7; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; PeoplePal 3.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 3.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 2.8; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 2.8; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 2.8; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; SpamBlockerUtility 4.8.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; Media Center PC 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; Media Center PC 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Avalon 6.0.5070; .NET CLR 2.0.50215; WinFX RunTime 3.0.50215; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Media Center PC 4.0; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.40607; InfoPath.1; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); PeoplePal 3.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); HbTools 4.6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; Tablet PC 1.7; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.1); InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.1); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.1); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (compatible; MSIE 6.0; Windows NT 5.1; SV1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.927; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.926; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.926; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.926; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.926)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; StumbleUpon.com 1.906; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; StumbleUpon.com 1.763; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; StumbleUpon.com 1.763; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SiteKiosk 6.0 Build 98)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SiteKiosk 5.5 Build 45; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SiteCoach 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Rogers Hi-Speed Internet; SV1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Rogers Hi-Speed Internet; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Rogers Hi-Speed Internet; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Rogers Hi-Speed Internet; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YPC 3.0.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.6; Hotbar 4.2.11.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.4; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.4; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.0.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Wanadoo 6.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; YPC 3.0.1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; Hotbar 4.5.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.3.6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.1.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.1.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 3.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; FunWebProducts; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; FunWebProducts; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705; .NET CLR 1.0.3617; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; (R1 1.1); MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; pl)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; PeoplePal 6.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; nb)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; msn OptimizedIE8;ZHCN; SV1; QQDownload 661; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT); SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; .NET CLR 2.0.50727; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MathPlayer 2.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MathPlayer 2.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; LN; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; SV1; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; image_azv; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.5.1.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.5.0.0; SV1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.7.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.6.0; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.5.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.2.0; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.1.1406)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.1.1388)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.5.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.2.0; FunWebProducts; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.1.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.1.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.8.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.14.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.14.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.13.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.11.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.11.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.10.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.5.0; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.2.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.0; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB6; FunWebProducts; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB6.4; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB5; SV1; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB5; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Grip Toolbar 2.07a; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; YPC 3.2.0; SV1; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; YPC 3.2.0; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Wanadoo 5.6; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; YPC 3.2.0; .NET CLR 1.1.4322; HbTools 4.8.0; yplus 5.3.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; i-NavFourF; .NET CLR 1.1.4322; HbTools 4.7.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; Hotbar 4.5.1.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322; Alexa Toolbar; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; Hotbar 10.0.356.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; HbTools 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; (R1 1.5); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Seekmo 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Hotbar 4.6.1; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; FunWebProducts-MyTotalSearch; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; (R1 1.5); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; MathPlayer 2.0; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; iebar; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyTotalSearch)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FreeprodTB; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FreeprodTB)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM; SV1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FBSMTWB)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; es-es)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; YPC 3.2.0; SV1; .NET CLR 1.1.4322; yplus 5.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1; YPC 3.2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; Q312461; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Dealio Toolbar 3.4; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; de)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; SV1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Advanced Searchbar 3.25; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; SiteKiosk 5.5 Build 45; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; SiteKiosk 5.5 Build 45)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.40607; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 1.2.30703)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3328)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.1); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.1); .NET CLR 1.0.3512)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.12)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.2.0; (R1 1.5; yplus 5.1.02b))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.0.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.8.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.4; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.0.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; YComp 5.0.2.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; YComp 5.0.0.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Hotbar 4.3.2.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SiteKiosk 6.2 Build 51)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SiteKiosk 6.0 Build 98; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Rogers Hi-Speed Internet; Hotbar 4.4.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.2.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.2.5; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.1.5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.3705; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.2914; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MathPlayer 2.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MathPlayer 2.0; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; FunWebProducts-MyWay; .NET CLR 1.1.4322; FDM; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; FunWebProducts-MyWay; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iebar; HbTools 4.6.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iebar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; IE6SP1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; i-NavFourF; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.5.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.5.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.2.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.1.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.13.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.11.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.0; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.0; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 3.0; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts-MyWay; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FreeprodTB; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Advanced Searchbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.3); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.1); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.1); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; T312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 4.2.11.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; DigExt; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows CE)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0; yplus 5.3.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.0.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.0.1; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.2.5; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; www.direktanlagebank.com)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x4.90)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.4; Hotbar 4.1.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.0.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 6.1; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 5.5; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 5.5; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Rogers Hi-Speed Internet)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Q312461; YPC 3.0.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Q312461; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; PeoplePal 6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; PeoplePal 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; PeoplePal 3.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; MEGAUPLOAD 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.4.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.3.5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.2.3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.1.5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.1.2.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts; Hotbar 4.2.14.0; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.0.3705; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 7.1; Hotbar 4.2.6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.2; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.1; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.6; Wanadoo 5.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.5; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.5; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.3; YComp 5.0.0.0; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.3; Wanadoo 5.5; Wanadoo 6.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.3; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; Q312461; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SiteKiosk 4.9; SiteCoach 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SiteKiosk 4.9)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SEARCHALOT.COM; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; ru)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Rogers Hi-Speed Internet)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; YComp 5.0.2.6; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; Hotbar 4.3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; i-NavFourF; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.4.6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.3.2.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.2.8.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.2.8.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.2.11.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.2.1.1198)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.1.8.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; HbTools 4.7.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; YPC 3.2.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; (R1 1.5); SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; (R1 1.5); MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts-MyWay)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts-MyTotalSearch)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FDM; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Advanced Searchbar 3.25)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 3.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; ; Windows NT 5.1;SV1;Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; ; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; )",
"Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322); Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SLCC1; .NET CLR 1.1.4325; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4325; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30707; MS-RTC LM 8)",
"Mozilla/4.0 (compatible ; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 ( compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar )",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SiteKiosk 4.9; SiteCoach 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; Hotbar 4.1.7.0; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.0.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; T312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"]
UA_tabs = [UA_MSIE10, UA_MSIE9, UA_MSIE8, UA_MSIE7, UA_MSIE6]
#print len(UA_MSIE10)
#print len(UA_MSIE9)
#print len(UA_MSIE8)
#print len(UA_MSIE7)
#print len(UA_MSIE6)
def get_random_user_agent():
random.seed()
i = random.randrange(0, len(UA_tabs) - 1)
# print i
ua_tab = UA_tabs[i]
# print len(ua_tab)
j = random.randint(0, len(ua_tab) - 1)
# print j
return ua_tab[j]
if __name__ == "__main__":
print get_random_user_agent()
| Python |
#! /usr/bin/python
# -*- coding: utf-8 -*-
from distutils.core import setup
import py2exe
import main
from glob import glob
data_files = [("Microsoft.VC100.CRT",
glob(r'E:\important\应用软件\开发工具\python\开发代码\Microsoft.VC100.CRT\*.*'))]
setup(
options = {"py2exe": {"optimize": 2,
"compressed": 1,
# "dll_excludes": ["MSVCP90.dll",],
"bundle_files": 1,
"includes": ["sip"]} },
name = "21tb_cheater",
version = main.VERSION,
description = "21TB Cheating Tools",
zipfile = None,
# data_files=data_files,
windows=[{'script': 'main.py',
"icon_resources": [(1, "./images/logo.ico")]}],
data_files = [('images', ['./images/logo.png'])])
| Python |
#!/usr/bin/python
from socket import *
import struct,os,time,sys
from ntp_server_lib import get_random_ntp_server
# print get_random_ntp_server()
# Script to set Linux hardware clock (/usr/sbin/hwclock) from an NTP
# time server. Run as "setclock.py" to simply print the time from
# the NTP server. Run as "setclock.py --set" to set the Linux
# hardware clock (as the super user, of course).
# Based on Simon Foster's simple SNTP client from ASPN Python cookbook.
# Adapted by Paul Rubin; this script lives at:
# http://www.nightsong.com/phr/python/setclock.py
time_server = (get_random_ntp_server(), 123)
# time.apple.com is a stratum 2 time server. (123 is the SNTP port number).
# More servers info can be found at
#
# http://www.eecis.udel.edu/~mills/ntp/servers.htm
#
# Note it's considered antisocial to use a stratum 1 server (like NIST)
# for purposes like this which don't need extreme accuracy (i.e. syncing
# your own big NTP network). See www.ntp.org for more info.
#
# You could also use time.windows.com (Microsoft server) which syncs
# all Windows XP machines everywhere, so it can presumably handle lots
# of clients.
# number of seconds between NTP epoch (1900) and Unix epoch (1970).
TIME1970 = 2208988800L # Thanks to F.Lundh
def get_ntp_time():
client = socket( AF_INET, SOCK_DGRAM )
data = '\x1b' + 47 * '\0'
client.sendto(data, time_server)
data, address = client.recvfrom( 1024 )
if data:
print 'Response received from', address,'\n'
t = struct.unpack( '!12I', data )[10]
if t == 0:
return -1
return t - TIME1970
else:
return -1
| Python |
# -*- coding: utf-8 -*-
#######################################################################################
# #
# File: Core.py #
# Part of stage1st_cheater #
# Home: http://stage1st-cheater.googlecode.com #
# #
# The MIT License #
# #
# Copyright (c) 2010-2011 <araya.akashic@gmail.com> #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to deal #
# in the Software without restriction, including without limitation the rights #
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
# copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN #
# THE SOFTWARE. #
# #
#######################################################################################
'''
Created on May 22, 2011
@author: flyxian
'''
import operator
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from MainDialog import *
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class MainWindow(QMainWindow, Ui_MainDialog):
write_account_signal = pyqtSignal()
def __init__(self, parent=None):
super(MainWindow, self).__init__(parent)
self.setupUi(self)
'''user defined'''
self.pushButton_online_keeper_start.state = False
self.createActions()
self.createTrayIcon()
self.trayIcon.show()
self.trayIcon.setVisible(True)
icon = QtGui.QIcon(_fromUtf8("./images/logo.png"))
self.setWindowIcon(icon)
# def setVisible(self, visible):
# self.minimizeAction.setEnabled(visible)
# self.maximizeAction.setEnabled(not self.isMaximized())
# self.restoreAction.setEnabled(self.isMaximized() or not visible)
# super(MainWindow, self).setVisible(visible)
def closeEvent(self, event):
if self.trayIcon.isVisible():
# QMessageBox.information(self, "Systray",
# _fromUtf8("The program will keep running in the system tray. To "
# "terminate the program, choose <b>退出</b> in the "
# "context menu of the system tray entry."))
self.hide()
event.ignore()
else:
qApp.quit()
def createActions(self):
self.minimizeAction = QAction(_fromUtf8("最小化"), self,
triggered=self.hide)
# self.maximizeAction = QAction("Ma&ximize", self,
# triggered=self.showMaximized)
self.restoreAction = QAction(_fromUtf8("还原"), self,
triggered=self.showNormal)
self.quitAction = QAction(_fromUtf8("退出"), self,
triggered=qApp.quit)
def createTrayIcon(self):
icon = QIcon(_fromUtf8("./images/logo.png"))
# icon.addPixmap(QPixmap(_fromUtf8(":/images/trash.svg")),
# QIcon.Normal, QtGui.QIcon.Off)
self.trayIconMenu = QMenu(self)
self.trayIconMenu.addAction(self.minimizeAction)
# self.trayIconMenu.addAction(self.maximizeAction)
self.trayIconMenu.addAction(self.restoreAction)
self.trayIconMenu.addSeparator()
self.trayIconMenu.addAction(self.quitAction)
self.trayIcon = QSystemTrayIcon(icon, self)
self.trayIcon.setContextMenu(self.trayIconMenu)
def init_display_properties(self):
self.online_keeper_account_list.setColumnHidden(1, True)
def online_keeper_account_list_reset(self):
self.online_keeper_account_list.reset()
self.online_keeper_account_list.setColumnHidden(1, True)
def init_signals(self):
#backgrounds
QObject.connect(self.online_keeper_dataModel,
SIGNAL(_fromUtf8("dataChanged()")),
self.online_keeper_account_list_reset)
#operations
QObject.connect(self.online_keeper_account_list,
SIGNAL(_fromUtf8("clicked(QModelIndex)")),
self.online_keeper_get_selection)
QObject.connect(self.pushButton_online_keeper_add,
SIGNAL(_fromUtf8("clicked()")),
self.online_keeper_set_account)
QObject.connect(self.pushButton_online_keeper_del,
SIGNAL(_fromUtf8("clicked()")),
self.online_keeper_del_account)
# QObject.connect(self.pushButton_online_keeper_start,
# SIGNAL(_fromUtf8("clicked()")),
# self.online_keeper_start)
# def online_keeper_add_account(self):
# username = self.
def online_keeper_get_selection(self):
indexlist = self.online_keeper_account_list.selectionModel().selectedIndexes()
datamodel = self.online_keeper_account_list.model()
self.online_keeper_username.setText(datamodel.data(indexlist[0]).toString())
self.online_keeper_passwd.setText(datamodel.data(indexlist[1]).toString())
def online_keeper_set_account(self):
indexlist = self.online_keeper_account_list.selectionModel().selectedIndexes()
datamodel = self.online_keeper_account_list.model()
# print indexlist
if len(indexlist) > 0:
datamodel.setData(indexlist[0], self.online_keeper_username.text())
datamodel.setData(indexlist[1], self.online_keeper_passwd.text())
else:
if len(self.online_keeper_username.text()) == 0\
or len(self.online_keeper_passwd.text()) == 0:
return
else:
if not datamodel.insertRows(datamodel.rowCount(), 1):
return
child = datamodel.index(datamodel.rowCount()-1, 0)
datamodel.setData(child, self.online_keeper_username.text(), Qt.EditRole)
child = datamodel.index(datamodel.rowCount()-1, 1)
datamodel.setData(child, self.online_keeper_passwd.text(), Qt.EditRole)
child = datamodel.index(datamodel.rowCount()-1, 2)
datamodel.setData(child, _fromUtf8('##'), Qt.EditRole)
self.online_keeper_username.clear()
self.online_keeper_passwd.clear()
self.write_account_signal.emit()
def online_keeper_del_account(self):
indexlist = self.online_keeper_account_list.selectionModel().selectedIndexes()
model = self.online_keeper_account_list.model()
if len(indexlist) <= 0:
return
else:
model.removeRow(indexlist[0].row())
self.online_keeper_username.clear()
self.online_keeper_passwd.clear()
self.write_account_signal.emit()
def get_refreshtime(self):
return self.spinBox.text()
def get_learnedtime(self):
return self.spinBox_2.text()
def get_lession_num(self):
return self.spinbox_lession_selector.text()
def get_credit_num(self):
return self.spinbox_lession_selector_by_credit.text()
def get_relogin_time(self):
return self.spinBox_relogin_sleep_time.text()
def get_refreshtime_lession_selector(self):
return self.spinBox_lession_selector_sleep_time.text()
def get_checkbox_lession_select_in_refresh_state(self):
return self.checkbox_lession_select_in_refresh.isChecked()
def get_radioButton_lession_select_in_refresh_by_lessionnum_state(self):
return self.radioButton_lession_select_in_refresh_by_lessionnum.isChecked()
def get_radioButton_lession_select_in_refresh_by_credit_state(self):
return self.radioButton_lession_select_in_refresh_by_credit.isChecked()
def online_keeper_start(self):
if self.pushButton_online_keeper_start.state:
self.pushButton_online_keeper_start.state = False
self.pushButton.state = False
self.pushButton_lession_selector_by_credit.state = False
self.online_keeper_account_list.setDisabled(False)
self.online_keeper_passwd.setDisabled(False)
self.online_keeper_username.setDisabled(False)
self.pushButton_online_keeper_add.setDisabled(False)
self.pushButton_online_keeper_cancel.setDisabled(False)
self.pushButton_online_keeper_del.setDisabled(False)
self.spinBox.setDisabled(False)
self.spinBox_2.setDisabled(False)
self.spinbox_lession_selector_by_credit.setDisabled(False)
self.spinbox_lession_selector.setDisabled(False)
self.pushButton.setDisabled(False)
self.pushButton_lession_selector_by_credit.setDisabled(False)
#------------------------------
self.radioButton_lession_select_in_refresh_by_credit.state = False
self.radioButton_lession_select_in_refresh_by_lessionnum.state = False
self.spinBox_lession_selector_sleep_time.state = False
self.radioButton_lession_select_in_refresh_by_credit.setDisabled(False)
self.radioButton_lession_select_in_refresh_by_lessionnum.setDisabled(False)
self.spinBox_lession_selector_sleep_time.setDisabled(False)
self.checkbox_lession_select_in_refresh.state = False
self.checkbox_lession_select_in_refresh.setDisabled(False)
#----------------------------------------------
self.spinBox_relogin_sleep_time.setDisabled(False)
self.spinBox_relogin_sleep_time.state = False
else:
self.pushButton_online_keeper_start.state = True
self.pushButton.state = True
self.pushButton_lession_selector_by_credit.state = True
self.online_keeper_account_list.setDisabled(True)
self.online_keeper_passwd.setDisabled(True)
self.online_keeper_username.setDisabled(True)
self.pushButton_online_keeper_add.setDisabled(True)
self.pushButton_online_keeper_cancel.setDisabled(True)
self.pushButton_online_keeper_del.setDisabled(True)
self.spinBox.setDisabled(True)
self.spinBox_2.setDisabled(True)
self.spinbox_lession_selector_by_credit.setDisabled(True)
self.spinbox_lession_selector.setDisabled(True)
self.pushButton.setDisabled(True)
self.pushButton_lession_selector_by_credit.setDisabled(True)
#------------------------------
self.radioButton_lession_select_in_refresh_by_credit.state = True
self.radioButton_lession_select_in_refresh_by_lessionnum.state = True
self.spinBox_lession_selector_sleep_time.state = True
self.radioButton_lession_select_in_refresh_by_credit.setDisabled(True)
self.radioButton_lession_select_in_refresh_by_lessionnum.setDisabled(True)
self.spinBox_lession_selector_sleep_time.setDisabled(True)
self.checkbox_lession_select_in_refresh.state = True
self.checkbox_lession_select_in_refresh.setDisabled(True)
#----------------------------------------------
self.spinBox_relogin_sleep_time.setDisabled(True)
self.spinBox_relogin_sleep_time.state = True
def lession_selector_start(self):
if self.pushButton_online_keeper_start.state:
self.pushButton_online_keeper_start.state = False
self.pushButton.state = False
self.pushButton_lession_selector_by_credit.state = False
self.online_keeper_account_list.setDisabled(False)
self.online_keeper_passwd.setDisabled(False)
self.online_keeper_username.setDisabled(False)
self.pushButton_online_keeper_add.setDisabled(False)
self.pushButton_online_keeper_cancel.setDisabled(False)
self.pushButton_online_keeper_del.setDisabled(False)
self.spinBox.setDisabled(False)
self.spinBox_2.setDisabled(False)
self.spinbox_lession_selector_by_credit.setDisabled(False)
self.spinbox_lession_selector.setDisabled(False)
self.pushButton.setDisabled(False)
self.pushButton_lession_selector_by_credit.setDisabled(False)
#------------------------------
self.radioButton_lession_select_in_refresh_by_credit.state = False
self.radioButton_lession_select_in_refresh_by_lessionnum.state = False
self.spinBox_lession_selector_sleep_time.state = False
self.radioButton_lession_select_in_refresh_by_credit.setDisabled(False)
self.radioButton_lession_select_in_refresh_by_lessionnum.setDisabled(False)
self.spinBox_lession_selector_sleep_time.setDisabled(False)
self.checkbox_lession_select_in_refresh.state = False
self.checkbox_lession_select_in_refresh.setDisabled(False)
#----------------------------------------------
self.spinBox_relogin_sleep_time.setDisabled(False)
self.spinBox_relogin_sleep_time.state = False
else:
self.pushButton_online_keeper_start.state = True
self.pushButton.state = True
self.pushButton_lession_selector_by_credit.state = True
self.online_keeper_account_list.setDisabled(True)
self.online_keeper_passwd.setDisabled(True)
self.online_keeper_username.setDisabled(True)
self.pushButton_online_keeper_add.setDisabled(True)
self.pushButton_online_keeper_cancel.setDisabled(True)
self.pushButton_online_keeper_del.setDisabled(True)
self.spinBox.setDisabled(True)
self.spinBox_2.setDisabled(True)
self.spinbox_lession_selector_by_credit.setDisabled(True)
self.spinbox_lession_selector.setDisabled(True)
self.pushButton.setDisabled(True)
self.pushButton_lession_selector_by_credit.setDisabled(True)
#------------------------------
self.radioButton_lession_select_in_refresh_by_credit.state = True
self.radioButton_lession_select_in_refresh_by_lessionnum.state = True
self.spinBox_lession_selector_sleep_time.state = True
self.radioButton_lession_select_in_refresh_by_credit.setDisabled(True)
self.radioButton_lession_select_in_refresh_by_lessionnum.setDisabled(True)
self.spinBox_lession_selector_sleep_time.setDisabled(True)
self.checkbox_lession_select_in_refresh.state = True
self.checkbox_lession_select_in_refresh.setDisabled(True)
#----------------------------------------------
self.spinBox_relogin_sleep_time.setDisabled(True)
self.spinBox_relogin_sleep_time.state = True
def lession_selector_by_credit_start(self):
if self.pushButton_online_keeper_start.state:
self.pushButton_online_keeper_start.state = False
self.pushButton.state = False
self.pushButton_lession_selector_by_credit.state = False
self.online_keeper_account_list.setDisabled(False)
self.online_keeper_passwd.setDisabled(False)
self.online_keeper_username.setDisabled(False)
self.pushButton_online_keeper_add.setDisabled(False)
self.pushButton_online_keeper_cancel.setDisabled(False)
self.pushButton_online_keeper_del.setDisabled(False)
self.spinBox.setDisabled(False)
self.spinBox_2.setDisabled(False)
self.spinbox_lession_selector_by_credit.setDisabled(False)
self.spinbox_lession_selector.setDisabled(False)
self.pushButton.setDisabled(False)
self.pushButton_lession_selector_by_credit.setDisabled(False)
#------------------------------
self.radioButton_lession_select_in_refresh_by_credit.state = False
self.radioButton_lession_select_in_refresh_by_lessionnum.state = False
self.spinBox_lession_selector_sleep_time.state = False
self.radioButton_lession_select_in_refresh_by_credit.setDisabled(False)
self.radioButton_lession_select_in_refresh_by_lessionnum.setDisabled(False)
self.spinBox_lession_selector_sleep_time.setDisabled(False)
self.checkbox_lession_select_in_refresh.state = False
self.checkbox_lession_select_in_refresh.setDisabled(False)
#----------------------------------------------
self.spinBox_relogin_sleep_time.setDisabled(False)
self.spinBox_relogin_sleep_time.state = False
else:
self.pushButton_online_keeper_start.state = True
self.pushButton.state = True
self.pushButton_lession_selector_by_credit.state = True
self.online_keeper_account_list.setDisabled(True)
self.online_keeper_passwd.setDisabled(True)
self.online_keeper_username.setDisabled(True)
self.pushButton_online_keeper_add.setDisabled(True)
self.pushButton_online_keeper_cancel.setDisabled(True)
self.pushButton_online_keeper_del.setDisabled(True)
self.spinBox.setDisabled(True)
self.spinBox_2.setDisabled(True)
self.spinbox_lession_selector_by_credit.setDisabled(True)
self.spinbox_lession_selector.setDisabled(True)
self.pushButton.setDisabled(True)
self.pushButton_lession_selector_by_credit.setDisabled(True)
#------------------------------
self.radioButton_lession_select_in_refresh_by_credit.state = True
self.radioButton_lession_select_in_refresh_by_lessionnum.state = True
self.spinBox_lession_selector_sleep_time.state = True
self.radioButton_lession_select_in_refresh_by_credit.setDisabled(True)
self.radioButton_lession_select_in_refresh_by_lessionnum.setDisabled(True)
self.spinBox_lession_selector_sleep_time.setDisabled(True)
self.checkbox_lession_select_in_refresh.state = True
self.checkbox_lession_select_in_refresh.setDisabled(True)
#----------------------------------------------
self.spinBox_relogin_sleep_time.setDisabled(True)
self.spinBox_relogin_sleep_time.state = True
def checkbox_lession_select_in_refresh_onclick(self):
if self.checkbox_lession_select_in_refresh.isChecked():
self.radioButton_lession_select_in_refresh_by_credit.state = False
self.radioButton_lession_select_in_refresh_by_lessionnum.state = False
self.spinBox_lession_selector_sleep_time.state = False
self.radioButton_lession_select_in_refresh_by_credit.setDisabled(False)
self.radioButton_lession_select_in_refresh_by_lessionnum.setDisabled(False)
self.spinBox_lession_selector_sleep_time.setDisabled(False)
else:
self.radioButton_lession_select_in_refresh_by_credit.state = True
self.radioButton_lession_select_in_refresh_by_lessionnum.state = True
self.spinBox_lession_selector_sleep_time.state = True
self.radioButton_lession_select_in_refresh_by_credit.setDisabled(True)
self.radioButton_lession_select_in_refresh_by_lessionnum.setDisabled(True)
self.spinBox_lession_selector_sleep_time.setDisabled(True)
# print self.checkbox_lession_select_in_refresh.isChecked()
#online_keeper_account_list
def update_online_keeper_account_list(self, tabledata):
header = [_fromUtf8('用户名'), '', _fromUtf8('运行状态')]
self.online_keeper_dataModel = OnlineKeeper_AccountListModel(tabledata, header)
self.online_keeper_account_list.setModel(self.online_keeper_dataModel)
class OnlineKeeper_AccountListModel(QAbstractTableModel):
def __init__(self, datain, headerdata, parent=None, *args):
""" datain: a list of lists
headerdata: a list of strings
"""
super(OnlineKeeper_AccountListModel, self).__init__(parent)
self.arraydata = datain
self.headerdata = headerdata
def rowCount(self, parent=QModelIndex()):
return len(self.arraydata)
def columnCount(self, parent=QModelIndex()):
try:
return len(self.arraydata[0])
except:
return 0
def data(self, index, role=Qt.DisplayRole):
if not index.isValid():
return QVariant()
elif role != Qt.DisplayRole:
return QVariant()
return QVariant(self.arraydata[index.row()][index.column()])
def headerData(self, col, orientation, role):
if orientation == Qt.Horizontal and role == Qt.DisplayRole:
return QVariant(self.headerdata[col])
return QVariant()
def setData(self, index, value, role=Qt.EditRole):
try:
self.arraydata[index.row()][index.column()] = value
# print self.arraydata
self.emit(SIGNAL(_fromUtf8("dataChanged()")))
return True
except:
print "Model.setData == False"
return False
def insertRows(self, position, rows, parent=QModelIndex()):
self.beginInsertRows(parent, position, position + rows - 1)
self.arraydata.append([_fromUtf8(''), _fromUtf8(''), False])
self.endInsertRows()
return True
def removeRows(self, position, rows, parent=QModelIndex()):
self.beginRemoveRows(parent, position, position + rows - 1)
del(self.arraydata[position])
self.endRemoveRows()
return True
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_()) | Python |
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'MainDialog.ui'
#
# Created: Mon Feb 17 23:47:19 2014
# by: PyQt4 UI code generator 4.10.1
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig)
class Ui_MainDialog(object):
def setupUi(self, MainDialog):
MainDialog.setObjectName(_fromUtf8("MainDialog"))
MainDialog.setEnabled(True)
MainDialog.resize(400, 546)
MainDialog.setMinimumSize(QtCore.QSize(400, 546))
MainDialog.setMaximumSize(QtCore.QSize(400, 546))
MainDialog.setLocale(QtCore.QLocale(QtCore.QLocale.Chinese, QtCore.QLocale.China))
self.tabWidget = QtGui.QTabWidget(MainDialog)
self.tabWidget.setGeometry(QtCore.QRect(10, 20, 381, 511))
font = QtGui.QFont()
font.setPointSize(8)
self.tabWidget.setFont(font)
self.tabWidget.setTabsClosable(False)
self.tabWidget.setObjectName(_fromUtf8("tabWidget"))
self.tab_online_keeper = QtGui.QWidget()
self.tab_online_keeper.setObjectName(_fromUtf8("tab_online_keeper"))
self.groupBox = QtGui.QGroupBox(self.tab_online_keeper)
self.groupBox.setEnabled(True)
self.groupBox.setGeometry(QtCore.QRect(10, 10, 351, 271))
self.groupBox.setFlat(False)
self.groupBox.setCheckable(False)
self.groupBox.setObjectName(_fromUtf8("groupBox"))
self.online_keeper_username = QtGui.QLineEdit(self.groupBox)
self.online_keeper_username.setGeometry(QtCore.QRect(50, 210, 113, 20))
self.online_keeper_username.setObjectName(_fromUtf8("online_keeper_username"))
self.online_keeper_passwd = QtGui.QLineEdit(self.groupBox)
self.online_keeper_passwd.setEnabled(True)
self.online_keeper_passwd.setGeometry(QtCore.QRect(50, 240, 113, 20))
self.online_keeper_passwd.setFocusPolicy(QtCore.Qt.WheelFocus)
self.online_keeper_passwd.setContextMenuPolicy(QtCore.Qt.ActionsContextMenu)
self.online_keeper_passwd.setInputMethodHints(QtCore.Qt.ImhHiddenText|QtCore.Qt.ImhNoAutoUppercase|QtCore.Qt.ImhSensitiveData)
self.online_keeper_passwd.setEchoMode(QtGui.QLineEdit.Password)
self.online_keeper_passwd.setObjectName(_fromUtf8("online_keeper_passwd"))
self.label = QtGui.QLabel(self.groupBox)
self.label.setGeometry(QtCore.QRect(10, 213, 46, 13))
self.label.setObjectName(_fromUtf8("label"))
self.label_2 = QtGui.QLabel(self.groupBox)
self.label_2.setGeometry(QtCore.QRect(10, 244, 46, 13))
self.label_2.setObjectName(_fromUtf8("label_2"))
self.pushButton_online_keeper_add = QtGui.QPushButton(self.groupBox)
self.pushButton_online_keeper_add.setGeometry(QtCore.QRect(180, 208, 151, 23))
self.pushButton_online_keeper_add.setObjectName(_fromUtf8("pushButton_online_keeper_add"))
self.pushButton_online_keeper_cancel = QtGui.QPushButton(self.groupBox)
self.pushButton_online_keeper_cancel.setGeometry(QtCore.QRect(180, 239, 75, 23))
self.pushButton_online_keeper_cancel.setObjectName(_fromUtf8("pushButton_online_keeper_cancel"))
self.pushButton_online_keeper_del = QtGui.QPushButton(self.groupBox)
self.pushButton_online_keeper_del.setGeometry(QtCore.QRect(260, 239, 75, 23))
self.pushButton_online_keeper_del.setObjectName(_fromUtf8("pushButton_online_keeper_del"))
self.online_keeper_account_list = QtGui.QTreeView(self.groupBox)
self.online_keeper_account_list.setGeometry(QtCore.QRect(10, 20, 331, 181))
self.online_keeper_account_list.setItemsExpandable(False)
self.online_keeper_account_list.setObjectName(_fromUtf8("online_keeper_account_list"))
self.pushButton_online_keeper_start = QtGui.QPushButton(self.tab_online_keeper)
self.pushButton_online_keeper_start.setGeometry(QtCore.QRect(10, 450, 351, 23))
self.pushButton_online_keeper_start.setObjectName(_fromUtf8("pushButton_online_keeper_start"))
self.label_3 = QtGui.QLabel(self.tab_online_keeper)
self.label_3.setGeometry(QtCore.QRect(186, 325, 61, 16))
self.label_3.setObjectName(_fromUtf8("label_3"))
self.spinBox = QtGui.QSpinBox(self.tab_online_keeper)
self.spinBox.setGeometry(QtCore.QRect(260, 320, 81, 22))
self.spinBox.setAcceptDrops(False)
self.spinBox.setMinimum(10)
self.spinBox.setMaximum(120)
self.spinBox.setProperty("value", 60)
self.spinBox.setObjectName(_fromUtf8("spinBox"))
self.label_4 = QtGui.QLabel(self.tab_online_keeper)
self.label_4.setGeometry(QtCore.QRect(185, 293, 81, 16))
self.label_4.setObjectName(_fromUtf8("label_4"))
self.spinBox_2 = QtGui.QSpinBox(self.tab_online_keeper)
self.spinBox_2.setGeometry(QtCore.QRect(260, 290, 81, 22))
self.spinBox_2.setAcceptDrops(False)
self.spinBox_2.setMinimum(60)
self.spinBox_2.setMaximum(3600000)
self.spinBox_2.setProperty("value", 120)
self.spinBox_2.setObjectName(_fromUtf8("spinBox_2"))
self.pushButton = QtGui.QPushButton(self.tab_online_keeper)
self.pushButton.setGeometry(QtCore.QRect(120, 319, 41, 23))
self.pushButton.setObjectName(_fromUtf8("pushButton"))
self.spinbox_lession_selector = QtGui.QSpinBox(self.tab_online_keeper)
self.spinbox_lession_selector.setGeometry(QtCore.QRect(71, 319, 41, 22))
self.spinbox_lession_selector.setMinimum(2)
self.spinbox_lession_selector.setMaximum(30)
self.spinbox_lession_selector.setObjectName(_fromUtf8("spinbox_lession_selector"))
self.label_5 = QtGui.QLabel(self.tab_online_keeper)
self.label_5.setGeometry(QtCore.QRect(20, 315, 51, 31))
self.label_5.setObjectName(_fromUtf8("label_5"))
self.label_6 = QtGui.QLabel(self.tab_online_keeper)
self.label_6.setGeometry(QtCore.QRect(20, 285, 51, 31))
self.label_6.setObjectName(_fromUtf8("label_6"))
self.spinbox_lession_selector_by_credit = QtGui.QSpinBox(self.tab_online_keeper)
self.spinbox_lession_selector_by_credit.setGeometry(QtCore.QRect(71, 289, 41, 22))
self.spinbox_lession_selector_by_credit.setMinimum(2)
self.spinbox_lession_selector_by_credit.setMaximum(30)
self.spinbox_lession_selector_by_credit.setObjectName(_fromUtf8("spinbox_lession_selector_by_credit"))
self.pushButton_lession_selector_by_credit = QtGui.QPushButton(self.tab_online_keeper)
self.pushButton_lession_selector_by_credit.setGeometry(QtCore.QRect(120, 289, 41, 23))
self.pushButton_lession_selector_by_credit.setObjectName(_fromUtf8("pushButton_lession_selector_by_credit"))
self.groupBox_2 = QtGui.QGroupBox(self.tab_online_keeper)
self.groupBox_2.setGeometry(QtCore.QRect(10, 380, 351, 61))
self.groupBox_2.setObjectName(_fromUtf8("groupBox_2"))
self.checkbox_lession_select_in_refresh = QtGui.QCheckBox(self.groupBox_2)
self.checkbox_lession_select_in_refresh.setGeometry(QtCore.QRect(13, 14, 131, 16))
self.checkbox_lession_select_in_refresh.setChecked(True)
self.checkbox_lession_select_in_refresh.setObjectName(_fromUtf8("checkbox_lession_select_in_refresh"))
self.radioButton_lession_select_in_refresh_by_credit = QtGui.QRadioButton(self.groupBox_2)
self.radioButton_lession_select_in_refresh_by_credit.setGeometry(QtCore.QRect(10, 40, 101, 16))
self.radioButton_lession_select_in_refresh_by_credit.setChecked(True)
self.radioButton_lession_select_in_refresh_by_credit.setObjectName(_fromUtf8("radioButton_lession_select_in_refresh_by_credit"))
self.radioButton_lession_select_in_refresh_by_lessionnum = QtGui.QRadioButton(self.groupBox_2)
self.radioButton_lession_select_in_refresh_by_lessionnum.setGeometry(QtCore.QRect(190, 40, 111, 16))
self.radioButton_lession_select_in_refresh_by_lessionnum.setChecked(False)
self.radioButton_lession_select_in_refresh_by_lessionnum.setObjectName(_fromUtf8("radioButton_lession_select_in_refresh_by_lessionnum"))
self.spinBox_lession_selector_sleep_time = QtGui.QSpinBox(self.groupBox_2)
self.spinBox_lession_selector_sleep_time.setGeometry(QtCore.QRect(277, 10, 51, 22))
self.spinBox_lession_selector_sleep_time.setMinimum(1)
self.spinBox_lession_selector_sleep_time.setMaximum(48)
self.spinBox_lession_selector_sleep_time.setProperty("value", 2)
self.spinBox_lession_selector_sleep_time.setObjectName(_fromUtf8("spinBox_lession_selector_sleep_time"))
self.label_7 = QtGui.QLabel(self.groupBox_2)
self.label_7.setGeometry(QtCore.QRect(170, 11, 101, 20))
self.label_7.setObjectName(_fromUtf8("label_7"))
self.label_8 = QtGui.QLabel(self.tab_online_keeper)
self.label_8.setGeometry(QtCore.QRect(186, 352, 51, 20))
self.label_8.setObjectName(_fromUtf8("label_8"))
self.spinBox_relogin_sleep_time = QtGui.QSpinBox(self.tab_online_keeper)
self.spinBox_relogin_sleep_time.setGeometry(QtCore.QRect(260, 350, 81, 22))
self.spinBox_relogin_sleep_time.setMinimum(1800)
self.spinBox_relogin_sleep_time.setMaximum(3600)
self.spinBox_relogin_sleep_time.setSingleStep(60)
self.spinBox_relogin_sleep_time.setProperty("value", 1800)
self.spinBox_relogin_sleep_time.setObjectName(_fromUtf8("spinBox_relogin_sleep_time"))
self.tabWidget.addTab(self.tab_online_keeper, _fromUtf8(""))
self.tab = QtGui.QWidget()
self.tab.setObjectName(_fromUtf8("tab"))
self.textEdit = QtGui.QTextEdit(self.tab)
self.textEdit.setGeometry(QtCore.QRect(10, 10, 351, 431))
self.textEdit.setObjectName(_fromUtf8("textEdit"))
self.tabWidget.addTab(self.tab, _fromUtf8(""))
self.retranslateUi(MainDialog)
self.tabWidget.setCurrentIndex(0)
QtCore.QObject.connect(self.pushButton_online_keeper_cancel, QtCore.SIGNAL(_fromUtf8("clicked()")), self.online_keeper_passwd.clear)
QtCore.QObject.connect(self.pushButton_online_keeper_cancel, QtCore.SIGNAL(_fromUtf8("clicked()")), self.online_keeper_username.clear)
QtCore.QObject.connect(self.pushButton_online_keeper_cancel, QtCore.SIGNAL(_fromUtf8("clicked()")), self.online_keeper_account_list.clearSelection)
QtCore.QMetaObject.connectSlotsByName(MainDialog)
def retranslateUi(self, MainDialog):
MainDialog.setWindowTitle(_translate("MainDialog", "21Th-Cheater-Pro", None))
self.groupBox.setTitle(_translate("MainDialog", "账号", None))
self.label.setText(_translate("MainDialog", "用户名", None))
self.label_2.setText(_translate("MainDialog", "密码", None))
self.pushButton_online_keeper_add.setText(_translate("MainDialog", "确认/添加", None))
self.pushButton_online_keeper_cancel.setText(_translate("MainDialog", "清除", None))
self.pushButton_online_keeper_del.setText(_translate("MainDialog", "删除", None))
self.pushButton_online_keeper_start.setText(_translate("MainDialog", "开始/停止", None))
self.label_3.setText(_translate("MainDialog", "刷新间隔(秒)", None))
self.label_4.setText(_translate("MainDialog", "单次刷学时(秒)", None))
self.pushButton.setText(_translate("MainDialog", "选课", None))
self.label_5.setText(_translate("MainDialog", "新增门数", None))
self.label_6.setText(_translate("MainDialog", "新增学分", None))
self.pushButton_lession_selector_by_credit.setText(_translate("MainDialog", "选课", None))
self.groupBox_2.setTitle(_translate("MainDialog", "自动模式", None))
self.checkbox_lession_select_in_refresh.setText(_translate("MainDialog", "刷新的同时自动选课", None))
self.radioButton_lession_select_in_refresh_by_credit.setText(_translate("MainDialog", "按学分自动选课", None))
self.radioButton_lession_select_in_refresh_by_lessionnum.setText(_translate("MainDialog", "按课程数自动选课", None))
self.label_7.setText(_translate("MainDialog", "自动选课间隔(小时)", None))
self.label_8.setToolTip(_translate("MainDialog", "设置自动动重登录的间隔时间", None))
self.label_8.setText(_translate("MainDialog", "重登录(秒)", None))
self.spinBox_relogin_sleep_time.setToolTip(_translate("MainDialog", "设置自动动重登录的间隔时间", None))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_online_keeper), _translate("MainDialog", "刷在线", None))
self.textEdit.setHtml(_translate("MainDialog", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:\'MS UI Gothic\'; font-size:8pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-weight:600;\">小工具</span></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'MS Shell Dlg 2\'; font-weight:600;\"><br /></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\';\">制作:</span><a href=\"mailto:araya.akashic@gmail.com\"><span style=\" font-family:\'MS Shell Dlg 2\'; text-decoration: underline; color:#0000ff;\">araya.akashic@gmail.com</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'MS Shell Dlg 2\';\"><br /></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\';\">项目地址:</span><a href=\"http://stage1st-cheater.googlecode.com\"><span style=\" font-family:\'MS Shell Dlg 2\'; text-decoration: underline; color:#0000ff;\">http://stage1st-cheater.googlecode.com</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'MS Shell Dlg 2\';\"><br /></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\';\">MIT LICENSE</span></p>\n"
"<hr />\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'monospace\'; color:#494949;\">Copyright (c) 2010-2011 araya.akashic@gmail.com</span></p>\n"
"<p style=\" margin-top:8px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'monospace\'; color:#494949;\">Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</span></p>\n"
"<p style=\" margin-top:8px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'monospace\'; color:#494949;\">The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</span></p>\n"
"<p style=\" margin-top:8px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'monospace\'; color:#494949;\">THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</span></p>\n"
"<hr />\n"
"<p style=\" margin-top:8px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\';\">更多信息请移步:</span><a href=\"http://thegaran.info/blog\"><span style=\" font-family:\'MS Shell Dlg 2\'; text-decoration: underline; color:#0000ff;\">http://thegaran.info/blog</span></a></p></body></html>", None))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainDialog", "程序信息", None))
| Python |
#-*- coding: utf-8 -*-
#! /usr/bin/python
#######################################################################################
# #
# File: online_keeper.py #
# Part of 21tb_cheater #
# Home: http://pcbeta-cheater.googlecode.com #
# #
# The MIT License #
# #
# Copyright (c) 2010-2011 <araya.akashic@gmail.com> #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to deal #
# in the Software without restriction, including without limitation the rights #
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
# copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN #
# THE SOFTWARE. #
# #
#######################################################################################
# This code is to automatically do daily task for pcbeta bbs
# Author: elsesky
import time
import urllib
import urllib2
import socket
from browser_bogus import Browser
account_list = {"":""}
cycle = 1
delay = 3610 * 22
#do not change below this if no need
user_agent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.772.0 Safari/535.1"
login_page_init = "http://nari.21tb.com/login/login.init.do?returnUrl=http%3A%2F%2Fnari.21tb.com%2Felos%2Fhtml%2Findex.init.do&elnScreen=1920*1200elnScreen"
login_page = "http://nari.21tb.com/login/login.checkLogin.do";
login_page2 = "http://nari.21tb.com/login/login.login.do";
logout_page = "http://nari.21tb.com/login/login.logout.do";
task_page = "http://i.pcbeta.com/home.php?mod=task";
task_doing_page = "http://i.pcbeta.com/home.php?mod=task&item=doing";
bangui_leaarn_pg1 = "http://bbs.pcbeta.com/viewthread-951045-7575-1.html";
post_bangui_learn_pg = "http://bbs.pcbeta.com/forum.php?mod=post&action=reply&extra=page%3D1&replysubmit=yes&infloat=yes&handlekey=fastpost&inajax=1";
bangui_ID = "75"
task_info_detail_pre = "http://i.pcbeta.com/home.php?mod=task&do=view&id="
bangui_learn_task_detail = "http://i.pcbeta.com/home.php?mod=task&do=view&id=" + bangui_ID
bangui_learn_need = False
defaulttimeout = 3
socket.setdefaulttimeout(defaulttimeout)
class ExamNotAvailable(Exception):
def __init__(self, time):
self.value = time
def __str__(self):
return repr(self.value)
class LoginFailed(Exception):
def __init__(self, str):
self.value = str
def __str__(self):
return repr(self.value)
def do_bangui_learn_post(user):
#DO POST Thread
url = bangui_leaarn_pg1;
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
clen = 0
i= 0
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
bangui_leaarn_pg1_content = content;
vtformhash = bangui_leaarn_pg1_content.split("formhash\" value=\"")[1].split("\"")[0]
#获取当前帖子提交的fid以及tid
fid_tid = "&fid=" + bangui_leaarn_pg1_content.split('post&action=reply&fid=') [1].split("'")[0];
# print fid_tid;
# print vtformhash;exit;
# print bangui_leaarn_pg1_content;
#init content of thread post action
threaddata = {
"formhash":vtformhash,
"message":"每日学习新版规".decode('utf-8').encode('gbk'),
"posttime":str(time.time()).split(".")[0],#提取当前时间
"subject":"",
"usesig":"1"
}
en_logindata = urllib.urlencode(threaddata)
#init thread post url
url = post_bangui_learn_pg + fid_tid;
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
#do thread post
clen = 0
i= 0
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
#check post
if content.find("回复发布成功".decode("utf-8").encode("gbk")) < 0:
print "发帖失败".decode('utf-8').encode('gbk')
return 1;
else:
print "发帖成功".decode('utf-8').encode('gbk')
#do access the task url for final accept completed work
request = urllib2.Request(bangui_learn_task_detail)
request.add_header("User-Agent", user.user_agent)
clen = 0
i= 0
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
return 0;
return 1
def do_get_all_new_tasks(user):
#get task page
print "检查是否存在新任务".decode("utf-8").encode("gbk")
url = task_page;
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
clen = 0
i= 0
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
task_content = content
tasks = task_content.split("http://static.pb.pbcdn.com/static/image/task/apply.gif");
#get all task url
tasks.pop(len(tasks) - 1);
tsklen = len(tasks);
# i = 0
for tsk in tasks:
#get task url ;be careful with & code
# tasks[i] = tsk.split("\"><img src=")[-2].split("<a href=\"")[-1].replace("&" , "&");
# request = urllib2.Request(tasks[i])
#set flag of checking if needed to do bangui thread post
if tsk.split("\"><img src=")[-2].split("<a href=\"")[-1].replace("&" , "&").split("apply&id=")[-1] == bangui_ID:
bangui_learn_need = True
print '检测到版规学习任务,随后将在版规学习帖中发帖以完成任务'.decode('utf-8').encode('gbk')
request = urllib2.Request(tsk.split("\"><img src=")[-2].split("<a href=\"")[-1].replace("&" , "&"))
request.add_header("User-Agent", user.user_agent)
#apply all tasks
clen = 0
i= 0
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
# print result.read();
# i += 1
if tsklen > 0:
print "所有任务申请完毕".decode("utf-8").encode("gbk");
#check bangui post bool
if bangui_learn_need:
do_bangui_learn_post(user);
return 0
else:
print "无新任务".decode("utf-8").encode("gbk")
return 1
#method login
def do_login(user):
print "正在登录".decode("utf-8").encode('gbk')
# user = browser_bogus.Browser(u, p, get_random_user_agent())
url = login_page_init
#First access,get COOKIE and store
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
# result = user.urlOpener.open(request)
# content = result.read();
clen = 0
i = 1
while clen < 20:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
# content = result.read();
#init content of post action
logindata = {
"corpCode":"sgepri.com",
"referer":login_page_init,
"loginName":"0",
"loginName":user.username,
"password":user.password,
"submit.x":"52",
"submit.y":"8"
}
en_logindata = urllib.urlencode(logindata)
#init login post url login_page1只用来确认用户是否在其它地方登录过,无视即可
url = login_page2;
request = urllib2.Request(url, en_logindata)
request.add_header("User-Agent", user.user_agent)
#do login
clen = 0
i = 1
while clen < 10:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
#check login
if content.find("南瑞学堂".decode("utf-8").encode("gbk")) < 0:
print "用户".decode('utf-8').encode('gbk') + user.username + "已成功登录".decode('utf-8').encode('gbk')
return user;
else:
print "登录失败,请重试".decode('utf-8').encode('gbk')
raise LoginFailed(user.username)
#method completed task
def do_task_doing_check(user):
#get task doing page
print "检查是否存在已经完成的任务".decode("utf-8").encode("gbk")
url = task_doing_page;
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
clen = 0
i= 0
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
task_doing_content = content;
tasksdone = task_doing_content.split("http://static.pb.pbcdn.com/static/image/task/rewardless.gif");
tasksdone.pop(len(tasksdone) - 1);
tasksdonelen = len(tasksdone);
request.add_header("User-Agent", user.user_agent)
print '刷每个已经接受的任务,确保所有已经完成的任务能够正常显示为已经完成'.decode('utf-8').encode('gbk')
for tskd in tasksdone:
request = urllib2.Request(task_info_detail_pre + tskd.split("\"><img src=")[-2].split("<a href=\"")[-1].replace("&" , "&").split('id=')[1])
request.add_header("User-Agent", user.user_agent)
clen = 0
i= 0
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
#重新刷新任务页面查看已经完成的任务
url = task_doing_page;
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
clen = 0
i= 0
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
task_doing_content = content;
tasksdone = task_doing_content.split("http://static.pb.pbcdn.com/static/image/task/reward.gif");
#get all task url
tasksdone.pop(len(tasksdone) - 1);
tasksdonelen = len(tasksdone);
# i = 0
for tskd in tasksdone:
#get taskdone url ;be careful with & code
# tasksdone[i] = tskd.split("\"><img src=")[-2].split("<a href=\"")[-1].replace("&" , "&");
# print tasksdone[i]
# continue;
# request = urllib2.Request(tasks[i])
request = urllib2.Request(tskd.split("\"><img src=")[-2].split("<a href=\"")[-1].replace("&" , "&"))
request.add_header("User-Agent", user.user_agent)
#apply all have been done tasks
clen = 0
i= 0
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
# print result.read();
# i += 1
if tasksdonelen > 0:
print "已完成的任务刷新完毕".decode("utf-8").encode("gbk");
else:
print "无需要刷新的已完成任务".decode("utf-8").encode("gbk");
# modify user refresh url
def cheat(user):
#url = siteurl + index_page
url = siteurl + cat_page
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
result = user.urlOpener.open(request)
def time2point(user):
url = siteurl + t2p_page
#get current points (cards)
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
result = user.urlOpener.open(request)
lines = result.readlines()
points = 0
for line in lines:
if line.find("colspan=\"3\"") > 0:
points = int(line.split(" ")[1].split(">")[-1])
# print points
#acquire points
if points >= 100:
url = siteurl + t2p_request_page
request = urllib2.Request(url, t2p_request)
request.add_header("User-Agent", user.user_agent)
result = user.urlOpener.open(request)
print time.strftime("%Y-%m-%d %H:%M:&S"), "%d cards Get!" % points
return points
def logout(user):
# url = task_page
# request = urllib2.Request(url)
# request.add_header("User-Agent", user.user_agent)
# result = user.urlOpener.open(request)
# content = result.read();
# print content;
# vformhash = content.split("formhash\" value=\"")[1].split("\"")[0]
# print vformhash;
# url = logout_page + vformhash
url = logout_page
request = urllib2.Request(url)
request.add_header("User-Agent", user.user_agent)
clen = 0
i = 1
while clen < 100:
try:
result = user.urlOpener.open(request)
content = result.read();
clen = len(content)
if i > 0:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试成功'.decode('utf-8').encode('gbk')
except urllib2.URLError:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
except socket.timeout:
print '第'.decode('utf-8').encode('gbk') + str(i+1) +'次重试失败'.decode('utf-8').encode('gbk')
i += 1
print "Online Keeper Logout " + user.username
if __name__ == "__main__":
while cycle:
print "------------------------------------------"
print time.strftime("%a, %b %d %Y %H:%M:%S", time.localtime()) + "-----------------"
user = Browser('55109', "dengbo801018", user_agent)
do_login(user)
logout(user)
if cycle > 1:
time.sleep(delay)
cycle = cycle - 1 | Python |
#This contains global definition of Browser class and other useful thing
#######################################################################################
# #
# File: browser_bogus.py #
# Home: http://pcbeta-cheater.googlecode.com #
# #
# The MIT License #
# #
# Copyright (c) 2010-2011 <araya.akashic@gmail.com> #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to deal #
# in the Software without restriction, including without limitation the rights #
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
# copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN #
# THE SOFTWARE. #
# #
#######################################################################################
#Author: Araya
import urllib2
import cookielib
class Browser():
def __init__(self, user, passwd, user_agent="Python-urllib/2.7"):
self.username = user
self.password = passwd
self.user_agent = user_agent
self.cookie = cookielib.CookieJar()
self.urlOpener = urllib2.build_opener(urllib2.HTTPCookieProcessor(self.cookie))
self.logout_URI = ""
self.verifyhash = "" | Python |
#! /usr/bin/python
# -*- coding: utf-8 -*-
from distutils.core import setup
import py2exe
import main
from glob import glob
data_files = [("Microsoft.VC100.CRT",
glob(r'E:\important\应用软件\开发工具\python\开发代码\Microsoft.VC100.CRT\*.*'))]
setup(
options = {"py2exe": {"optimize": 2,
"compressed": 1,
# "dll_excludes": ["MSVCP90.dll",],
"bundle_files": 1,
"includes": ["sip"]} },
name = "stage1st_cheater",
version = main.VERSION,
description = "Stage1st BBS Cheating Tools",
zipfile = None,
# data_files=data_files,
windows=[{'script': 'main.py',
"icon_resources": [(1, "./images/logo.ico")]}],
data_files = [('images', ['./images/logo.png'])])
| Python |
#!/usr/bin/python
from socket import *
import struct,os,time,sys
from ntp_server_lib import get_random_ntp_server
print get_random_ntp_server()
# Script to set Linux hardware clock (/usr/sbin/hwclock) from an NTP
# time server. Run as "setclock.py" to simply print the time from
# the NTP server. Run as "setclock.py --set" to set the Linux
# hardware clock (as the super user, of course).
# Based on Simon Foster's simple SNTP client from ASPN Python cookbook.
# Adapted by Paul Rubin; this script lives at:
# http://www.nightsong.com/phr/python/setclock.py
time_server = (get_random_ntp_server(), 123)
# time.apple.com is a stratum 2 time server. (123 is the SNTP port number).
# More servers info can be found at
#
# http://www.eecis.udel.edu/~mills/ntp/servers.htm
#
# Note it's considered antisocial to use a stratum 1 server (like NIST)
# for purposes like this which don't need extreme accuracy (i.e. syncing
# your own big NTP network). See www.ntp.org for more info.
#
# You could also use time.windows.com (Microsoft server) which syncs
# all Windows XP machines everywhere, so it can presumably handle lots
# of clients.
# number of seconds between NTP epoch (1900) and Unix epoch (1970).
TIME1970 = 2208988800L # Thanks to F.Lundh
def get_ntp_time():
client = socket( AF_INET, SOCK_DGRAM )
data = '\x1b' + 47 * '\0'
client.sendto(data, time_server)
data, address = client.recvfrom( 1024 )
if data:
print 'Response received from', address,'\n'
t = struct.unpack( '!12I', data )[10]
if t == 0:
return -1
return t - TIME1970
else:
return -1
| Python |
# -*- coding: utf-8 -*-
#! /usr/bin/python
#######################################################################################
# #
# File: main.py #
# Part of 21th-cheater #
# Home: http://21th-cheater.googlecode.com #
# #
# The MIT License #
# #
# Copyright (c) 2010-2011 <elsesky@gmail.com> #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to deal #
# in the Software without restriction, including without limitation the rights #
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
# copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN #
# THE SOFTWARE. #
# #
#######################################################################################
'''
Created on May 9, 2013
@author: elsesky
@modified by: elsesky
'''
import time, datetime, sys
import random
import sqlite3
import urllib2
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from ui.Core import *
import browser_bogus
import online_keeper
from user_agent_lib import get_random_user_agent
from ntpsocket import get_ntp_time
VERSION = "1.0"
online_keeper_threads = []
online_keeper_accounts = []
app = QApplication(sys.argv)
window = MainWindow()
online_keeper_update_timer = QTimer()
try:
_fromUtf8 = QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class OnlineKeeperWorker(QThread):
totaldone = 0
def __init__(self, username, passwd, itemdata, parent=None):
super(OnlineKeeperWorker, self).__init__(parent)
self.browser = browser_bogus.Browser(username, passwd, get_random_user_agent())
# self.setDaemon(True)
# self.stopevent = threading.Event()
self.itemdata = itemdata
def login(self):
# print "UA: ", self.browser.user_agent
try:
self.itemdata[2] = _fromUtf8("正在登录")
self.sleep(1)
online_keeper.do_login(self.browser)
self.itemdata[2] = _fromUtf8("已登录")
self.sleep(1)
except online_keeper.LoginFailed:
self.itemdata[2] = _fromUtf8("登录失败")
except urllib2.URLError:
self.itemdata[2] = _fromUtf8("网络连接不正常")
except urllib2.HTTPError, err:
self.itemdata[2] = _fromUtf8("请求被拒绝 %d" % err.code)
except:
self.itemdata[2] = _fromUtf8("未知异常")
def refresh(self):
print "doing"
while True:
try:
self.itemdata[2] = _fromUtf8("日常任务执行中")
self.sleep(1)
online_keeper.do_get_all_new_tasks(self.browser)
self.itemdata[2] = _fromUtf8("检查需要提交完成的任务")
online_keeper.do_task_doing_check(self.browser)
self.sleep(1)
except urllib2.URLError:
self.itemdata[2] = _fromUtf8("网络连接不正常")
except urllib2.HTTPError, err:
self.itemdata[2] = _fromUtf8("请求被拒绝 %d" % err.code)
except:
self.itemdata[2] = _fromUtf8("未知异常")
# int_t = random.randint(0, 30) + 15
#define daly seconds
#定义获取NTP时间,如果NTP时间获取失败,获取本地时间
localtime_p = get_ntp_time()
if localtime_p == -1:
localtime_p = time.mktime(time.localtime())
today = datetime.date.today()
#计算需要休眠的时差
leasttime = time.mktime(today.timetuple()) + 86600 - time.mktime(time.localtime())
# int_t = 86520
self.totaldone += 1
#无限循环自动休眠记时刷新
i = int(leasttime)
while True:
self.itemdata[2] = _fromUtf8("完毕.将在" + str(i) +"秒后刷新,共执行" + str(self.totaldone) + "次")
i -= 1
if i < 1:
break
self.sleep(1)
def logout(self):
self.itemdata[2] = _fromUtf8("正在注销")
online_keeper.logout(self.browser)
self.itemdata[2] = _fromUtf8("已注销")
def run(self):
while True:
self.login()
self.sleep(300)
self.logout()
self.login()
#self.refresh()
#enter event loop
self.exec_()
def quit(self):
self.logout()
self.itemdata[2] = _fromUtf8("已停止")
super(OnlineKeeperWorker, self).quit()
def read_account(filename="accounts.db"):
# file = open(filename, "r")
# lines = file.readlines()
# file.close()
#
# for line in lines:
# if line[0] == "#":
# continue
# if line[0] == "o":
# account_data = line.strip().split(",")[1:]
# online_keeper_accounts.append([QString.fromUtf8(account_data[0]),
# QString.fromUtf8(account_data[1]),
# QString.fromUtf8('##')])
# if line[0] == "d":
# account_data = line.strip().split(",")[1:]
# daily_job_accounts.append([QString.fromUtf8(account_data[0]),
# QString.fromUtf8(account_data[1]),
# QString.fromUtf8('##'),
# QString.fromUtf8('##')])
conn = sqlite3.connect(filename)
c = conn.cursor()
c.execute("""SELECT * FROM online_keeper_accounts""")
items = c.fetchall()
for item in items:
online_keeper_accounts.append([QString(item[0]),
QString(item[1]),
QString.fromUtf8('##')])
conn.close()
def write_account(filename="accounts.db"):
conn = sqlite3.connect(filename)
c = conn.cursor()
c.execute("DROP TABLE online_keeper_accounts")
c.execute("""CREATE TABLE online_keeper_accounts
(username TEXT PRIMARY KEY, passwd TEXT)""")
for item in online_keeper_accounts:
c.execute("INSERT INTO online_keeper_accounts VALUES (?,?)",
(item[0].__str__(), item[1].__str__()))
conn.commit()
conn.close()
# file = open(filename, "w")
# for item in online_keeper_accounts:
# if QString.toUtf8(item[0]) == "##":
# continue
# file.write("o," + QString.toUtf8(item[0]) + "," + QString.toUtf8(item[1]) + "\n")
# for item in daily_job_accounts:
# if QString.toUtf8(item[0]) == "##":
# continue
# file.write("d," + QString.toUtf8(item[0]) + "," + QString.toUtf8(item[1]) + "\n")
#
# file.close()
# print daily_job_threads
# print online_keeper_threads
def start_online_keeper():
window.online_keeper_start()
print window.pushButton_online_keeper_start.state
if window.pushButton_online_keeper_start.state:
for item in online_keeper_accounts:
worker = OnlineKeeperWorker(QString.toUtf8(item[0]),
QString.toUtf8(item[1]), item)
online_keeper_threads.append(worker)
for worker in online_keeper_threads:
worker.start()
print online_keeper_threads
online_keeper_update_timer.start(1000)
else:
print "stop workers"
for worker in online_keeper_threads:
worker.quit()
online_keeper_update_timer.stop()
while len(online_keeper_threads) > 0:
online_keeper_threads.pop()
print online_keeper_threads
if __name__ == "__main__":
random.seed()
try:
read_account()
except:
QMessageBox.information(window, _fromUtf8("错误"),
_fromUtf8("无法打开账户文件accounts.db"))
window.update_online_keeper_account_list(online_keeper_accounts)
window.init_display_properties()
window.init_signals()
QObject.connect(online_keeper_update_timer,
SIGNAL(_fromUtf8("timeout()")),
window.online_keeper_account_list.reset)
QObject.connect(window.pushButton_online_keeper_start,
SIGNAL(QString.fromUtf8("clicked()")),
start_online_keeper)
QObject.connect(window.online_keeper_dataModel,
SIGNAL(QString.fromUtf8("dataChanged()")),
write_account)
window.write_account_signal.connect(write_account)
QApplication.setQuitOnLastWindowClosed(False)
window.show()
sys.exit(app.exec_()) | Python |
import random
NS_NTP = ["132.163.4.101",
"132.163.4.102",
"132.163.4.103",
"128.138.140.44",
"69.25.96.13",
"64.236.96.53"]
#print len(UA_MSIE10)
#print len(UA_MSIE9)
#print len(UA_MSIE8)
#print len(UA_MSIE7)
#print len(UA_MSIE6)
def get_random_ntp_server():
random.seed()
i = random.randrange(0, len(NS_NTP) - 1)
return NS_NTP[i]
if __name__ == "__main__":
print "currnet ntp server is " + get_random_ntp_server()
| Python |
#######################################################################################
#
# File: user_agent_lib
# Part of pcbeta-cheater
# Home: http://pcbeta-cheater.googlecode.com
#
# The MIT License
#
# Copyright (c) 2010-2011 <araya.akashic@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#######################################################################################
'''
Created on May 29, 2011
@author: flyxian
'''
import random
UA_MSIE10 = ["Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)",
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)",
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/5.0)",
"Mozilla/4.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/5.0)",
"Mozilla/1.22 (compatible; MSIE 10.0; Windows 3.1)"]
UA_MSIE9 = ["Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))",
"Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 7.1; Trident/5.0)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8; Zune 4.7)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8; Zune 4.7",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 4.0; InfoPath.3; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 4.0; Tablet PC 2.0; InfoPath.3; .NET4.0C; .NET4.0E)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; chromeframe/11.0.696.57)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) chromeframe/10.0.648.205",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; chromeframe/11.0.696.57)",
"Mozilla/5.0 ( ; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)",
"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 7.1; Trident/5.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; FDM; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Tablet PC 2.0; InfoPath.3; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/5.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; FDM; .NET4.0C; .NET4.0E; chromeframe/11.0.696.57)"]
UA_MSIE8 = ["Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; Media Center PC 4.0; SLCC1; .NET CLR 3.0.04320)",
"Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 3.0.04506.30)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/4.0; FBSMTWB; .NET CLR 2.0.34861; .NET CLR 3.0.3746.3218; .NET CLR 3.5.33652; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.3; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; msn OptimizedIE8;ZHCN)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; InfoPath.3; .NET4.0C; .NET4.0E) chromeframe/8.0.552.224",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; Zune 4.7; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E; MS-RTC LM 8; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; Zune 3.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; MS-RTC LM 8; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; FDM; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.1; AskTbMYC/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC EA 2; MS-RTC LM 8; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 4.0.20402; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.3; .NET CLR 4.0.20506)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; QQPinyin 686; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRA 5.5 (build 02842); SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; MRA 5.5 (build 02842); GTB6.3; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; Zune 4.0; .NET CLR 1.",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB0.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; FunWebProducts; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; OfficeLiveConnector.1.5; OfficeLivePatch.",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; SLCC2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; GTB6; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; AskTbIJBME/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Media Center PC 5.0; SLCC1; Tablet PC 2.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; AskTbGOM2/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.04506; Media Center PC 5.0; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; .NET4.0C; AskTbPTV2/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.1; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; .NET CLR 3.0.04506; Media Center PC 5.0; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; Tablet PC 2.0; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; InfoPath.3; AskTbBT4/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET CLR 1.0.3705; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8; Tablet PC 2.0; .NET CLR 1.1.4322; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET CLR 1.1.4322; .NET4.0E; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.1; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; SLCC1; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; FDM; Tablet PC 2.0; .NET CLR 4.0.20506; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Zune 4.7; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C) chromeframe/8.0.552.237",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.30618; Media Center PC 5.0; MS-RTC LM 8; SLCC1; Tablet PC 2.0; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.30618; .NET4.0C; InfoPath.2; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.04506; Media Center PC 5.0; SLCC1; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; Tablet PC 2.0; OfficeLiveConnector.1.3; OfficeLivePatch.1.3; MS-RTC LM 8; InfoP",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; SLCC1; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.3029; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; QQDownload 661; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MRA 5.7 (build 03797); SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; FDM; InfoPath.2; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Media Center PC 3.1; SV1; WOW64; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 4.0.20402; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; MathPlayer 2.20; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; iCafeMedia; QQDownload 667; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.04506; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C) chromef",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; SLCC1; Tablet PC 2.0; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; .NET4.0C; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; AskTbFWV5/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; QQDownload 667; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.3; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB0.0; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB0.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; eSobiSubscriber 2.0.4.16; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; chromeframe/10.0.648.151; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MSSDMC1.3.1020.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; FDM; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; MS-RTC LM 8; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729; .NET CLR 4.0.20506; OfficeLiveConnector.1.4; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) chromeframe/6.0.472.63",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.5.21022; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.30729; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MSSDMC2.4.2011.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 1.1.4322; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; FunWebProducts; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; WinNT-PAR 03.09.2009; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SV1; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SV1; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1;)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; Media Center PC 5.0; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Tablet PC 2.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 1.1.4322; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; InfoPath.1; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; FDM; .NET4.0C; .NET4.0E; chromeframe/11.0.696.57)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; MS-RTC LM 8; .NET4.0C; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; Zune 3.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Tablet PC 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; MEGAUPLOAD 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; Zune 2.5; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; Windows-Media-Player/10.00.00.3990; .NET CLR 3.5.30428; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; MS-RTC LM 8; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; InfoPath.1; .NET CLR 3.0.30729; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLivePatch.1.3; MS-RTC LM 8; OfficeLiveConnector.1.5; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; MS-RTC LM 8; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30428; .NET CLR 3.5.30729; Media Center PC 5.1; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.0.30729; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 1.1.4322; Tablet PC 2.0; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Tablet PC 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 627; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30729; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 627; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 627; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 590; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Q312461; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; Zune 4.0; MS-RTC LM 8; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; MathPlayer 2.10d; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; MathPlayer 2.10d; GTB6.4; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; InfoPath.2; AskTbMYC-ST/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Zune 3.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Zune 3.0; .NET CLR 3.5.30729; InfoPath.1; .NET CLR 3.0.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Windows-Media-Player/10.00.00.3990; Zune 3.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; Dealio Toolbar 3.4; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.1; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET4.0C; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnect",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; FDM; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 3.0.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; MEGAUPLOAD 3.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.21022; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB0.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.1; A",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB0.0; (R1 1.6); SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB6.6; SLCC1; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB6.3; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.0.0; .NET CLR 3.0.30729; InfoPath.2; MS-RTC LM 8; .NE",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB0.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FBSMTWB; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FBSMTWB; GTB6.3; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FBSMTWB; FunWebProducts; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.3; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; chromeframe; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; .NET CLR 3.5.30729; .NET4.0C; OfficeLiveConnector.1.5; .NET4.0E; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; ja)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 3.0.04506.648; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.0450",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; YPC 3.2.0; MSN Optimized;GB; .NET CLR 2.0.50727; InfoPath.1; MSN Optimized;GB)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Windows-Media-Player/10.00.00.3990; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQPinyinSetup 620; QQPinyin 730; GTB6.5; QQDownload 661; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQPinyinSetup 620; QQPinyin 689; QQPinyin 730)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQDownload 665; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 2.0.50727; Zune 2.5; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MRA 4.3 (build 01218); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; chromeframe; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MathPlayer 2.10d; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MathPlayer 2.10d; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; MathPlayer 2.10b)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; Zune 3.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbARS/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; iCafeMedia; GTB6.5; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; QQDownload 672)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.1; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.1; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 1.1.4322; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.1; .NET CLR 2.0.50727; Dealio Toolbar 3.4; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; FBSMTWB; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;DEAT)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;ENGB)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET CLR 4.0.20506)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zune 2.0; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; MEGAUPLOAD 2.0; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; Zango 10.3.75.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; AskTbARS/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; InfoPath.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/8.0.552.224",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/8.0.552.215",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; msn OptimizedIE8;ZHTW)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; Windows-Media-Player/10.00.00.3990; .NET CLR 3.5.30729; AskTbBT5/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; WinNT-EVI 30.03.2010; InfoPath.2; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; InfoPath.1; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;JAJP)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3; Windows-Media-Player/10.00.00.3990; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2; AskTbX-SD/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 3.0.04506.30; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; AskTbMP3R7/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/8.0.552.224",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;JAJP)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; AskTbF-ET/5.11.3.15590)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; yie8; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 1.1.4322; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; InfoPath.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.20706; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.4)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.0.3705; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB0.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.1.3; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/7.0.517.44",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProductsp; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.45",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 1.1.4322; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6.6; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6.6; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6.4)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6.3; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2) chromeframe/8.0.552.224",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.370.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FBSMTWB; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FBSMTWB; GTB6.6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FBSMTWB; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe/10.0.648.204; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; ABPlayer_3.0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; InfoPath.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET4.0C; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.5.30729; FDM; MS-RTC LM 8; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; InfoPath.1; .NET CLR 3.5.30729; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET4.0C; .NET4.0E; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; msn OptimizedIE8;KOKR)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbF-ET/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022;",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; FDM; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Trident/4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.5.20404; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.1.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; Zune 3.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC EA 2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MSN Optimized;ENAU)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MSSDMC2.4.2011.2; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MSSDMC2.4.2011.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Paros/3.2.13",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Zune 3.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; InfoPath.1; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Windows-Media-Player/10.00.00.3990; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4;)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; AskTbSPC/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0) chromeframe/8.0.552.237",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; fr-CA)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; en-GB)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows 98; Win 9x 4.90; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; ; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E) chromeframe/8.0.552.237",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.3; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.3; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; AskTbARS/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; FDM; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.3; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; OfficeLivePatch.1.3; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; InfoPath.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Zune 3.0; InfoPath.1; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET CLR 3.0.30618; SLCC1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 665; QQDownload 667; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 663; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.1; Tablet PC 2.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 663; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 661; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 661; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; QQDownload 646; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Tablet PC 2.0; Media Center PC 6.0; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; Tablet PC 2.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; Media Center PC 3.1; .NET CLR 3.0.04320)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/5.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; Zune 3.0; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Trident/4.0; FBSMTWB; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; InfoPath.2; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Zune 3.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; FDM; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.20706; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; Alexa Toolbar; MEGAUPLOAD 1.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729; msn OptimizedIE8;ZHHK)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.30729; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6.3; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; QQDownload 667; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.5.30",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; (R1 1.6); SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0; SLCC1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; QQDownload 1.7; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; SLCC1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.1) Paros/3.2.13",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.1; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Alexa Toolbar; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.4; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.4; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.3; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FunWebProducts; InfoPath.1; .NET CLR 2.0.50727; MSN OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; chromeframe; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; Zune 4.7; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/8.0.552.237",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 4.0.20506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 4.0.20506; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; AskTB5.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 ( ; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; .NET CLR 3.5.30729)",
"Mozilla/4.0 ( ; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"(Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0))"]
UA_MSIE7 = ["Mozilla/4.0(compatible; MSIE 7.0b; Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.0.3705; Media Center PC 3.1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)",
"Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; el-GR)",
"Mozilla/5.0 (MSIE 7.0; Macintosh; U; SunOS; X11; gu; SV1; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; c .NET CLR 3.0.04506; .NET CLR 3.5.30707; InfoPath.1; el-GR)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; c .NET CLR 3.0.04506; .NET CLR 3.5.30707; InfoPath.1; el-GR)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; fr-FR)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; en-US)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; SpamBlockerUtility 6.3.91; SpamBlockerUtility 6.2.91; .NET CLR 4.1.89;GB)",
"Mozilla/4.79 [en] (compatible; MSIE 7.0; Windows NT 5.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (Windows; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (Mozilla/4.0; MSIE 7.0; Windows NT 5.1; FDM; SV1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (Mozilla/4.0; MSIE 7.0; Windows NT 5.1; FDM; SV1)",
"Mozilla/4.0 (compatible;MSIE 7.0;Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; InfoPath.3; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0;)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; YPC 3.2.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; YPC 3.2.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; Media Center PC 5.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30707; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30428; .NET CLR 3.0.30422)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30618; .NET CLR 3.5.30729; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; .NET CLR 3.5.21022; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.30729; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Media Center PC 5.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; chromeframe; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; .NET CLR 2.0.50727; SLCC1; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Win64; x64; .NET CLR 2.0.50727; SLCC1; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1;); SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; InfoPath.1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SV1; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Zango 10.3.75.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.1; .NET CLR 3.5.21022; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; FDM; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; Dealio Toolbar 3.4; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; InfoPath.2; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30628)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zango 10.3.70.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; MEGAUPLOAD 2.0; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1; MS-RTC LM 8; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Alexa Toolbar; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506; Tablet PC 2.0; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30729; MS-RTC LM 8; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30618; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30428; .NET CLR 3.0.30422)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; .NET4.0C; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Zango 10.3.35.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Tablet PC 2.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Zune 3.0; MS-RTC LM 8; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.20706; .NET CLR 3.0.590)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1); SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MathPlayer 2.10d; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MathPlayer 2.10d; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MathPlayer 2.10d; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; InfoPath.1; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; Zune 2.5; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322; Dealio Toolbar 3.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Dealio Toolbar 3.4; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1; Zune 2.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.4; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.3; FBSMTWB; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; FDM; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zune 3.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.1; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; MS-RTC LM 8; InfoPath.2; OfficeLiveConnector.1.2; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; MathPlayer 2.10d; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.1; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; (R1 1.5); SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; (R1 1.5); SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Zango 10.3.75.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FBSMTWB; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; chromeframe; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30618; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; chromeframe; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; ABPlayer_1.3.22; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; (R1 1.6); SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; (R1 1.6); SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; (R1 1.5); SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0 SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; Seekmo 10.0.431.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; FDM; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; GTB6.5; MathPlayer 2.20; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; InfoPath.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.03)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Win64; x64; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Win64; x64; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Q312461; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; MathPlayer 2.10; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; FunWebProducts; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1;)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; zh-cn)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Zango 10.3.75.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Zango 10.0.370.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; SV1; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 2.0.50727; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; GTB5; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; PeoplePal 3.0; yplus 5.6.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.314.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 2.0.50727; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; Zango 10.0.314.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.5.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; (R1 1.5); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.0.3; yplus 4.2.00b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.0.3; .NET CLR 1.1.4322; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.0.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.0.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YComp 5.0.0.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Wysigot 5.5; .NET CLR 2.0.50727; .NET CLR 3.0.04307.00; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; T312461; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; YPC 3.2.0; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Stardock Blog Navigator 1.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; HbTools 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; GTB6.6; AskTbPTV2/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; GTB5; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FunWebProducts; Zango 10.0.341.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.03)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Stardock Blog Navigator 1.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SiteKiosk 6.5 Build 150)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Seekmo 10.0.345.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Q312461; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; PeoplePal 6.1; PeoplePal 3.0; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Q312461; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Q312461; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MS-RTC LM 8; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zune 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRA 5.2 (build 02405); GTB6.3; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MRA 4.2 (build 01102); GTB6.3; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.648; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Zango 10.0.314.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; chromeframe; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; Seekmo 10.0.431.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; MEGAUPLOAD 2.0; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1; .NET CLR 2.0.50727; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; (R1 1.6); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MEGAUPLOAD 2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10d; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.10b; (R1 1.1); .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iOpus-I-M; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.577; .NET CLR 3.5.20526)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iOpus-I-M; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; MS-RTC LM 8; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; msn Optimized IE build03;JP)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; HbTools 4.8.4; Zango 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iebar; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iebar; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iCafeMedia; GTB6; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Hotbar 4.5.0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.1; FDM; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.1; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zune 2.5; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1))",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.6; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; MS-RTC LM 8; AskTbARS/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.5; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; WinNT-PAI 28.08.2009; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; MRA 5.2 (build 02405); InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; MRA 5.0 (build 02094); .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatc",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; (R1 1.3); .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.3; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Zango 10.3.36.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; Zango 10.0.314.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.2; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; FunWebProducts; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; yie8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.4; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; PeoplePal 6.2; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.2; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.2; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; Hotbar 10.2.236.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.79.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.37.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.2.191.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.3.79.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.5.30428; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 2.0.50727; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.6); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB0.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbARS/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB0.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB0.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Zango 10.0.314.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB6.3; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MEGAUPLOAD 2.0; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 2.0.50727; Zune 2.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.3.35.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.328.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Zango 10.0.314.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 10.2.203.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.8.4; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts-MyWay; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; SV1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR.3.0.04131.06)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FBSMTWB; GTB6.3; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FBSMTWB; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FBSMTWB; .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;ESES)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; en-US; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; en-US)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; DigExt; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; chromeframe; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; chromeframe; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; chromeframe/10.0.648.204; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Alexa Toolbar; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; SLCC1; Media Center PC 5.0; .NET CLR 3.0.04506; MEGAUPLOAD 2.0; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Advanced Searchbar; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Advanced Searchbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Advanced Searchbar 3.36; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Zune 3.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Zune 2.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.590; Alexa Toolbar; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Hotbar 10.0.342.0; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.5.30428; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 1.1.4322; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; Zune 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.5.30428)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; MS-RTC LM 8; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yplus 5.6.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 1.0.3705; Tablet PC 1.7; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Zango 10.3.36.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Zango 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MEGAUPLOAD 2.0; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.0.3705; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.0.3705; .NET CLR 3.5.21022; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04307.00; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50215; Avalon 6.0.5070; WinFX RunTime 3.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.40607; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.40301; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.3.74.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.3.36.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.1.181.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.0.370.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.0.341.0; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.0.314.0; SpamBlockerUtility 4.8.4; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Zango 10.0.275.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; Zango 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.341.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Seekmo 10.0.314.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; Zango 10.0.341.0; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; AskTB5.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) (383; 383; 383)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Zango 10.0.370.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Zango 10.0.314.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Seekmo 10.0.275.0; Zango 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Zango 10.0.370.0; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; SpamBlockerUtility 4.8.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zune 2.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.314.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Avalon 6.0.5070; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MEGAUPLOAD 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.2; MSSDMC2.5.2219.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Zune 3.0; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Media Center PC 3.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; Seekmo 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Zune 4.7)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.5.30428)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.5.30428)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.0.3705; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.0.3705; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.5.30428)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.507277777)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50110; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322) Paros/3.2.13",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; InfoPath.1; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; InfoPath.2; .NET CLR 3.0.04506.590; .NET CLR 3.5.20706)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Zango 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Seekmo 10.0.406.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Compatible; SV1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; PeoplePal 3.0; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; yplus 5.6.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; Zango 10.0.314.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); Zune 3.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.314.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 1.1.4322; Hotbar 10.0.368.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322; Seekmo 10.0.341.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.1); .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.1); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SLCC2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.5.30729; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1, .NET CLR 1.1.4322, .NET CLR 2.0.50727, .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)",
"Mozilla/4.0 (Compatible; MSIE 7.0; Windows NT 5.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 4.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows 95)",
"Mozilla/4.0 (compatible; MSIE 7.0; CP/M 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0)",
"Mozilla/4.0 (compatible; Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727); Windows NT 5.1; .NET CLR 2.0.50727)",
"Mozilla/2.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)",
"Mozilla/10.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)",
"Mozilla/1.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)",
"Mozilla /4.0 (compatible;MSIE 7.0;Windows NT6.0)"]
UA_MSIE6 = ["Mozilla/4.0 (compatible; MSIE 6.1; Windows XP; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)",
"Mozilla/4.0 (compatible; MSIE 6.01; Windows NT 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.1; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; YComp 5.0.0.0) (Compatible; ; ; Trident/4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 4.0; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98; Win 9x 4.90)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows 98)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 4.0)",
"Mozilla/5.0 (Windows; U; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4325)",
"Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/45.0 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.08 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.01 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (X11; MSIE 6.0; i686; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 6.0)",
"Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 5.2)",
"Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 5.0)",
"Mozilla/4.0 (Windows; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (MSIE 6.0; Windows NT 5.0)",
"Mozilla/4.0 (compatible;MSIE 6.0;Windows 98;Q312461)",
"Mozilla/4.0 (Compatible; Windows NT 5.1; MSIE 6.0) (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; U; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; QQDownload 534; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (Compatible; MSIE 8.0; Windows NT 6.1; FDM; .NET CLR 1.1.4322; Windows NT 6.1; Trident/4.0; Mozilla/4.0; MSIE 6.0; Windows NT 5.1; SV1 ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.",
"Mozilla/4.0 (Compatible; MSIE 8.0; Windows NT 6.1; .NET CLR 1.1.4322; Windows NT 6.1; Trident/4.0; Mozilla/4.0; MSIE 6.0; Windows NT 5.1; SV1 ; SLCC2; .NET CLR 2.0.50727; Media Center PC 6.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; QQDownload 590; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E; OfficeLiveConnector",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; .NET CLR 3.5.21022; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; AskTbMYC-ST/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Embedded Web Browser from: http://bsalsa.com/; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; QQWubi 87; QQDownload 665; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FBSMTWB; QQDownload 627; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; AskTbPSI/5.9.1.14019)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; http://bsalsa.com) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Tablet PC 2.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; InfoPath.2; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; FDM; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.1; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Tablet PC 2.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MathPlayer 2.10b; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.5.30729; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MEGAUPLOAD 1.0; MEGAUPLOAD 2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; FDM; MEGAUPLOAD 1.0; MEGAUPLOAD 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.648; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; FDM; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.1; Windows XP) (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows; U; Win98; en-US)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows XP; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows XP; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows XP)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SiteKiosk 4.9; SiteCoach 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SiteKiosk 4.9)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SiteKiosk 4.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; InfoPath.3; MS-RTC LM 8; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.1; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SV1; InfoPath.1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Trident/4.0; SV1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Trident/4.0; Media Center PC 3.1; SV1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; QQDownload 627; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; QQDownload 1.7; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; iCafeMedia; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; )",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.40607; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; MathPlayer 2.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; GTB6.6; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; FunWebProducts; SV1; .NET CLR 1.1.4322; Alexa Toolbar; InfoPath.1; .NET CLR 2.0.50727; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.1399)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; yplus 5.6.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; yplus 5.3.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; yplus 5.3.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1; (R1 1.5; yplus 4.1.00b); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; yplus 4.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.1.0; SV1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.1.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.1.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; SV1; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; SV1; FunWebProducts; yplus 4.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; SV1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.2; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; SV1; .NET CLR 1.1.4322; HbTools 4.8.2; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1; FunWebProducts; .NET CLR 1.0.3705; Hotbar 4.6.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.0; YPC 3.0.1; SV1; .NET CLR 1.0.3705; HbTools 4.7.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.0; SV1; YPC 3.0.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YPC 3.0.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.6; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.5; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.5; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.2.4; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Windows 98; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.7; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.7; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; .NET CLR 1.1.4322; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.0; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 6.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; Wanadoo 6.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; Wanadoo 6.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; FunWebProducts; SV1; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.4; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; U; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; U)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.04506; SLCC1; Tablet PC 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; tr)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TMCID=SIEMENS-SK55; .NET CLR 1.1.4322; SiteKiosk 5.5 Build 45; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TMCID=AMT000201; .NET CLR 1.1.4322; SiteKiosk 5.5 Build 45; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; Q312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Zango 10.0.370.0; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.5.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.4.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.3.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.3.01d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; Media Center PC 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; InfoPath.1; .NET CLR 2.0.50727; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; yplus 5.3.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; Seekmo 10.0.341.0; yplus 5.6.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.5.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.01d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; InfoPath.1; yplus 5.3.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; InfoPath.1; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.341.0; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; yplus 5.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yplus 5.6.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1; yplus 5.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.3.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; (R1 1.5; yplus 5.3.01b); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.1.0; Rogers Hi-Speed Internet; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; InfoPath.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.3; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; yplus 4.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; yplus 4.3.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; yplus 4.3.01d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; .NET CLR 1.1.4322; yplus 4.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1; FreeprodTB; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yplus 4.0.00d) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; YPC 3.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; yie8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 7.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; Media Center PC 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.6; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.2; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; Wanadoo 6.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 5.6; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 1.1.4322; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.3",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Tablet PC 1.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Stardock Blog Navigator 1.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SiteKiosk 6.5 Build 150)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SiteKiosk 6.0 Build 98; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SiteKiosk 6.0 Build 98)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Seekmo 10.0.424.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Rogers Hi-Speed Internet; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Rogers Hi-Speed Internet; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Rogers Hi-Speed Internet; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 681; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 1.7; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; PeoplePal 6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; PeoplePal 3.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; msn OptimizedIE8;ENUS; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MS-RTC LM 8; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; AskTbNCE/5.8.0.12304)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 5.4 (build 02625))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 5.3 (build 02564))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 4.9 (build 01849); .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; MEGAUPLOAD 2.0; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.40607; .NET CLR 1.1.4322; FDM; MS-RTC LM",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 2.8; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10d; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10 beta 2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10 beta 2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.10 beta 1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; KB0:718886; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; IPOffice; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; InfoPath.2; MEGAUPLOAD 1.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Windows-Media-Player/10.00.00.3990; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.04506.30; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; image_azv; i-NavFourF; .NET CLR 1.1.4322; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; image_azv; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; image_azv; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; image_azv; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; FunWebProducts; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; ie4.com; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iCafeMedia; QQPinyinSetup 614; .NET CLR 2.0.50727; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iCafeMedia; QQDownload 627; GTB6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iCafeMedia; QQDownload 1.7; User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; http://bsalsa.com) ; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; iCafeMedia; InfoPath.2; InfoPath.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; icafe8; QQDownload 667; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; icafe8; QQDownload 615; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; icafe8; QQDownload 1.7; Media Center PC 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.0.3705; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.6.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.5.1.0; FunWebProducts; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.5.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.4.2.0; FunWebProducts; .NET CLR 1.0.3705; PeoplePal 3.0; .NET CLR 1.1.4322; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.4.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Hotbar 4.4.1.1381)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.5; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; HbTools 4.6.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; InfoPath.2; Dealio Toolbar 3.1.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; msn Optimized IE build03;JP)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.6; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.5; .NET CLR 2.0.50727; InfoPath.2; AskTB5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727) chromeframe/6.0.472.33",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.5; .NET CLR 1.1.4322; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; InfoPath.1; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Zango 10.0.370.0; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProductsn)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.75.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB5; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB0.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Wanadoo 7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Wanadoo 6.7; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; SpamBlockerUtility 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Media Center PC 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; InfoPath.1; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Hotbar 4.5.1.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Hotbar 4.5.1.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; GTB5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; GTB5; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; Advanced Searchbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.50727; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.2; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; Hotbar 4.6.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.6.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; Hotbar 10.2.217.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Hotbar 10.2.191.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50215; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 2.8; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727; Media Center PC 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; SpamBlockerUtility 4.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; Seekmo 10.0.345.0; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; PeoplePal 6.6; Zango 10.0.314.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1; Hotbar 10.2.217.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.6.04)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; SpamBlockerUtility 10.0.327.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; InfoPath.1; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; HbTools 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; SpamBlockerUtility 4.8.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; SpamBlockerUtility 4.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; HbTools 4.7.7; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.6))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts-MyWay; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts-MyWay; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts-MyWay)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FreeprodTB)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 2.0.50727; InfoPath.1; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FBSMTWB; GTB6.6; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FBSMTWB; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; MS-RTC LM 8; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; DigExt; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; DigExt; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; CursorZone Grip Toolbar 2.08.552; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; chromeframe)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; AskTB5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar 3.25)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar 3.24; EmbeddedWB 14.5 from: http://www.bsalsa.com/ EmbeddedWB 14.5; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Advanced Searchbar 3.24; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR SV.4.0.329; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 3.0.04506.30; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; InfoPath.2; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; Zune 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; FDM; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Seekmo 10.0.341.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR.3.0.04131.06)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 2.0.50215; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50215; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50110; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.41115; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Zango 10.0.314.0; .NET CLR 2.0.50727; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Tablet PC 1.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; SiteKiosk 6.0 Build 98; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; SiteKiosk 6.0 Build 98)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.431.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.424.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.406.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.370.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Seekmo 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 6.1; PeoplePal 6.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 3.0; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; Windows-Media-Player/10.00.00.3990; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Tablet PC 1.7; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Seekmo 10.0.370.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; yie8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50215; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.3; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; Alexa Toolbar) (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Alexa Toolbar; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Zango 10.3.65.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; SiteKiosk 6.2 Build 51)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD TOOLBAR 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; Windows-Media-Player/10.00.00.3990)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; MS-RTC LM 8)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar; yplus 5.3.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; ;ja)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; msn OptimizedIE8;ENUS)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; SiteKiosk)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET4.0C; .NET4.0E; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.6",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.590)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) Paros/3.2.13",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; Avalon 6.0.5070; WinFX RunTime 3.0.50215; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; Avalon 6.0.4030; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.40903)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.590; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.1432)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Tablet PC 1.7; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Tablet PC 1.7; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Tablet PC 1.7; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; PeoplePal 3.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 4.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 3.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 2.8; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 2.8; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 2.8; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; InfoPath.2; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Tablet PC 1.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; yplus 5.1.04b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; SpamBlockerUtility 4.8.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; Media Center PC 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; Media Center PC 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Avalon 6.0.5070; .NET CLR 2.0.50215; WinFX RunTime 3.0.50215; Media Center PC 4.0; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Media Center PC 4.0; FDM; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.40607; InfoPath.1; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); InfoPath.2; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.6); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); PeoplePal 3.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); HbTools 4.6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1; Seekmo 10.0.345.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; Tablet PC 1.7; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.1); InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.1); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (R1 1.1); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; (compatible; MSIE 6.0; Windows NT 5.1; SV1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.927; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.926; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.926; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.926; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; stumbleupon.com 1.926)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; StumbleUpon.com 1.906; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; StumbleUpon.com 1.763; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; StumbleUpon.com 1.763; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SiteKiosk 6.0 Build 98)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SiteKiosk 5.5 Build 45; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SiteCoach 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Rogers Hi-Speed Internet; SV1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Rogers Hi-Speed Internet; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Rogers Hi-Speed Internet; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Rogers Hi-Speed Internet; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YPC 3.0.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.6; Hotbar 4.2.11.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.4; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.4; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.0.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Wanadoo 6.1; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; YPC 3.0.1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; Hotbar 4.5.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.3.6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.1.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.1.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 3.0; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; FunWebProducts; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; FunWebProducts; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705; .NET CLR 1.0.3617; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; (R1 1.1); MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; pl)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; PeoplePal 6.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; nb)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; msn OptimizedIE8;ZHCN; SV1; QQDownload 661; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT); SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.2; .NET CLR 2.0.50727; Zango 10.3.75.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MathPlayer 2.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MathPlayer 2.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; LN; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; SV1; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; image_azv; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; InfoPath.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; .NET CLR 1.0.3705; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.5.1.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.5.0.0; SV1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.7.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.6.0; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.5.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.2.0; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.1.1406)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.4.1.1388)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.5.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.2.0; FunWebProducts; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.1.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.1.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.8.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.14.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.14.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.13.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.11.0; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.11.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.2.10.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.5.0; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.2.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.0; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HbTools 4.6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB6; FunWebProducts; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; MSN Optimized;US)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB6.4; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB5; SV1; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB5; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Grip Toolbar 2.07a; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; YPC 3.2.0; SV1; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; YPC 3.2.0; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Wanadoo 5.6; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; YPC 3.2.0; .NET CLR 1.1.4322; HbTools 4.8.0; yplus 5.3.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; i-NavFourF; .NET CLR 1.1.4322; HbTools 4.7.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; Hotbar 4.5.1.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322; Alexa Toolbar; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; Hotbar 10.0.356.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; HbTools 4.7.7)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; HbTools 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; (R1 1.6); .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1; (R1 1.5); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Seekmo 10.0.275.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Hotbar 4.6.1; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; FunWebProducts-MyTotalSearch; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts; (R1 1.5); .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; MathPlayer 2.0; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; MathPlayer 2.0; (R1 1.5); .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; iebar; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyWay)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts-MyTotalSearch)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FreeprodTB; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FreeprodTB)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM; SV1; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FBSMTWB)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; es-es)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; YPC 3.2.0; SV1; .NET CLR 1.1.4322; yplus 5.3.02d)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1; YPC 3.2.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; Q312461; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; .NET CLR 2.0.50215; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Dealio Toolbar 3.4; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; de)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; chromeframe; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; SV1; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Advanced Searchbar 3.25; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET4.0C; .NET4.0E)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 1.1.4322; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; SiteKiosk 5.5 Build 45; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; SiteKiosk 5.5 Build 45)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Avalon 6.0.5070; WinFX RunTime 3.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; Seekmo 10.0.427.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; Media Center PC 2.8)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04324.17)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.40607; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 1.2.30703)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3328)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.5); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.3); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.1); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.1); .NET CLR 1.0.3512)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.12)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.03b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.2.0; (R1 1.5; yplus 5.1.02b))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YPC 3.0.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.8.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.4; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.0.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; YComp 5.0.2.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; YComp 5.0.0.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; iebar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Hotbar 4.3.2.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SV1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SiteKiosk 6.2 Build 51)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; SiteKiosk 6.0 Build 98; SiteCoach 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Rogers Hi-Speed Internet; Hotbar 4.4.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.2.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.2.5; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.1.5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.3705; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.2914; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MathPlayer 2.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MathPlayer 2.0; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MathPlayer 2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; FunWebProducts-MyWay; .NET CLR 1.1.4322; FDM; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; FunWebProducts-MyWay; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; InfoPath.1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iebar; HbTools 4.6.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; iebar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; IE6SP1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; i-NavFourF; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; i-NavFourF; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.5.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.5.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.2.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.1.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.13.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.2.11.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.0; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.0; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 3.0; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts-MyWay; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FreeprodTB; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Alexa Toolbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Advanced Searchbar; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; HbTools 4.7.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; FDM; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50215)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; SpamBlockerUtility 4.7.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Alexa Toolbar; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.3); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.1); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.1); .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4; SV1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; T312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 4.2.11.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; DigExt; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows CE)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0; yplus 5.3.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.0.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YPC 3.0.1; .NET CLR 1.1.4322; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.2.5; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; www.direktanlagebank.com)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x4.90)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.2.0; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.3.01b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.2.0; .NET CLR 1.1.4322; yplus 5.1.02b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YPC 3.1.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.6; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.4; Hotbar 4.1.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; YComp 5.0.0.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 6.1; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 5.5; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Wanadoo 5.5; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Rogers Hi-Speed Internet)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Q312461; YPC 3.0.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Q312461; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; PeoplePal 6.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; PeoplePal 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; PeoplePal 3.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; MEGAUPLOAD 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.4.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.3.5.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.2.4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.2.3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.1.5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.1.2.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; HbTools 4.8.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts; i-NavFourF; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts; Hotbar 4.2.14.0; YPC 3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts; .NET CLR 1.1.4322; HbTools 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FDM; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 2.0.50727; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; PeoplePal 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; PeoplePal 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322; .NET CLR 2.0.40607)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.0.3705; .NET CLR 1.1.4322; SpamBlockerUtility 4.8.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.5); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.3); .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 7.1; Hotbar 4.2.6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.2; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.2; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.1; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.6; Wanadoo 5.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.5; Wanadoo 6.2)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.5; Wanadoo 6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.3; YComp 5.0.0.0; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.3; Wanadoo 5.5; Wanadoo 6.0; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Wanadoo 5.3; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; Q312461; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SpamBlockerUtility 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SiteKiosk 4.9; SiteCoach 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SiteKiosk 4.9)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; SEARCHALOT.COM; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; ru)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Rogers Hi-Speed Internet)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; YComp 5.0.2.6; Hotbar 4.2.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; Hotbar 4.3.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; MEGAUPLOAD 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; MathPlayer 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; iOpus-I-M)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; i-NavFourF; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; i-NavFourF)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.6.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.4.6.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.3.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.3.2.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.3.1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.2.8.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.2.8.0; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.2.11.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.2.1.1198)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.1.8.0; YComp 5.0.2.6)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; HbTools 4.7.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; HbTools 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; HbTools 4.7.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; YPC 3.2.0; yplus 4.1.00b)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; (R1 1.5); SpamBlockerUtility 4.7.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; (R1 1.5); MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts-MyWay)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts-MyTotalSearch)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FunWebProducts)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FDM; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; FDM)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; en)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Advanced Searchbar 3.25)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 2.0.50727; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; (R1 1.5); .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; (R1 1.5))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 3.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 3.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; ; Windows NT 5.1;SV1;Alexa Toolbar)",
"Mozilla/4.0 (compatible; MSIE 6.0; ; SV1; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 6.0; )",
"Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )",
"Mozilla/4.0 (compatible; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322); Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SLCC1; .NET CLR 1.1.4325; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4325; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30707; MS-RTC LM 8)",
"Mozilla/4.0 (compatible ; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 ( compatible; MSIE 6.0; Windows NT 5.1; SV1; Alexa Toolbar )",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT; SiteKiosk 4.9; SiteCoach 1.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; YComp 5.0.0.0; Hotbar 4.1.7.0; .NET CLR 1.0.3705; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Wanadoo 5.5)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; Hotbar 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Q312461; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Hotbar 4.1.5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; DigExt; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.0.2914)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; YComp 5.0.0.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.3)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Wanadoo 5.1)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MSIECrawler)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar 4.1.2.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; (R1 1.1))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; T312461; Q312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0; DigExt)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 4.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.2.4)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; YComp 5.0.0.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; T312461; Hotbar 4.1.8.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; (R1 1.3))",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; T312461)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Hotbar 3.0)",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)"]
UA_tabs = [UA_MSIE10, UA_MSIE9, UA_MSIE8, UA_MSIE7, UA_MSIE6]
#print len(UA_MSIE10)
#print len(UA_MSIE9)
#print len(UA_MSIE8)
#print len(UA_MSIE7)
#print len(UA_MSIE6)
def get_random_user_agent():
random.seed()
i = random.randrange(0, len(UA_tabs) - 1)
# print i
ua_tab = UA_tabs[i]
# print len(ua_tab)
j = random.randint(0, len(ua_tab) - 1)
# print j
return ua_tab[j]
if __name__ == "__main__":
print get_random_user_agent()
| Python |
#! /usr/bin/python
# -*- coding: utf-8 -*-
from distutils.core import setup
import py2exe
import main
from glob import glob
data_files = [("Microsoft.VC100.CRT",
glob(r'E:\important\应用软件\开发工具\python\开发代码\Microsoft.VC100.CRT\*.*'))]
setup(
options = {"py2exe": {"optimize": 2,
"compressed": 1,
# "dll_excludes": ["MSVCP90.dll",],
"bundle_files": 1,
"includes": ["sip"]} },
name = "stage1st_cheater",
version = main.VERSION,
description = "Stage1st BBS Cheating Tools",
zipfile = None,
# data_files=data_files,
windows=[{'script': 'main.py',
"icon_resources": [(1, "./images/logo.ico")]}],
data_files = [('images', ['./images/logo.png'])])
| Python |
#!/usr/bin/python
from socket import *
import struct,os,time,sys
from ntp_server_lib import get_random_ntp_server
print get_random_ntp_server()
# Script to set Linux hardware clock (/usr/sbin/hwclock) from an NTP
# time server. Run as "setclock.py" to simply print the time from
# the NTP server. Run as "setclock.py --set" to set the Linux
# hardware clock (as the super user, of course).
# Based on Simon Foster's simple SNTP client from ASPN Python cookbook.
# Adapted by Paul Rubin; this script lives at:
# http://www.nightsong.com/phr/python/setclock.py
time_server = (get_random_ntp_server(), 123)
# time.apple.com is a stratum 2 time server. (123 is the SNTP port number).
# More servers info can be found at
#
# http://www.eecis.udel.edu/~mills/ntp/servers.htm
#
# Note it's considered antisocial to use a stratum 1 server (like NIST)
# for purposes like this which don't need extreme accuracy (i.e. syncing
# your own big NTP network). See www.ntp.org for more info.
#
# You could also use time.windows.com (Microsoft server) which syncs
# all Windows XP machines everywhere, so it can presumably handle lots
# of clients.
# number of seconds between NTP epoch (1900) and Unix epoch (1970).
TIME1970 = 2208988800L # Thanks to F.Lundh
def get_ntp_time():
client = socket( AF_INET, SOCK_DGRAM )
data = '\x1b' + 47 * '\0'
client.sendto(data, time_server)
data, address = client.recvfrom( 1024 )
if data:
print 'Response received from', address,'\n'
t = struct.unpack( '!12I', data )[10]
if t == 0:
return -1
return t - TIME1970
else:
return -1
| Python |
# -*- coding: utf-8 -*-
#######################################################################################
# #
# File: Core.py #
# Part of stage1st_cheater #
# Home: http://stage1st-cheater.googlecode.com #
# #
# The MIT License #
# #
# Copyright (c) 2010-2011 <araya.akashic@gmail.com> #
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to deal #
# in the Software without restriction, including without limitation the rights #
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
# copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in #
# all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN #
# THE SOFTWARE. #
# #
#######################################################################################
'''
Created on May 22, 2011
@author: flyxian
'''
import operator
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from MainDialog import *
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class MainWindow(QMainWindow, Ui_MainDialog):
write_account_signal = pyqtSignal()
def __init__(self, parent=None):
super(MainWindow, self).__init__(parent)
self.setupUi(self)
'''user defined'''
self.pushButton_online_keeper_start.state = False
self.createActions()
self.createTrayIcon()
self.trayIcon.show()
self.trayIcon.setVisible(True)
icon = QtGui.QIcon(_fromUtf8("./images/logo.png"))
self.setWindowIcon(icon)
# def setVisible(self, visible):
# self.minimizeAction.setEnabled(visible)
# self.maximizeAction.setEnabled(not self.isMaximized())
# self.restoreAction.setEnabled(self.isMaximized() or not visible)
# super(MainWindow, self).setVisible(visible)
def closeEvent(self, event):
if self.trayIcon.isVisible():
# QMessageBox.information(self, "Systray",
# _fromUtf8("The program will keep running in the system tray. To "
# "terminate the program, choose <b>退出</b> in the "
# "context menu of the system tray entry."))
self.hide()
event.ignore()
else:
qApp.quit()
def createActions(self):
self.minimizeAction = QAction(_fromUtf8("最小化"), self,
triggered=self.hide)
# self.maximizeAction = QAction("Ma&ximize", self,
# triggered=self.showMaximized)
self.restoreAction = QAction(_fromUtf8("还原"), self,
triggered=self.showNormal)
self.quitAction = QAction(_fromUtf8("退出"), self,
triggered=qApp.quit)
def createTrayIcon(self):
icon = QIcon(_fromUtf8("./images/logo.png"))
# icon.addPixmap(QPixmap(_fromUtf8(":/images/trash.svg")),
# QIcon.Normal, QtGui.QIcon.Off)
self.trayIconMenu = QMenu(self)
self.trayIconMenu.addAction(self.minimizeAction)
# self.trayIconMenu.addAction(self.maximizeAction)
self.trayIconMenu.addAction(self.restoreAction)
self.trayIconMenu.addSeparator()
self.trayIconMenu.addAction(self.quitAction)
self.trayIcon = QSystemTrayIcon(icon, self)
self.trayIcon.setContextMenu(self.trayIconMenu)
def init_display_properties(self):
self.online_keeper_account_list.setColumnHidden(1, True)
def online_keeper_account_list_reset(self):
self.online_keeper_account_list.reset()
self.online_keeper_account_list.setColumnHidden(1, True)
def init_signals(self):
#backgrounds
QObject.connect(self.online_keeper_dataModel,
SIGNAL(_fromUtf8("dataChanged()")),
self.online_keeper_account_list_reset)
#operations
QObject.connect(self.online_keeper_account_list,
SIGNAL(_fromUtf8("clicked(QModelIndex)")),
self.online_keeper_get_selection)
QObject.connect(self.pushButton_online_keeper_add,
SIGNAL(_fromUtf8("clicked()")),
self.online_keeper_set_account)
QObject.connect(self.pushButton_online_keeper_del,
SIGNAL(_fromUtf8("clicked()")),
self.online_keeper_del_account)
# QObject.connect(self.pushButton_online_keeper_start,
# SIGNAL(_fromUtf8("clicked()")),
# self.online_keeper_start)
# def online_keeper_add_account(self):
# username = self.
def online_keeper_get_selection(self):
indexlist = self.online_keeper_account_list.selectionModel().selectedIndexes()
datamodel = self.online_keeper_account_list.model()
self.online_keeper_username.setText(datamodel.data(indexlist[0]).toString())
self.online_keeper_passwd.setText(datamodel.data(indexlist[1]).toString())
def online_keeper_set_account(self):
indexlist = self.online_keeper_account_list.selectionModel().selectedIndexes()
datamodel = self.online_keeper_account_list.model()
# print indexlist
if len(indexlist) > 0:
datamodel.setData(indexlist[0], self.online_keeper_username.text())
datamodel.setData(indexlist[1], self.online_keeper_passwd.text())
else:
if len(self.online_keeper_username.text()) == 0\
or len(self.online_keeper_passwd.text()) == 0:
return
else:
if not datamodel.insertRows(datamodel.rowCount(), 1):
return
child = datamodel.index(datamodel.rowCount()-1, 0)
datamodel.setData(child, self.online_keeper_username.text(), Qt.EditRole)
child = datamodel.index(datamodel.rowCount()-1, 1)
datamodel.setData(child, self.online_keeper_passwd.text(), Qt.EditRole)
child = datamodel.index(datamodel.rowCount()-1, 2)
datamodel.setData(child, _fromUtf8('##'), Qt.EditRole)
self.online_keeper_username.clear()
self.online_keeper_passwd.clear()
self.write_account_signal.emit()
def online_keeper_del_account(self):
indexlist = self.online_keeper_account_list.selectionModel().selectedIndexes()
model = self.online_keeper_account_list.model()
if len(indexlist) <= 0:
return
else:
model.removeRow(indexlist[0].row())
self.online_keeper_username.clear()
self.online_keeper_passwd.clear()
self.write_account_signal.emit()
def online_keeper_start(self):
if self.pushButton_online_keeper_start.state:
self.pushButton_online_keeper_start.state = False
self.online_keeper_account_list.setDisabled(False)
self.online_keeper_passwd.setDisabled(False)
self.online_keeper_username.setDisabled(False)
self.pushButton_online_keeper_add.setDisabled(False)
self.pushButton_online_keeper_cancel.setDisabled(False)
self.pushButton_online_keeper_del.setDisabled(False)
else:
self.pushButton_online_keeper_start.state = True
self.online_keeper_account_list.setDisabled(True)
self.online_keeper_passwd.setDisabled(True)
self.online_keeper_username.setDisabled(True)
self.pushButton_online_keeper_add.setDisabled(True)
self.pushButton_online_keeper_cancel.setDisabled(True)
self.pushButton_online_keeper_del.setDisabled(True)
#online_keeper_account_list
def update_online_keeper_account_list(self, tabledata):
header = [_fromUtf8('用户名'), '', _fromUtf8('运行状态')]
self.online_keeper_dataModel = OnlineKeeper_AccountListModel(tabledata, header)
self.online_keeper_account_list.setModel(self.online_keeper_dataModel)
class OnlineKeeper_AccountListModel(QAbstractTableModel):
def __init__(self, datain, headerdata, parent=None, *args):
""" datain: a list of lists
headerdata: a list of strings
"""
super(OnlineKeeper_AccountListModel, self).__init__(parent)
self.arraydata = datain
self.headerdata = headerdata
def rowCount(self, parent=QModelIndex()):
return len(self.arraydata)
def columnCount(self, parent=QModelIndex()):
try:
return len(self.arraydata[0])
except:
return 0
def data(self, index, role=Qt.DisplayRole):
if not index.isValid():
return QVariant()
elif role != Qt.DisplayRole:
return QVariant()
return QVariant(self.arraydata[index.row()][index.column()])
def headerData(self, col, orientation, role):
if orientation == Qt.Horizontal and role == Qt.DisplayRole:
return QVariant(self.headerdata[col])
return QVariant()
def setData(self, index, value, role=Qt.EditRole):
try:
self.arraydata[index.row()][index.column()] = value
# print self.arraydata
self.emit(SIGNAL(_fromUtf8("dataChanged()")))
return True
except:
print "Model.setData == False"
return False
def insertRows(self, position, rows, parent=QModelIndex()):
self.beginInsertRows(parent, position, position + rows - 1)
self.arraydata.append([_fromUtf8(''), _fromUtf8(''), False])
self.endInsertRows()
return True
def removeRows(self, position, rows, parent=QModelIndex()):
self.beginRemoveRows(parent, position, position + rows - 1)
del(self.arraydata[position])
self.endRemoveRows()
return True
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_()) | Python |
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'MainDialog.ui'
#
# Created: Sun May 29 21:22:32 2011
# by: PyQt4 UI code generator 4.8.4
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class Ui_MainDialog(object):
def setupUi(self, MainDialog):
MainDialog.setObjectName(_fromUtf8("MainDialog"))
MainDialog.resize(400, 386)
MainDialog.setMinimumSize(QtCore.QSize(400, 386))
MainDialog.setMaximumSize(QtCore.QSize(400, 386))
MainDialog.setLocale(QtCore.QLocale(QtCore.QLocale.Chinese, QtCore.QLocale.China))
self.tabWidget = QtGui.QTabWidget(MainDialog)
self.tabWidget.setGeometry(QtCore.QRect(10, 20, 381, 351))
font = QtGui.QFont()
font.setPointSize(8)
self.tabWidget.setFont(font)
self.tabWidget.setTabsClosable(False)
self.tabWidget.setObjectName(_fromUtf8("tabWidget"))
self.tab_online_keeper = QtGui.QWidget()
self.tab_online_keeper.setObjectName(_fromUtf8("tab_online_keeper"))
self.groupBox = QtGui.QGroupBox(self.tab_online_keeper)
self.groupBox.setEnabled(True)
self.groupBox.setGeometry(QtCore.QRect(10, 10, 351, 271))
self.groupBox.setFlat(False)
self.groupBox.setCheckable(False)
self.groupBox.setObjectName(_fromUtf8("groupBox"))
self.online_keeper_username = QtGui.QLineEdit(self.groupBox)
self.online_keeper_username.setGeometry(QtCore.QRect(50, 210, 113, 20))
self.online_keeper_username.setObjectName(_fromUtf8("online_keeper_username"))
self.online_keeper_passwd = QtGui.QLineEdit(self.groupBox)
self.online_keeper_passwd.setEnabled(True)
self.online_keeper_passwd.setGeometry(QtCore.QRect(50, 240, 113, 20))
self.online_keeper_passwd.setInputMethodHints(QtCore.Qt.ImhHiddenText|QtCore.Qt.ImhNoAutoUppercase|QtCore.Qt.ImhNoPredictiveText)
self.online_keeper_passwd.setEchoMode(QtGui.QLineEdit.Password)
self.online_keeper_passwd.setObjectName(_fromUtf8("online_keeper_passwd"))
self.label = QtGui.QLabel(self.groupBox)
self.label.setGeometry(QtCore.QRect(10, 210, 46, 13))
self.label.setObjectName(_fromUtf8("label"))
self.label_2 = QtGui.QLabel(self.groupBox)
self.label_2.setGeometry(QtCore.QRect(10, 240, 46, 13))
self.label_2.setObjectName(_fromUtf8("label_2"))
self.pushButton_online_keeper_add = QtGui.QPushButton(self.groupBox)
self.pushButton_online_keeper_add.setGeometry(QtCore.QRect(180, 210, 151, 23))
self.pushButton_online_keeper_add.setObjectName(_fromUtf8("pushButton_online_keeper_add"))
self.pushButton_online_keeper_cancel = QtGui.QPushButton(self.groupBox)
self.pushButton_online_keeper_cancel.setGeometry(QtCore.QRect(180, 240, 75, 23))
self.pushButton_online_keeper_cancel.setObjectName(_fromUtf8("pushButton_online_keeper_cancel"))
self.pushButton_online_keeper_del = QtGui.QPushButton(self.groupBox)
self.pushButton_online_keeper_del.setGeometry(QtCore.QRect(260, 240, 75, 23))
self.pushButton_online_keeper_del.setObjectName(_fromUtf8("pushButton_online_keeper_del"))
self.online_keeper_account_list = QtGui.QTreeView(self.groupBox)
self.online_keeper_account_list.setGeometry(QtCore.QRect(10, 20, 331, 181))
self.online_keeper_account_list.setItemsExpandable(False)
self.online_keeper_account_list.setObjectName(_fromUtf8("online_keeper_account_list"))
self.pushButton_online_keeper_start = QtGui.QPushButton(self.tab_online_keeper)
self.pushButton_online_keeper_start.setGeometry(QtCore.QRect(10, 290, 351, 23))
self.pushButton_online_keeper_start.setObjectName(_fromUtf8("pushButton_online_keeper_start"))
self.tabWidget.addTab(self.tab_online_keeper, _fromUtf8(""))
self.tab = QtGui.QWidget()
self.tab.setObjectName(_fromUtf8("tab"))
self.textEdit = QtGui.QTextEdit(self.tab)
self.textEdit.setGeometry(QtCore.QRect(10, 10, 351, 301))
self.textEdit.setObjectName(_fromUtf8("textEdit"))
self.tabWidget.addTab(self.tab, _fromUtf8(""))
self.retranslateUi(MainDialog)
self.tabWidget.setCurrentIndex(0)
QtCore.QObject.connect(self.pushButton_online_keeper_cancel, QtCore.SIGNAL(_fromUtf8("clicked()")), self.online_keeper_username.clear)
QtCore.QObject.connect(self.pushButton_online_keeper_cancel, QtCore.SIGNAL(_fromUtf8("clicked()")), self.online_keeper_passwd.clear)
QtCore.QObject.connect(self.pushButton_online_keeper_cancel, QtCore.SIGNAL(_fromUtf8("clicked()")), self.online_keeper_account_list.clearSelection)
QtCore.QMetaObject.connectSlotsByName(MainDialog)
def retranslateUi(self, MainDialog):
MainDialog.setWindowTitle(QtGui.QApplication.translate("MainDialog", "PCbeta-Cheater", None, QtGui.QApplication.UnicodeUTF8))
self.groupBox.setTitle(QtGui.QApplication.translate("MainDialog", "账号", None, QtGui.QApplication.UnicodeUTF8))
self.label.setText(QtGui.QApplication.translate("MainDialog", "用户名", None, QtGui.QApplication.UnicodeUTF8))
self.label_2.setText(QtGui.QApplication.translate("MainDialog", "密码", None, QtGui.QApplication.UnicodeUTF8))
self.pushButton_online_keeper_add.setText(QtGui.QApplication.translate("MainDialog", "确认/添加", None, QtGui.QApplication.UnicodeUTF8))
self.pushButton_online_keeper_cancel.setText(QtGui.QApplication.translate("MainDialog", "清除", None, QtGui.QApplication.UnicodeUTF8))
self.pushButton_online_keeper_del.setText(QtGui.QApplication.translate("MainDialog", "删除", None, QtGui.QApplication.UnicodeUTF8))
self.pushButton_online_keeper_start.setText(QtGui.QApplication.translate("MainDialog", "开始/停止", None, QtGui.QApplication.UnicodeUTF8))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_online_keeper), QtGui.QApplication.translate("MainDialog", "刷日常", None, QtGui.QApplication.UnicodeUTF8))
self.textEdit.setHtml(QtGui.QApplication.translate("MainDialog", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">S1小工具</span></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;\"></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">制作:<a href=\"mailto:araya.akashic@gmail.com\"><span style=\" text-decoration: underline; color:#0000ff;\">araya.akashic@gmail.com</span></a></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">魔改:<a href=\"mailto:elsesky@gmail.com\"><span style=\" text-decoration: underline; color:#0000ff;\">elsesky@gmail.com</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">原项目地址:<a href=\"http://stage1st-cheater.googlecode.com\"><span style=\" text-decoration: underline; color:#0000ff;\">http://stage1st-cheater.googlecode.com</span></a></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">当前项目地址:<a href=\"https://pcbeta-cheater.googlecode.com/\"><span style=\" text-decoration: underline; color:#0000ff;\">https://pcbeta-cheater.googlecode.com/</span></a></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">MIT LICENSE</p>\n"
"<hr />\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'monospace\'; color:#494949;\">Copyright (c) 2010-2011 araya.akashic@gmail.com</span></p>\n"
"<p style=\" margin-top:8px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'monospace\'; color:#494949;\">Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</span></p>\n"
"<p style=\" margin-top:8px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'monospace\'; color:#494949;\">The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</span></p>\n"
"<p style=\" margin-top:8px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'monospace\'; color:#494949;\">THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</span></p>\n"
"<hr />\n"
"<p style=\" margin-top:8px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">原作者BLOG请移步:<a href=\"http://thegaran.info/blog\"><span style=\" text-decoration: underline; color:#0000ff;\">http://thegaran.info/blog</span></a></p></body></html>"
"<p style=\" margin-top:8px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">魔改者BLOG请移步:<a href=\"http://hi.baidu.com/elsesky\"><span style=\" text-decoration: underline; color:#0000ff;\">http://hi.baidu.com/elsesky</span></a></p></body></html>", None, QtGui.QApplication.UnicodeUTF8))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), QtGui.QApplication.translate("MainDialog", "程序信息", None, QtGui.QApplication.UnicodeUTF8))
| Python |
"""
FCKeditor - The text editor for Internet - http://www.fckeditor.net
Copyright (C) 2003-2008 Frederico Caldeira Knabben
== BEGIN LICENSE ==
Licensed under the terms of any of the following licenses at your
choice:
- GNU General Public License Version 2 or later (the "GPL")
http://www.gnu.org/licenses/gpl.html
- GNU Lesser General Public License Version 2.1 or later (the "LGPL")
http://www.gnu.org/licenses/lgpl.html
- Mozilla Public License Version 1.1 or later (the "MPL")
http://www.mozilla.org/MPL/MPL-1.1.html
== END LICENSE ==
This is the integration file for Python.
"""
import cgi
import os
import re
import string
def escape(text, replace=string.replace):
"""Converts the special characters '<', '>', and '&'.
RFC 1866 specifies that these characters be represented
in HTML as < > and & respectively. In Python
1.5 we use the new string.replace() function for speed.
"""
text = replace(text, '&', '&') # must be done 1st
text = replace(text, '<', '<')
text = replace(text, '>', '>')
text = replace(text, '"', '"')
text = replace(text, "'", ''')
return text
# The FCKeditor class
class FCKeditor(object):
def __init__(self, instanceName):
self.InstanceName = instanceName
self.BasePath = '/fckeditor/'
self.Width = '100%'
self.Height = '200'
self.ToolbarSet = 'Default'
self.Value = '';
self.Config = {}
def Create(self):
return self.CreateHtml()
def CreateHtml(self):
HtmlValue = escape(self.Value)
Html = ""
if (self.IsCompatible()):
File = "fckeditor.html"
Link = "%seditor/%s?InstanceName=%s" % (
self.BasePath,
File,
self.InstanceName
)
if (self.ToolbarSet is not None):
Link += "&Toolbar=%s" % self.ToolbarSet
# Render the linked hidden field
Html += "<input type=\"hidden\" id=\"%s\" name=\"%s\" value=\"%s\" style=\"display:none\" />" % (
self.InstanceName,
self.InstanceName,
HtmlValue
)
# Render the configurations hidden field
Html += "<input type=\"hidden\" id=\"%s___Config\" value=\"%s\" style=\"display:none\" />" % (
self.InstanceName,
self.GetConfigFieldString()
)
# Render the editor iframe
Html += "<iframe id=\"%s\__Frame\" src=\"%s\" width=\"%s\" height=\"%s\" frameborder=\"0\" scrolling=\"no\"></iframe>" % (
self.InstanceName,
Link,
self.Width,
self.Height
)
else:
if (self.Width.find("%%") < 0):
WidthCSS = "%spx" % self.Width
else:
WidthCSS = self.Width
if (self.Height.find("%%") < 0):
HeightCSS = "%spx" % self.Height
else:
HeightCSS = self.Height
Html += "<textarea name=\"%s\" rows=\"4\" cols=\"40\" style=\"width: %s; height: %s;\" wrap=\"virtual\">%s</textarea>" % (
self.InstanceName,
WidthCSS,
HeightCSS,
HtmlValue
)
return Html
def IsCompatible(self):
if (os.environ.has_key("HTTP_USER_AGENT")):
sAgent = os.environ.get("HTTP_USER_AGENT", "")
else:
sAgent = ""
if (sAgent.find("MSIE") >= 0) and (sAgent.find("mac") < 0) and (sAgent.find("Opera") < 0):
i = sAgent.find("MSIE")
iVersion = float(sAgent[i+5:i+5+3])
if (iVersion >= 5.5):
return True
return False
elif (sAgent.find("Gecko/") >= 0):
i = sAgent.find("Gecko/")
iVersion = int(sAgent[i+6:i+6+8])
if (iVersion >= 20030210):
return True
return False
elif (sAgent.find("Opera/") >= 0):
i = sAgent.find("Opera/")
iVersion = float(sAgent[i+6:i+6+4])
if (iVersion >= 9.5):
return True
return False
elif (sAgent.find("AppleWebKit/") >= 0):
p = re.compile('AppleWebKit\/(\d+)', re.IGNORECASE)
m = p.search(sAgent)
if (m.group(1) >= 522):
return True
return False
else:
return False
def GetConfigFieldString(self):
sParams = ""
bFirst = True
for sKey in self.Config.keys():
sValue = self.Config[sKey]
if (not bFirst):
sParams += "&"
else:
bFirst = False
if (sValue):
k = escape(sKey)
v = escape(sValue)
if (sValue == "true"):
sParams += "%s=true" % k
elif (sValue == "false"):
sParams += "%s=false" % k
else:
sParams += "%s=%s" % (k, v)
return sParams
| Python |
import pygame, sys, math
class Glass():
def __init__(self, speed = [2,2], size = [100,100], pos = (0,0)):
"""
self.images = []
for image in images:
newimage = pygame.image.load(image)
newimage = pygame.transform.scale(newimage, size)
self.images += [newimage]
self.frame = 50
self.maxFrame = len(self.images)-1
self.waitCount = 0
self.waitMax = 10
self.image = self.images[self.frame]
"""
self.image = pygame.image.load("Resources/Glass/glass.png")
self.size = size
self.enlargedSize = [size[0]*3, size[1]]
self.image = pygame.transform.scale(self.image, self.size)
self.rect = self.image.get_rect()
self.maxSpeedx = speed[0]
self.maxSpeedy = speed[1]
self.speedx = 0
self.speedy = 0
self.speed = [self.speedx, self.speedy]
self.radius = self.rect.width/2
self.place(pos)
self.bigTimerMax = 60*10
self.bigTimer = 0
def place(self, pos):
self.rect.center = pos
def direction(self, dir):
if dir == "right":
self.speedx = self.maxSpeedx
if dir == "stop right":
self.speedx = 0
if dir == "left":
self.speedx = -self.maxSpeedx
if dir == "stop left":
self.speedx = 0
if dir == "up":
self.speedy = -self.maxSpeedy
if dir == "stop up":
self.speedy = 0
if dir == "down":
self.speedy = self.maxSpeedy
if dir == "stop down":
self.speedy = 0
def update(self):
self.move()
#self.animate()
if self.bigTimer > 1:
self.bigTimer -= 1
elif self.bigTimer == 1:
self.bigTimer = 0
self.image = pygame.transform.scale(self.image, self.size)
self.rect = self.image.get_rect(center = self.rect.center)
def animate(self):
if self.waitCount < self.waitMax:
self.waitCount += 1
else:
self.waitCount = 0
if self.frame < self.maxFrame:
self.frame += 1
else:
self.frame = 0
self.image = self.images[self.frame]
def move(self):
self.speed = [self.speedx, self.speedy]
self.rect = self.rect.move(self.speed)
def collideWall(self, width, height):
if self.rect.left < -self.rect.width:
self.rect.center = [width, self.rect.center[1]]
elif self.rect.right > width +self.rect.width:
self.rect.center = [0, self.rect.center[1]]
def collideBall(self, other):
if self.rect.right > other.rect.left and self.rect.left < other.rect.right:
if self.rect.bottom > other.rect.top and self.rect.top < other.rect.bottom:
if self.radius + other.radius > self.distanceToPoint(other.rect.center):
other.living = False
return True
return False
def collidePowerup(self, other):
if self.rect.right > other.rect.left and self.rect.left < other.rect.right:
if self.rect.bottom > other.rect.top and self.rect.top < other.rect.bottom:
if self.radius + other.radius > self.distanceToPoint(other.rect.center):
other.living = False
if other.type == "Enlarge":
self.image = pygame.transform.scale(self.image, self.enlargedSize)
self.bigTimer = self.bigTimerMax
self.rect = self.image.get_rect(center = self.rect.center)
def distanceToPoint(self, pt):
x1 = self.rect.center[0]
y1 = self.rect.center[1]
x2 = pt[0]
y2 = pt[1]
return math.sqrt(((x2-x1)**2)+((y2-y1)**2))
| Python |
import pygame, sys, math
class Enlarge():
def __init__(self, speed = [2,2], pos = (0,0)):
self.type = "Enlarge"
self.image = pygame.image.load("Resources/Cow/U.png")
self.rect = self.image.get_rect()
self.radius = self.rect.width/2
self.place(pos)
self.speedx = speed[0]
self.speedy = speed[1]
self.speed = [self.speedx, self.speedy]
self.living = True
def place(self, pos):
self.rect.center = pos
def update(self):
self.move()
def move(self):
self.speed = [self.speedx, self.speedy]
self.rect = self.rect.move(self.speed)
def collideWall(self, width, height):
if self.rect.left < 0 or self.rect.right > width:
self.speedx = -self.speedx
if self.rect.bottom > height:
self.living = False
return True
return False | Python |
import pygame, sys, math
class Ball():
def __init__(self, image, speed = [2,2], size = [100,100], pos = (0,0)):
self.image = pygame.image.load(image)
self.image = pygame.transform.scale(self.image, size)
self.rect = self.image.get_rect()
self.speedx = speed[0]
self.speedy = speed[1]
self.speed = [self.speedx, self.speedy]
self.radius = self.rect.width/2
self.place(pos)
self.living = True
def place(self, pos):
self.rect.center = pos
def update(self):
self.move()
def move(self):
self.speed = [self.speedx, self.speedy]
self.rect = self.rect.move(self.speed)
def collideWall(self, width, height):
if self.rect.left < 0 or self.rect.right > width:
self.speedx = -self.speedx
if self.rect.top < 0 or self.rect.bottom > height:
self.speedy = -self.speedy
def collideBall(self, other):
if self.rect.right > other.rect.left and self.rect.left < other.rect.right:
if self.rect.bottom > other.rect.top and self.rect.top < other.rect.bottom:
if self.radius + other.radius > self.distanceToPoint(other.rect.center):
if self.rect.center[0] < other.rect.center[0]: #self left of other
if self.speedx > 0: #moving right
self.speedx = -self.speedx
if other.speedx < 0: #moving left
other.speedx = -other.speedx
if self.rect.center[0] > other.rect.center[0]: #self right of other
if self.speedx < 0: #moving left
self.speedx = -self.speedx
if other.speedx > 0: #moving right
other.speedx = -other.speedx
if self.rect.center[1] < other.rect.center[1]: #self above other
if self.speedy > 0: #moving down
self.speedy = -self.speedy
if other.speedy < 0: #moving up
other.speedy = -other.speedy
if self.rect.center[1] > other.rect.center[1]:#self below other
if self.speedy < 0: #moving up
self.speedy = -self.speedy
if other.speedy > 0: #moving down
other.speedy = -other.speedy
def distanceToPoint(self, pt):
x1 = self.rect.center[0]
y1 = self.rect.center[1]
x2 = pt[0]
y2 = pt[1]
return math.sqrt(((x2-x1)**2)+((y2-y1)**2))
| Python |
import pygame, sys, math, random
pygame.init()
from Ball import Ball
from PlayerBall import PlayerBall
clock = pygame.time.Clock()
width = 640
height = 480
size = width, height
screen = pygame.display.set_mode(size)
bgImage = pygame.image.load("rsc/bg/startbg.png")
bgRect = bgImage.get_rect()
bgColor = r,g,b = 0,0,0
ballp = PlayerBall(["rsc/player/playerBall1.png",
"rsc/player/playerBall2.png",
"rsc/player/playerBall3.png"], [3,3], [50,50], [width/2,height/2])
bsize = random.randint(25, 150)
balls = [Ball("rsc/enemy/ball.png",
[random.randint(-5,5), random.randint(-5,5)],
[bsize, bsize],
[random.randint(75, width-75), random.randint(75, height-75)])]
start = False
while True:
while not start:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_RETURN:
start = True
screen.blit(bgImage, bgRect)
pygame.display.flip()
clock.tick(60)
bgImage = pygame.image.load("rsc/bg/mainbg.png")
level = 1
while start:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_d or event.key == pygame.K_RIGHT:
ballp.direction("right")
if event.key == pygame.K_a or event.key == pygame.K_LEFT:
ballp.direction("left")
if event.key == pygame.K_w or event.key == pygame.K_UP:
ballp.direction("up")
if event.key == pygame.K_s or event.key == pygame.K_DOWN:
ballp.direction("down")
if event.type == pygame.KEYUP:
if event.key == pygame.K_d or event.key == pygame.K_RIGHT:
ballp.direction("stop right")
if event.key == pygame.K_a or event.key == pygame.K_LEFT:
ballp.direction("stop left")
if event.key == pygame.K_w or event.key == pygame.K_UP:
ballp.direction("stop up")
if event.key == pygame.K_s or event.key == pygame.K_DOWN:
ballp.direction("stop down")
for ball in balls:
ball.update()
ballp.update()
for ball in balls:
ball.collideWall(width, height)
ballp.collideWall(width, height)
if len(balls) > 1:
for first in range(len(balls)-1):
for second in range(first+1,len(balls)):
balls[first].collideBall(balls[second])
for ball in balls:
ballp.collideBall(ball)
for ball in balls:
if not ball.living:
balls.remove(ball)
if len(balls) == 0:
level += 1
for i in range(level):
print i
bsize = random.randint(25, 150)
balls += [Ball("rsc/enemy/ball.png",
[random.randint(-5,5), random.randint(-5,5)],
[bsize, bsize],
[random.randint(75, width-75), random.randint(75, height-75)])]
screen.blit(bgImage, bgRect)
screen.blit(ballp.image, ballp.rect)
for ball in balls:
screen.blit(ball.image, ball.rect)
pygame.display.flip()
clock.tick(60)
| Python |
import pygame, sys, math
class PlayerBall():
def __init__(self, images, speed = [2,2], size = [100,100], pos = (0,0)):
self.images = []
for image in images:
newimage = pygame.image.load(image)
newimage = pygame.transform.scale(newimage, size)
self.images += [newimage]
self.frame = 0
self.maxFrame = len(self.images)-1
self.waitCount = 0
self.waitMax = 10
self.image = self.images[self.frame]
self.rect = self.image.get_rect()
self.maxSpeedx = speed[0]
self.maxSpeedy = speed[1]
self.speedx = 0
self.speedy = 0
self.speed = [self.speedx, self.speedy]
self.radius = self.rect.width/2
self.place(pos)
def place(self, pos):
self.rect.center = pos
def direction(self, dir):
if dir == "right":
self.speedx = self.maxSpeedx
if dir == "stop right":
self.speedx = 0
if dir == "left":
self.speedx = -self.maxSpeedx
if dir == "stop left":
self.speedx = 0
if dir == "up":
self.speedy = -self.maxSpeedy
if dir == "stop up":
self.speedy = 0
if dir == "down":
self.speedy = self.maxSpeedy
if dir == "stop down":
self.speedy = 0
def update(self):
self.move()
self.animate()
def animate(self):
if self.waitCount < self.waitMax:
self.waitCount += 1
else:
self.waitCount = 0
if self.frame < self.maxFrame:
self.frame += 1
else:
self.frame = 0
self.image = self.images[self.frame]
def move(self):
self.speed = [self.speedx, self.speedy]
self.rect = self.rect.move(self.speed)
def collideWall(self, width, height):
if self.rect.left < 0 or self.rect.right > width:
self.speedx = 0
if self.rect.top < 0 or self.rect.bottom > height:
self.speedy = 0
def collideBall(self, other):
if self.rect.right > other.rect.left and self.rect.left < other.rect.right:
if self.rect.bottom > other.rect.top and self.rect.top < other.rect.bottom:
if self.radius + other.radius > self.distanceToPoint(other.rect.center):
other.living = False
if self.rect.center[0] < other.rect.center[0]: #self left of other
if other.speedx < 0: #moving left
other.speedx = -other.speedx
if self.rect.center[0] > other.rect.center[0]: #self right of other
if other.speedx > 0: #moving right
other.speedx = -other.speedx
if self.rect.center[1] < other.rect.center[1]: #self above other
if other.speedy < 0: #moving up
other.speedy = -other.speedy
if self.rect.center[1] > other.rect.center[1]:#self below other
if other.speedy > 0: #moving down
other.speedy = -other.speedy
def distanceToPoint(self, pt):
x1 = self.rect.center[0]
y1 = self.rect.center[1]
x2 = pt[0]
y2 = pt[1]
return math.sqrt(((x2-x1)**2)+((y2-y1)**2))
| Python |
import pygame, sys, math
class Milk():
def __init__(self, speed = [2,2], size = [100,100], pos = (0,0)):
self.image = pygame.image.load("Resources/Milk/MILK3.png")
self.image = pygame.transform.scale(self.image, size)
self.rect = self.image.get_rect()
self.speedx = speed[0]
self.speedy = speed[1]
self.speed = [self.speedx, self.speedy]
self.radius = self.rect.width/2
self.place(pos)
self.living = True
def place(self, pos):
self.rect.center = pos
def update(self):
self.move()
def move(self):
self.speed = [self.speedx, self.speedy]
self.rect = self.rect.move(self.speed)
def collideWall(self, width, height):
if self.rect.left < 0 or self.rect.right > width:
self.speedx = -self.speedx
if self.rect.bottom > height:
self.living = False
return True
return False
def distanceToPoint(self, pt):
x1 = self.rect.center[0]
y1 = self.rect.center[1]
x2 = pt[0]
y2 = pt[1]
return math.sqrt(((x2-x1)**2)+((y2-y1)**2))
| Python |
import pygame, sys, math, random
pygame.init()
from Ball import Ball
from PlayerBall import PlayerBall
clock = pygame.time.Clock()
width = 640
height = 480
size = width, height
screen = pygame.display.set_mode(size)
bgImage = pygame.image.load("rsc/bg/startbg.png")
bgRect = bgImage.get_rect()
bgColor = r,g,b = 0,0,0
ballp = PlayerBall(["rsc/player/playerBall1.png",
"rsc/player/playerBall2.png",
"rsc/player/playerBall3.png"], [3,3], [50,50], [width/2,height/2])
bsize = random.randint(25, 150)
balls = [Ball("rsc/enemy/ball.png",
[random.randint(-5,5), random.randint(-5,5)],
[bsize, bsize],
[random.randint(75, width-75), random.randint(75, height-75)])]
start = False
while True:
while not start:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_RETURN:
start = True
screen.blit(bgImage, bgRect)
pygame.display.flip()
clock.tick(60)
bgImage = pygame.image.load("rsc/bg/mainbg.png")
level = 1
while start:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_d or event.key == pygame.K_RIGHT:
ballp.direction("right")
if event.key == pygame.K_a or event.key == pygame.K_LEFT:
ballp.direction("left")
if event.key == pygame.K_w or event.key == pygame.K_UP:
ballp.direction("up")
if event.key == pygame.K_s or event.key == pygame.K_DOWN:
ballp.direction("down")
if event.type == pygame.KEYUP:
if event.key == pygame.K_d or event.key == pygame.K_RIGHT:
ballp.direction("stop right")
if event.key == pygame.K_a or event.key == pygame.K_LEFT:
ballp.direction("stop left")
if event.key == pygame.K_w or event.key == pygame.K_UP:
ballp.direction("stop up")
if event.key == pygame.K_s or event.key == pygame.K_DOWN:
ballp.direction("stop down")
for ball in balls:
ball.update()
ballp.update()
for ball in balls:
ball.collideWall(width, height)
ballp.collideWall(width, height)
if len(balls) > 1:
for first in range(len(balls)-1):
for second in range(first+1,len(balls)):
balls[first].collideBall(balls[second])
for ball in balls:
ballp.collideBall(ball)
for ball in balls:
if not ball.living:
balls.remove(ball)
if len(balls) == 0:
level += 1
for i in range(level):
print i
bsize = random.randint(25, 150)
balls += [Ball("rsc/enemy/ball.png",
[random.randint(-5,5), random.randint(-5,5)],
[bsize, bsize],
[random.randint(75, width-75), random.randint(75, height-75)])]
screen.blit(bgImage, bgRect)
screen.blit(ballp.image, ballp.rect)
for ball in balls:
screen.blit(ball.image, ball.rect)
pygame.display.flip()
clock.tick(60)
| Python |
import pygame, os, sys, math
from pygame.locals import *
pygame.init()
#From https://code.google.com/p/pong-drew-liam-nate/source/browse/Scoreboard.py
class ScoreBoard():
def __init__(self, pos = (0,0)):
self.baseimage = pygame.image.load("Resources/scoreboard.png")
self.image = self.baseimage.copy()
self.rect = self.image.get_rect()
self.place(pos)
self.glassScore = 0
self.missGlassScore = 0
font = pygame.font.Font(None, 48)
gtext = font.render(str(self.glassScore), 1, (255, 50, 0))
gtextpos = (35,75)
self.image.blit(gtext, gtextpos)
mtext = font.render(str(self.missGlassScore), 1, (255, 50, 0))
mtextpos = (150,75)
self.image.blit(mtext, mtextpos)
def scoreInGlass(self):
self.glassScore += 1
font = pygame.font.Font(None, 48)
self.image = self.baseimage.copy()
gtext = font.render(str(self.glassScore), 1, (255, 50, 0))
gtextpos = (35,75)
self.image.blit(gtext, gtextpos)
mtext = font.render(str(self.missGlassScore), 1, (255, 50, 0))
mtextpos = (150,75)
self.image.blit(mtext, mtextpos)
def scoreOutGlass(self):
self.missGlassScore += 1
font = pygame.font.Font(None, 48)
self.image = self.baseimage.copy()
gtext = font.render(str(self.glassScore), 1, (255, 50, 0))
gtextpos = (35,75)
self.image.blit(gtext, gtextpos)
mtext = font.render(str(self.missGlassScore), 1, (255, 50, 0))
mtextpos = (150,75)
self.image.blit(mtext, mtextpos)
def place(self, pt):
self.rect.center = pt
| Python |
import pygame, sys, math, random
pygame.init()
pygame.joystick.init()
joysticks = [pygame.joystick.Joystick(x) for x in range(pygame.joystick.get_count())]
for joystick in joysticks:
joystick.init()
print joystick.get_name()
from Milk import Milk
from Glass import Glass
from ScoreBoard import ScoreBoard
from Enlarge import Enlarge
clock = pygame.time.Clock()
width = 1000
height = 700
size = width, height
screen = pygame.display.set_mode(size)
startImage = pygame.image.load("Resources/Cow/cow.png")
startImage = pygame.transform.scale(startImage, size)
startRect = startImage.get_rect()
bgImage = pygame.image.load("Resources/grass.png")
bgRect = bgImage.get_rect()
score = ScoreBoard([width-100, 75])
bgColor = r,g,b = 0,0,0
glass = Glass([10,5], [25,50], [int(width/2),(height*3/3.5)])
drops = []
powerUps = []
start = False
while True:
while not start:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_RETURN:
start = True
if event.type == pygame.JOYBUTTONDOWN:
print event.button
if event.button == 0:
start = True
screen.blit(startImage,startRect)
pygame.display.flip()
clock.tick(60)
bgImage = pygame.image.load("Resources/grass.png")
level =1000000000000000000000
while start:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_d or event.key == pygame.K_RIGHT:
glass.direction("right")
if event.key == pygame.K_a or event.key == pygame.K_LEFT:
glass.direction("left")
if event.type == pygame.KEYUP:
if event.key == pygame.K_d or event.key == pygame.K_RIGHT:
glass.direction("stop right")
if event.key == pygame.K_a or event.key == pygame.K_LEFT:
glass.direction("stop left")
if joysticks >= 1:
if event.type == pygame.JOYAXISMOTION:
print event.joy, event.axis, event.value
if random.randint(0,800) == 0:
powerUps += [Enlarge([random.randint(-5,5), random.randint(1,5)],
[random.randint(25, width-25), 0])]
if random.randint(0,75) == 0:
drops += [Milk([random.randint(-5,5), random.randint(1,5)],
[25, 50],
[random.randint(75, width-75), 0])]
for milk in drops:
milk.update()
for powerUp in powerUps:
powerUp.update()
powerUp.collideWall(width,height)
glass.collidePowerup(powerUp)
glass.update()
for milk in drops:
if milk.collideWall(width, height):
score.scoreOutGlass()
glass.collideWall(width, height)
for milk in drops:
if glass.collideBall(milk):
score.scoreInGlass()
for milk in drops:
if not milk.living:
drops.remove(milk)
for powerUp in powerUps:
if not powerUp.living:
powerUps.remove(powerUp)
screen.blit(bgImage, bgRect)
screen.blit(glass.image, glass.rect)
for milk in drops:
screen.blit(milk.image, milk.rect)
for powerUp in powerUps:
screen.blit(powerUp.image, powerUp.rect)
screen.blit(score.image, score.rect)
pygame.display.flip()
clock.tick(60)
| Python |
__author__ = 'Binary_Ninja'
from tkinter import *
import tkinter.messagebox
import Board
from BoardSquare import *
class GUI(Frame):
def __init__(self, master=NONE):
Frame.__init__(self, master)
self.__init_color_dict()
self.board = Board.Board()
self.create_labels()
self.__update_values()
self.__update_label_color()
def __create_label(self, square):
label = Label(self, height=4, width=8, bd=2, relief=RAISED, font="bold")
label.grid(column=square.x, row=square.y, sticky=N + S + E + W)
self.__labels[square] = label
def create_labels(self):
self.__labels = {}
for square in self.board.get_square_list():
self.__create_label(self.board.get_square(square.x, square.y))
def move_board(self, x, y):
self.board.move(x, y)
self.__update_values()
self.__update_label_color()
if self.board.game_over:
self.ask_play_again()
def ask_play_again(self):
if tkinter.messagebox.askyesno("Game Over", "Game Over! \n Play Again?"):
self.board = Board.Board()
self.create_labels()
else:
sys.exit()
def __update_label_color(self):
for square in self.board.get_square_list():
self.__labels[square]["bg"] = self.__color_dict[square.value]
def __update_values(self):
for square in self.board.get_square_list():
self.__labels[square]['text'] = square.value
def __init_color_dict(self):
self.__color_dict = {}
self.__color_dict[1] = "thistle"
self.__color_dict[2] = "misty rose"
self.__color_dict[4] = "peach puff"
self.__color_dict[8] = "palegreen1"
self.__color_dict[16] = "slategray2"
self.__color_dict[32] = "plum1"
self.__color_dict[64] = "indianred1"
self.__color_dict[128] = "firebrick3"
self.__color_dict[256] = "darkorchid2"
self.__color_dict[512] = "hotpink2"
self.__color_dict[1024] = "cornflowerblue"
self.__color_dict[2048] = "red4"
self.__color_dict[4096] = "forest green"
self.__color_dict[8192] = "RoyalBlue3"
self.__color_dict[BoardSquare.empty_value] = "black"
if __name__ == '__main__':
root = Tk()
gui = GUI(root)
gui.grid(sticky=N + S + E + W)
root.bind("<Up>", lambda event: gui.move_board(0, -1))
root.bind("<Down>", lambda event: gui.move_board(0, 1))
root.bind("<Right>", lambda event: gui.move_board(1, 0))
root.bind("<Left>", lambda event: gui.move_board(-1, 0))
root.columnconfigure(0, weight=1)
root.mainloop()
| Python |
__author__ = 'Binary Ninja'
from BoardSquare import *
import random
class Board:
size = 4
def __init__(self):
self.__squares = self.__generate_board_squares()
self.__set_empty_square()
self.game_over = False
def __generate_board_squares(self):
squares = []
for x in range(4):
for y in range(4):
squares.append(BoardSquare(x, y, BoardSquare.empty_value))
return squares
def __set_empty_square(self):
random_square = self.__get_random_square()
random_square.value = self.__get_random_value()
def __get_random_square(self):
empty_squares = [square for square in self.__squares if square.value == BoardSquare.empty_value]
return random.choice(empty_squares)
def __get_random_value(self):
return random.randrange(1, 3)
def move(self, directionX, directionY):
self.__move_squares(directionX, directionY)
self.__check_game_over()
if not self.game_over and self.__changed:
self.__set_empty_square()
def __move_squares(self, directionX, directionY):
self.__changed = False
self.__shift_squares(directionX, directionY)
self.__combine_squares(directionX, directionY)
# need to re-shift if open space left by combining
self.__shift_squares(directionX, directionY)
def __shift_squares(self, directionX, directionY):
for i in range(Board.size):
non_empty_squares = [square for square in self.__squares if square.value != BoardSquare.empty_value]
for square in non_empty_squares:
self.__try_shift_squares(square, directionX, directionY)
def __try_shift_squares(self, square, directionX, directionY):
adjacent_square = self.__get_adjacent_square(square, directionX, directionY)
if adjacent_square is not None and adjacent_square.value == BoardSquare.empty_value:
self.__shift_square(adjacent_square, square)
def __shift_square(self, adjacent_square, square):
adjacent_square.value, square.value = square.value, BoardSquare.empty_value
self.__changed = True
def __combine_squares(self, directionX, directionY):
non_empty_squares = [square for square in self.__squares if square.value != BoardSquare.empty_value]
#sort so that squares closer to wall moving towards combine first
self.__sort_squares(directionX, directionY, non_empty_squares)
for square in non_empty_squares:
self.__try_combine_squares(square, directionX, directionY)
def __sort_squares(self, directionX, directionY, non_empty_squares):
if directionX:
non_empty_squares.sort(key=lambda item: item.x * -directionX)
elif directionY:
non_empty_squares.sort(key=lambda item: item.y * -directionY)
def __try_combine_squares(self, square, directionX, directionY):
adjacent_square = self.__get_adjacent_square(square, directionX, directionY)
if adjacent_square is not None and adjacent_square.value == square.value:
self.__combine_square(adjacent_square, square)
def __combine_square(self, adjacent_square, square):
square.value = BoardSquare.empty_value
adjacent_square.value *= 2
self.__changed = True
def __get_adjacent_square(self, square, directionX, directionY):
coordinates = square.get_coordinates()
adjacent_coordinates = coordinates['x'] + directionX, coordinates['y'] + directionY
return self.get_square(adjacent_coordinates[0], adjacent_coordinates[1])
def __check_game_over(self):
if [square for square in self.__squares if square.value == BoardSquare.empty_value] == []:
self.game_over = True
else:
self.game_over = False
def get_square(self, x, y):
matching = [square for square in self.__squares if
square.get_coordinates()['x'] == x and square.get_coordinates()['y'] == y]
if matching:
return matching[0]
else:
return None
def get_square_list(self):
return self.__squares | Python |
__author__ = 'Binary Ninja'
class BoardSquare:
empty_value = -1
def __init__(self, x, y, value):
assert isinstance(value, int)
assert isinstance(x, int)
assert isinstance(y, int)
self.value = value
self.x = x
self.y = y
def get_coordinates(self):
return dict(x=self.x, y=self.y)
def set_coordinates(self, x, y):
self.x = x
self.y = y
def __str__(self):
return "x:" + str(self.x) + " y:" + str(self.y) + " value:" + str(self.value) | Python |
# -*- coding: UTF-8 -*-
# MISSING-DOCSTRING: pylint: disable=C0111
"""
Based on ``behave tutorial``
Feature: Fight or Flight (Natural Language)
In order to increase the ninja survival rate, #< Business goal
As a ninja commander #< Role
I want my ninjas to decide whether to take on an opponent #< Benefit
based on their skill levels
Scenario: Weaker opponent
Given the ninja has a third level black-belt
When attacked by a samurai
Then the ninja should engage the opponent
Scenario: Stronger opponent
Given the ninja has a third level black-belt
When attacked by Chuck Norris
Then the ninja should run for his life
"""
# @mark.domain_model
# ----------------------------------------------------------------------------
# PROBLEM DOMAIN:
# ----------------------------------------------------------------------------
class NinjaFight(object):
"""
Domain model for ninja fights.
"""
# pylint: disable=R0903
def __init__(self, with_ninja_level=None):
self.with_ninja_level = with_ninja_level
self.opponent = None
def decision(self):
"""
Business logic how a Ninja should react to increase his survival rate.
"""
assert self.with_ninja_level is not None
assert self.opponent is not None
if self.opponent == "Chuck Norris":
return "run for his life"
if "black-belt" in self.with_ninja_level:
return "engage the opponent"
else:
return "run for his life"
# @mark.steps
# ----------------------------------------------------------------------------
# STEPS:
# ----------------------------------------------------------------------------
from behave import given, when, then
from hamcrest import assert_that, equal_to, is_not
@given('the ninja has a {achievement_level}')
def step_the_ninja_has_a(context, achievement_level):
context.ninja_fight = NinjaFight(achievement_level)
@when('attacked by a {opponent_role}')
def step_attacked_by_a(context, opponent_role):
context.ninja_fight.opponent = opponent_role
@when('attacked by {opponent}')
def step_attacked_by(context, opponent):
context.ninja_fight.opponent = opponent
@then('the ninja should {reaction}')
def step_the_ninja_should(context, reaction):
assert_that(reaction, equal_to(context.ninja_fight.decision()))
# @mark.background_steps
# ----------------------------------------------------------------------------
# BACKGROUND-STEPS: Needed for tutorial09
# ----------------------------------------------------------------------------
@given('the ninja encounters another opponent')
def step_the_ninja_encounters_another_opponent(context):
"""
BACKGROUND steps are called at begin of each scenario before other steps.
"""
# -- SETUP/TEARDOWN:
if hasattr(context, "ninja_fight"):
# -- VERIFY: Double-call does not occur.
assert_that(context.ninja_fight, is_not(equal_to(None)))
context.ninja_fight = None
| Python |
"""
This is the "example" module.
The example module supplies one function, factorial(). For example,
>>> factorial(5)
120
"""
def factorial(n):
"""Return the factorial of n, an exact integer >= 0.
If the result is small enough to fit in an int, return an int.
Else return a long.
>>> [factorial(n) for n in range(6)]
[1, 1, 2, 6, 24, 120]
>>> [factorial(long(n)) for n in range(6)]
[1, 1, 2, 6, 24, 120]
>>> factorial(30)
265252859812191058636308480000000L
>>> factorial(30L)
265252859812191058636308480000000L
>>> factorial(-1)
Traceback (most recent call last):
...
ValueError: n must be >= 0
Factorials of floats are OK, but the float must be an exact integer:
>>> factorial(30.1)
Traceback (most recent call last):
...
ValueError: n must be exact integer
>>> factorial(30.0)
265252859812191058636308480000000L
It must also not be ridiculously large:
>>> factorial(1e100)
Traceback (most recent call last):
...
OverflowError: n too large
"""
import math
if not n >= 0:
raise ValueError("n must be >= 0")
if math.floor(n) != n:
raise ValueError("n must be exact integer")
if n+1 == n: # catch a value like 1e300
raise OverflowError("n too large")
result = 1
factor = 2
while factor <= n:
result *= factor
factor += 1
return result
if __name__ == "__main__":
import doctest
doctest.testmod()
| Python |
# @mark.steps
# ----------------------------------------------------------------------------
# STEPS:
# ----------------------------------------------------------------------------
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from behave import given, when, then
from hamcrest import assert_that, contains_string
HOME = "http://localhost:4567"
@given('user has been sign out')
def step_user_has_sign_out(context):
context.browser.get(HOME)
try:
logout_link = context.browser.find_element_by_link_text('Logout')
logout_link.click()
except NoSuchElementException:
pass
@when('I go to "{url}"')
def step_go_to(context, url):
context.browser.get(url)
@then('I should see main page html')
def step_see_main_page(context):
guest_name_label = 'Guestbook name:'
page_source = context.browser.page_source
assert_that(page_source, contains_string(guest_name_label))
elm = context.browser.find_element_by_id("submit")
elm.value = "Sign Guestbook"
elm = context.browser.find_element_by_id("switch")
elm.value = "switch"
@when('I sign "{content}"')
def setp_sign_content(context, content):
elm = context.browser.find_element_by_name("content")
elm.send_keys(content)
button = context.browser.find_element_by_id("submit")
button.click()
@when('I login as "{user}"')
def setp_login_as(context, user):
login_link = context.browser.find_element_by_link_text('Login')
login_link.click()
elm = context.browser.find_element_by_name("email")
elm.clear()
elm.send_keys(user)
elm = context.browser.find_element_by_id("submit-login")
elm.click()
wait = WebDriverWait(context.browser, 5)
wait.until(EC.presence_of_element_located((By.NAME, 'content')))
@then('I should see "{content}" signed by "{user}"')
def setp_see_content(context, content, user):
page_source = context.browser.page_source
assert_that(page_source, contains_string("<blockquote>%s</blockquote>" % content))
assert_that(page_source, contains_string(user))
| Python |
import os
import sys
import signal
import subprocess
from selenium import webdriver
def before_all(context):
# NOTE: you can change to whatever driver you want, I use Firefox as a demo
context.browser = webdriver.Firefox()
# start the app engine server
# make sure dev_appserver.py is in your PATH
if os.environ['SERVER_RUNNING'] != "True":
context.app_engine_proc = subprocess.Popen([
'dev_appserver.py',
'--clear_datastore=true',
'--port=4567', "%s/../" %
os.path.dirname(os.path.abspath(__file__))],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
line = context.app_engine_proc.stdout.readline()
count = 75
while ('Starting admin server' not in line) and (count > 0):
sys.stdout.write(line)
sys.stdout.write("count: %d\n" % count)
sys.stdout.flush()
line = context.app_engine_proc.stdout.readline()
count = count - 1
def after_all(context):
context.browser.quit()
if os.environ['SERVER_RUNNING'] != "True":
os.kill(context.app_engine_proc.pid, signal.SIGINT)
| Python |
#!/usr/bin/env python
import os
import urllib
from google.appengine.api import users
from google.appengine.ext import ndb
import jinja2
import webapp2
JINJA_ENVIRONMENT = jinja2.Environment(
loader=jinja2.FileSystemLoader(os.path.dirname(__file__)),
extensions=['jinja2.ext.autoescape'],
autoescape=True)
DEFAULT_GUESTBOOK_NAME = 'default_guestbook'
# We set a parent key on the 'Greetings' to ensure that they are all in the
# same entity group.
# Queries across the single entity group will be consistent.
# However, the write rate should be limited to ~1/second.
def guestbook_key(guestbook_name=DEFAULT_GUESTBOOK_NAME):
"""
Constructs a Datastore key for a Guestbook entity with guestbook_name.
"""
return ndb.Key('Guestbook', guestbook_name)
# Refactor get url link by user
def get_user_url(uri):
if users.get_current_user():
url = users.create_logout_url(uri)
url_linktext = 'Logout'
else:
url = users.create_login_url(uri)
url_linktext = 'Login'
return {
'url': url,
'url_linktext': url_linktext
}
class Greeting(ndb.Model):
"""
Models an individual Guestbook entry with author, content, and date.
You can create a Greeting:
>>> greeting = Greeting(parent=guestbook_key(), content='test content')
>>> greeting
Greeting(key=Key('Guestbook', 'default_guestbook', 'Greeting', None), content='test content')
>>> created_key = greeting.put()
You can query to select the greeting:
>>> greetings_query = Greeting.query(ancestor=guestbook_key())
>>> list(greetings_query.fetch(10)) # doctest: +ELLIPSIS
[Greeting(key=Key('Guestbook', 'default_guestbook', ...)]
To modify a greeting, change one of its properties and ``put()`` it again.
>>> greeting_2 = _[0]
>>> greeting_2.content = 'test 2'
>>> created_key_2 = greeting_2.put()
>>> greeting_2.content
u'test 2'
Verify that the key for the greeting doesn't change.
>>> bool(created_key == created_key_2)
True
"""
author = ndb.UserProperty()
content = ndb.StringProperty(indexed=False)
date = ndb.DateTimeProperty(auto_now_add=True)
class MainPage(webapp2.RequestHandler):
def get(self):
guestbook_name = self.request.get('guestbook_name',
DEFAULT_GUESTBOOK_NAME)
greetings_query = Greeting.query(
ancestor=guestbook_key(guestbook_name)).order(-Greeting.date)
greetings = greetings_query.fetch(10)
user_url = get_user_url(self.request.uri)
template_values = {
'greetings': greetings,
'guestbook_name': urllib.quote_plus(guestbook_name),
'url': user_url['url'],
'url_linktext': user_url['url_linktext'],
}
template = JINJA_ENVIRONMENT.get_template('index.html')
self.response.write(template.render(template_values))
class Guestbook(webapp2.RequestHandler):
def post(self):
# We set the same parent key on the 'Greeting' to ensure each Greeting
# is in the same entity group. Queries across the single entity group
# will be consistent. However, the write rate to a single entity group
# should be limited to ~1/second.
guestbook_name = self.request.get('guestbook_name',
DEFAULT_GUESTBOOK_NAME)
greeting = Greeting(parent=guestbook_key(guestbook_name))
if users.get_current_user():
greeting.author = users.get_current_user()
greeting.content = self.request.get('content')
greeting.put()
query_params = {'guestbook_name': guestbook_name}
self.redirect('/?' + urllib.urlencode(query_params))
def make_application(debug_to_set=True):
return webapp2.WSGIApplication([
('/', MainPage),
('/sign', Guestbook),
], debug=debug_to_set)
application = make_application(True)
| Python |
__author__ = 'wlee'
import Pycluster
import random
from collections import deque
import numpy
import math
checkins = open('Brightkite_totalCheckins.txt','rb')
kmlstatement=[]
geos=[]
geo_avgs=dict()
id=0
count = 0
valid_ids =[]
write_valid_ids = open('valid_ids2.txt','wb')
us_num = 0
def check_similarity(u):
lats = numpy.zeros(len(u))
longs = numpy.zeros(len(u))
if u!=0:
for i in range(len(u)):
lats[i] = u[i][0]
longs[i] = u[i][1]
similarity_lats = numpy.var(lats)
similarity_longs = numpy.var(longs)
if similarity_lats > 0.5:
return False
if similarity_longs > 0.5:
return False
return True
def calculate_mean(u):
lats = numpy.zeros(len(u))
longs = numpy.zeros(len(u))
if u!=0:
for i in range(len(u)):
lats[i] = u[i][0]
longs[i] = u[i][1]
return numpy.mean(lats),numpy.mean(longs)
def won_cluster(geos):
results =[]
index_queue = deque()
index_queue.append(0)
geo_locations = dict()
geo_locations[0]=geos
while len(index_queue):
current_id=index_queue.pop()
current_items= geo_locations[current_id]
info= Pycluster.kcluster(current_items,2)
index = info[0]
count = 0
left_list = []
right_list =[]
left_count = 0
right_count = 0
for geo_item in current_items:
if index[count] == 0:
left_list.append(geo_item)
left_count +=1
if index[count] == 1:
right_list.append(geo_item)
right_count +=1
count +=1
if check_similarity(left_list) == False:
index_queue.append(2*current_id +1)
geo_locations[2*current_id +1]=left_list
else:
l = calculate_mean(left_list)
results.append([l[0],l[1]])
if check_similarity(right_list) == False:
index_queue.append(2*current_id +2)
geo_locations[2*current_id +2]=right_list
else:
r = calculate_mean(right_list)
results.append([r[0],r[1]])
return results
for checkin in checkins:
parsed_info= checkin.split("\t")
if len(parsed_info)<3:
continue
if str(id) == str(parsed_info[0]):
if len(parsed_info[2])<3:
continue
lat = float(parsed_info[2])
lng = float(parsed_info[3])
if -124< float(lng) and -60>float(lng):
if 17< float(lat) and 49> float(lat):
geo = [parsed_info[2],parsed_info[3]]
geos.append(geo)
else:
lat = float(parsed_info[2])
lng = float(parsed_info[3])
count = 0
num_check = []
temp_geo=[]
if len(geos)>=2:
clustered_groups= won_cluster(geos)
if len(clustered_groups)<5:
for g in clustered_groups:
write_valid_ids.write(str(int(id))+"\t"+str(g[0])+"\t"+str(g[1])+"\n")
#print id,len(clustered_groups)
id = parsed_info[0]
if -124< float(lng) and -60>float(lng):
if 17< float(lat) and 49> float(lat):
geo = [parsed_info[2],parsed_info[3]]
geos = []
geos.append(geo)
print us_num
| Python |
'''
Created on Dec 7, 2011
@author: jeongjin
'''
import os
import random
#src_path = "./"
src_path = "/Users/jeongjin/Dropbox/224w/data/AgraphTestData/"
label_path = ""
label_file = None
feature_file_dct = {}
result_size = 500000
result_file_name = src_path+"data_"+str(result_size)+".csv"
for filename in os.listdir(src_path):
if "label" in filename :
label_path = src_path+filename
label_file = open(label_path,'r')
if "feature" in filename :
feature_name = filename.split('.')[0].split('_')[1]
feature_file_dct[feature_name] = open(src_path+filename,"r")
# get entire sets size
number_of_sets = int(os.popen("wc -l "+label_path).readlines()[0].split()[0])
# get result set row number list
rows = sorted(random.sample(range(0,number_of_sets),result_size))
result_file = open(result_file_name,'w')
# headline
headline = "node1,node2"
for feature_name in sorted(feature_file_dct.keys()):
headline+=","
headline+=feature_name
headline += ",label\n"
result_file.write(headline)
idx = 0
lines = {}
label_line = ""
while (len(rows)>0) :
if idx % 10000 == 0 : print idx
label_line = label_file.readline().strip()
for feature_name in sorted(feature_file_dct.keys()):
lines[feature_name] = feature_file_dct[feature_name].readline().strip()
if idx == rows[0] :
node1,node2,label = label_line.split('\t')
result_line=node1+','+node2
for feature_name in sorted(feature_file_dct.keys()):
result_line += (','+lines[feature_name].split('\t')[2])
if label == '0':
label = 'no'
else:
label = 'yes'
result_line += (','+label+'\n')
result_file.write(result_line)
rows.pop(0)
idx+=1
result_file.close() | Python |
import re
__author__ = 'N Tech2'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "stringsym", "lessthan", "greaterthan",
"number", "plus", "minus", "endsym" ,"elsesym","declaresym","forsym",
"andsym","elifsym","continuesym","nonesym","breaksym","coment","programsym",
"leftsquarebrace","rightsquarebrace","lessthanequal","colon","comma",
"dot"," greaterthanequal","jumpeq","jumpne","andop","orop","readint",
"writeint","readch","writech","mpy","div","quote ","stringsym","arraysym",
"readsym","endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, equals,stringsym, lessthan, greaterthan,\
number, plus, minus,elsesym,declaresym,forsym,andsym,elifsym,\
continuesym,breaksym,nonesym,comment,leftsquarebrace,rightsquarebrace,\
lessthanequal,colon,comma,dot, greaterthanequal,jumpeq,jumpne,\
andop,orop,endfile,readint,writeint,readch,writech,\
mpy,div,quote,stringsym,arraysym,readsym,programsym,\
endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 4 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym)
addToSymTbl('program', programsym)# VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech)
addToSymTbl('read', readsym)#READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '<', lessthan)
addToSymTbl( '>', greaterthan)
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( ';', semicolon)
addToSymTbl( 'break', breaksym)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( '[', leftsquarebrace)
addToSymTbl( ']', rightsquarebrace)
addToSymTbl( ':', colon)
addToSymTbl( ',', comma)
addToSymTbl( '.', dot)
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '&&', andop)
addToSymTbl( '||', orop)
addToSymTbl( '"',quote)
addToSymTbl( EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
x=0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["=", "{", "}", "(", ")", "[","]", "+", "-","*", "/", ";","!", "==",",","<=",">=",":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value = int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch =='#':
comment = ""
str1 =""
ch = getch()
while(ch != '.'):
str1 = str(str1) + str(ch)
ch = getch()
ch = ungetch()
comment1 = "#" + str(str1)
token = symbol(comment1, comment, value = str(comment1)) # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch =='"':
a =""
ch = getch()
while ch != '"':
a = str(a) + str(ch)
ch = getch()
ch = getch()
token = symbol(a, stringsym, value = str(a)) # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch =="<":
ch = getch()
if ch == "=":
lt =""
lt ="<" + "="
token = symbol(lt, lessthanequal, value = str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value = "<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch ==">":
gt =""
ch = getch()
if ch == "=":
gt =">" + "="
ch = getch()
token = symbol(gt, lessthanequal, value = str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value = ">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | - | * | /) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number:
getoken()
if token.token == rightsquarebrace:
getoken()
else:
error("] expected")
else: error("number expected")
else:
if ta != 0:
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr +1
if token.token == assignsym:
getoken()
expression()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
#===============================================================================
global array;
getoken()
while (token.token == number):
print("#array address")
emit(0, "constant", token.value)
emit(0, "constant", token.value)
emit(0, "constant", token.value)
emit(0, "constant", token.value)
emit(0, "constant", 4)
getoken();
if token.token == rightsquarebrace:getoken();
if token.token == assignsym:getoken();
while( token.token == number):
print("#store value")
emit(0, "load", 10)
emit(0, "add", 12)
emit(0, "store", 1)
emit(0, "loadv", token.value)
emit(0, "store-ind", 0)
getoken();
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
print("\n#*** Compilation finished ***\n")
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression>
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == arraysym:
array()
if token.token == printsym:
printStmt()
if token.token == number:
expression()
elif token.token == leftbracket:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == idsym:
assignStmt()
elif token.token == stringsym:
# emit(0, "call",40)
getoken()
elif token.token == assignsym:
getoken()
elif token.token == comment:
getoken()
elif token.token == breaksym:
getoken()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == readint:
readIntStmt()
elif token.token == readch:
readChStmt()
elif token.token == writeint:
writeIntStmt()
elif token.token ==lessthanequal:
getoken()
elif token.token ==greaterthanequal:
getoken()
elif token.token == writech:
writeChStmt()
elif token.token == rightbracket:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken()
# skip "print"
expression()
emit(0, "writeint", 0)
stmt()
# if token.token == rightbrace:
# print("\n*** Compilation finished ***\n")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == jumpne:
srcfile.read()
getoken()
elif token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
array()
elif token.token == jumpeq:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token ==lessthanequal:
getoken()
elif token.token ==greaterthanequal:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
emit(0, "compare",60)
expression()
stmt()
if token.token == rightbrace: getoken()
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
emit(0, "store", 888)
stmt()
emit(0, "return",0)
if token.token == rightbrace: getoken()
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
getoken()
emit(0, "compare",50)
expression()
stmt()
emit(0, "increment", 1)
emit(0, "jumpi", 14)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> }
"""
# while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpne or token.token == jumpeq:
# op = token # remember +/-
# getoken() # skip past +/-
# emit(0, "store", 999) # Save current result
# factor()
#
#
# if token.token == leftbracket:
# getoken()
#1st number
if token.token == leftbracket: getoken()
factor()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpne or token.token == jumpeq or token.token == lessthanequal or token.token == greaterthanequal:
op = token # remember +/-
getoken()
# skip past +/-
emit(0, "store", 997)
# Save current result
if token.token == leftbracket:
getoken()
factor()
if token.token == plus:
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 5)
elif token.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998) # Leaves result in Acc
emit(0, "store", 6)
if token.token == rightbracket:getoken()
if op.token == plus:
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 5)
if op.token == leftbracket:getoken()
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998)
emit(0, "store", 6)
if token.token == semicolon:
getoken()
elif op.token == mpy:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 7)
elif op.token == div:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 8)
if token.token == plus:
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 5)
elif token.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998)
emit(0, "store", 6)
elif op.token == mpy:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 7)
elif op.token == div:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 8)
elif op.token == lessthan:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumplt", 80)
emit(0, "loadv", 0)
emit(0, "store", 9)
elif op.token == greaterthan:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpgt", 81)
emit(0, "loadv", 0)
emit(0, "store", 10)
elif op.token == lessthanequal:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumplt", 80)
emit(0, "loadv", 0)
emit(0, "store", 9)
elif op.token == greaterthanequal:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpgt", 81)
emit(0, "loadv", 0)
emit(0, "store", 10)
#not working
elif op.token == jumpne:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpne", 82)
emit(0, "loadv", 0)
emit(0, "store", 11)
elif op.token == jumpeq:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpeq", 83)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= identifier | number
"""
if token.token == plus:
getoken()
#- (unary)
elif token.token == minus:
getoken()
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == stringsym:
# emit(0, "call",40)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
# emit(0, "store", 1)
getoken()
elif token.token == comment:
getoken()
# print "token",tokenNames[token.token]
# elif token.token == assignsym:
# getoken()
elif token.token == leftbracket:
getoken()
# print "this is token",tokenNames[token.token]
elif token.token == leftsquarebrace: getoken()
elif token.token == rightbracket:
getoken()
elif token.token == breaksym:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
else:
error("Start Of Factor Expected")
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
# else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
# else: error("Program name expected")
if token.token == semicolon:
getoken()
# else: error("Semicolon expected")
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
stmtList()
if token.token ==rightbrace:
print "***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("comment.txt") as line1:
out1file = open('output.obj','w')
line = line1.read()
out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
y = str(token)
out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
emit(0, "load", 0)
"""
emit(0, "constant", "'A'") #need in break,comment,exitloop,writer-if-read-write-ch program
emit(0, "constant", 10)
emit(0, "constant", 12)
emit(0, "constant", 25)
emit(0, "constant", -10)
"""
main()
getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
__author__ = 'N Tech2'
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
i = 100
j = 100
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" % \
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while(ch != " "):
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 =counterafter
i=counterafter
if counterafter != 100:
counterafter=counterafter+4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
# emit(i+2, "writech", '')
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, lessthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | - | * | /) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number:
# emit(0, "loadv",token.value)
# emit(0, "store", token.value+300)
array()
if token.token == rightsquarebrace:
getoken()
else:
error("var error: ] expected - 1")
else:
getoken()
elif tn == "i":
# print("#The array name is " + str(tn)+"\n")
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("%c already declared\n", tn);
#assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
expression()
if token.token == rightbracket:
getoken()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
#===============================================================================
global array;
# getoken()
while (token.token == number):
print("#array address")
emit(0, "store", token.value + 400)
print("#array value " +str(token.value))
getoken();
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == dosym:
doStmt()
elif token.token == returnsym:
expression()
elif token.token == continuesym:
continueStmt()
elif token.token == leftbracket:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == assignsym:
getoken()
elif token.token == commentstr:
# print(str(token.name))
getoken()
elif token.token == breaksym:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == rightbrace:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
getoken()# skip "print"
stmt()
emit(0, "load", 501)
expression()
emit(0, "writeint", 502)
emit(0, "writeint", 7)
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
# if counterafter != 100:
# emit(0,"loadv",counterafter )
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech",0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "store", 502)
getoken()
# writeStmt()
#===============================================================================
def writeStmt():
#===============================================================================
""" <writeStmt> ::= read <vars>"""
getoken()
# emit(0,"load", 501)
# emit(0, "writeint", 501)
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
print("#IFSmt")
getoken() # skip "if"
expression()
stmt()
expression()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#ElseSmt")
emit(200, "jump", 47) # less than 2 go to else
getoken()
stmt()
expression()
# emit(314, "jump", 22)
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
emit(0, "store", 502)
getoken()
expression() # num>0
# emit(0, "jump", 22)
stmt()
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> }
"""
if token.token == leftbracket: getoken()
factor()
## 1st start==============================================================================
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
factor()
if op.token == plus:
emit(0, "add", 502)
emit(0, "store", 502)
# emit(0, "jump", 22)
# if op.token == leftbracket:getoken()
if op.token == minus:
## 2nd start==============================================================================
if token.token == plus or token.token == minus or token.token == mpy or token.token == div:
op2 = token# remember *
getoken() # skip past *
factor()
if op2.token == plus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "add", 203)
emit(0, "store", 500)
if op2.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 201)
emit(0, "store", 501)
if op2.token == mpy:
## 3rd start==============================================================================
while token.token == plus or token.token == minus or token.token == mpy or token.token == div:
op3 = token# remember *
getoken() # skip past *
factor()
if op3.token == plus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "add", 203)
emit(0, "store", 500)
if op3.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 210)
emit(0, "store", 501)
if op3.token == mpy:
factor()
## 4th start==============================================================================
while token.token == plus or token.token == minus or token.token == mpy or token.token == div:
if token.token == plus:
op4 = token# remember +
getoken() # skip past +
factor()
if op4.token == plus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "add", 203)
emit(0, "store", 500)
if token.token == minus:
op4 = token# remember -
getoken() # skip past -
factor()
if op4.token == minus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "subtract", 203)
emit(0, "store", 500)
if token.token == mpy:
op4 = token
getoken()
factor()
if op4.token == mpy: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "mpy", 203)
emit(0, "store", 500)
if token.token == div:
op4 = token
getoken()
factor()
if op4.token == div: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "div", 203)
emit(0, "store", 500)
## 4th end==============================================================================
emit(0, "mpy", 205)
emit(0, "store", 501)
## 3rd end==============================================================================
emit(0, "mpy", 210)
emit(0, "store", 501)
## 2nd end==============================================================================
else:
emit(0, "load", 501)
emit(0, "subtract", 201)
emit(0, "store", 501)
emit(0, "jump", 24)
elif op.token == mpy:
emit(0, "load", 206)
emit(0, "mpy", 7)
emit(0, "store", 502)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 590)
emit(0, "subtract", 201)
emit(0, "store", 501)
emit(0, "writeInt", 502)
elif op.token == div:
emit(0, "load", 502)
emit(0, "div", 202)
emit(0, "store", 7)
elif op.token == lessthan:
emit(0, "load", 501)
emit(0, "compare", 212)
emit(0, "jumplt", 300)
emit(300, "writeInt", 502)
elif op.token == greaterthan:
emit(0, "load", 208)
emit(0, "compare", 7)
emit(0, "jumpgt", 47)
elif op.token == lessthanequal:
emit(0, "load", 501)
emit(0, "compare", 212)
emit(0, "jumplt", 300)
emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
emit(0, "load", 501)
emit(0, "compare", 212)
emit(0, "jumpgt", 300)
emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
emit(310, "writeInt", 502)
elif op.token == jumpeq:
emit(0, "load", 501)
emit(0, "compare", 200)
emit(0, "jumpeq", 300)
# emit(0, "halt", 0)
emit(300, "writeInt", 502)
emit(301, "jump",30)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= identifier | number
"""
if token.token == plus:
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == stringsym: #################
print("#String: " + str(token.name))
printMsg()
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == commentstr:
# print ("#Comment: " + str(token.name))
getoken()
# elif token.token == assignsym:
# getoken()
elif token.token == leftbracket:
getoken()
# print "this is token",tokenNames[token.token]
elif token.token == leftsquarebrace: getoken()
elif token.token == rightbracket:
getoken()
elif token.token == breaksym:
emit(0,"halt", 0)
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym:
getoken()
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == varsym :
vars()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == leftbrace:
vars()
stmtList()
stmtList()
if token.token == rightbrace:
print "#---Function Finished---"
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
# else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
# else: error("Program name expected")
if token.token == semicolon:
getoken()
# else: error("Semicolon expected")
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == functionsym:
function()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 9)
main()
# emit(0, "constant", "'A'") #need in break,comment,exitloop,writer-if-read-write-ch program
# emit(0, "constant", 10)
# emit(0, "constant", 12)
# emit(0, "constant", 25)
# emit(0, "constant", -10)
"""
srcfile = open('tiny_1.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
i = 100
j = 100
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" % \
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while(ch != " "):
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 =counterafter
i=counterafter
if counterafter != 100:
counterafter=counterafter+4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
# emit(i+2, "writech", '')
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, lessthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | - | * | /) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number:
# emit(0, "loadv",token.value)
# emit(0, "store", token.value+300)
array()
if token.token == rightsquarebrace:
getoken()
else:
error("var error: ] expected - 1")
else:
getoken()
elif tn == "i":
# print("#The array name is " + str(tn)+"\n")
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("%c already declared\n", tn);
#assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
expression()
if token.token == rightbracket:
getoken()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
#===============================================================================
global array;
# getoken()
while (token.token == number):
print("#array address")
emit(0, "store", token.value + 400)
print("#array value " +str(token.value))
getoken();
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == dosym:
doStmt()
elif token.token == returnsym:
expression()
elif token.token == continuesym:
continueStmt()
elif token.token == leftbracket:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == assignsym:
getoken()
elif token.token == commentstr:
# print(str(token.name))
getoken()
elif token.token == breaksym:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == rightbrace:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
getoken()# skip "print"
stmt()
emit(0, "load", 501)
expression()
emit(0, "writeint", 502)
# printMsg()
# emit(0, "writeint", 502)
# if token.token == rightbrace: getoken()
# print("\n*** Compilation finished ***\n")
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
# if counterafter != 100:
# emit(0,"loadv",counterafter )
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 40)
emit(40, "load-Ind", 0)
emit(41, "jumpeq", 45)
emit(42, "writech",0)
emit(43, "increment", 1)
emit(44, "jump", 40)
emit(45, "return", '')
getoken()
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "store", 502)
writeStmt()
#===============================================================================
def writeStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0,"load", 501)
emit(0, "writeint", 501)
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
print("#IFSmt")
getoken() # skip "if"
expression()
stmt()
expression()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#elseSmt")
getoken()
stmt()
expression()
emit(314, "jump", 22)
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
emit(0, "store", 502)
getoken()
expression() # num>0
# emit(0, "jump", 22)
stmt()
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> }
"""
if token.token == leftbracket: getoken()
factor()
## 1st start==============================================================================
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
factor()
if op.token == plus:
emit(0, "add", 502)
emit(0, "store", 502)
# emit(0, "jump", 22)
# if op.token == leftbracket:getoken()
if op.token == minus:
## 2nd start==============================================================================
if token.token == plus or token.token == minus or token.token == mpy or token.token == div:
op2 = token# remember *
getoken() # skip past *
factor()
if op2.token == plus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "add", 203)
emit(0, "store", 500)
if op2.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 201)
emit(0, "store", 501)
if op2.token == mpy:
## 3rd start==============================================================================
while token.token == plus or token.token == minus or token.token == mpy or token.token == div:
op3 = token# remember *
getoken() # skip past *
factor()
if op3.token == plus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "add", 203)
emit(0, "store", 500)
if op3.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 210)
emit(0, "store", 501)
if op3.token == mpy:
factor()
## 4th start==============================================================================
while token.token == plus or token.token == minus or token.token == mpy or token.token == div:
if token.token == plus:
op4 = token# remember +
getoken() # skip past +
factor()
if op4.token == plus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "add", 203)
emit(0, "store", 500)
if token.token == minus:
op4 = token# remember -
getoken() # skip past -
factor()
if op4.token == minus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "subtract", 203)
emit(0, "store", 500)
if token.token == mpy:
op4 = token
getoken()
factor()
if op4.token == mpy: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "mpy", 203)
emit(0, "store", 500)
if token.token == div:
op4 = token
getoken()
factor()
if op4.token == div: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "div", 203)
emit(0, "store", 500)
## 4th end==============================================================================
emit(0, "mpy", 205)
emit(0, "store", 501)
## 3rd end==============================================================================
emit(0, "mpy", 210)
emit(0, "store", 501)
## 2nd end==============================================================================
else:
emit(0, "load", 501)
emit(0, "subtract", 201)
emit(0, "store", 501)
emit(0, "jump", 24)
elif op.token == mpy:
emit(0, "load", 206)
emit(0, "mpy", 7)
emit(0, "store", 502)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 590)
emit(0, "subtract", 201)
emit(0, "store", 501)
emit(0, "writeInt", 502)
elif op.token == div:
emit(0, "load", 502)
emit(0, "div", 202)
emit(0, "store", 7)
elif op.token == lessthan:
emit(0, "load", 501)
emit(0, "compare", 212)
emit(0, "jumplt", 300)
emit(300, "writeInt", 502)
elif op.token == greaterthan:
emit(0, "load", 208)
emit(0, "compare", 7)
emit(0, "jumpgt", 50)
emit(50, "halt", '') # less than 2 go to else
elif op.token == lessthanequal:
emit(0, "load", 501)
emit(0, "compare", 212)
emit(0, "jumplt", 300)
emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
emit(0, "load", 501)
emit(0, "compare", 212)
emit(0, "jumpgt", 300)
emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
emit(310, "writeInt", 502)
elif op.token == jumpeq:
emit(0, "load", 501)
emit(0, "compare", 200)
emit(0, "jumpeq", 300)
# emit(0, "halt", 0)
emit(300, "writeInt", 502)
emit(301, "jump",30)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= identifier | number
"""
if token.token == plus:
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == stringsym: #################
print("#String: " + str(token.name))
printMsg()
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == commentstr:
print ("#Comment: " + str(token.name))
getoken()
# elif token.token == assignsym:
# getoken()
elif token.token == leftbracket:
getoken()
# print "this is token",tokenNames[token.token]
elif token.token == leftsquarebrace: getoken()
elif token.token == rightbracket:
getoken()
elif token.token == breaksym:
emit(0,"halt", 0)
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym:
getoken()
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == varsym :
vars()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == leftbrace:
vars()
stmtList()
stmtList()
if token.token == rightbrace:
print "#---Function Finished---"
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
# else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
# else: error("Program name expected")
if token.token == semicolon:
getoken()
# else: error("Semicolon expected")
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == functionsym:
function()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 9)
main()
# emit(0, "constant", "'A'") #need in break,comment,exitloop,writer-if-read-write-ch program
# emit(0, "constant", 10)
# emit(0, "constant", 12)
# emit(0, "constant", 25)
# emit(0, "constant", -10)
"""
srcfile = open('tiny_1.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym", "notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
resultnum = 0
whichidentifier = None;
identifieraddress = 0;
arrayaddress = 0;
arrstar = 0;
returnadd = 0;
i = 700
j = 700
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
emit(0, "halt", '')
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while ch != " ":
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 = counterafter
i = counterafter
if counterafter != 700:
counterafter = counterafter + 4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
else:
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <term> { (+ | - ) <term> }
# <term> ::= <factor> { (*|/) factor}
# <factor> ::= [+/-] ID | Number | expression
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
# <vars> ::= <id>[array]
#===============================================================================
def varList() :
#===============================================================================
vars()
while token.token != semicolon :
if token.token == comma:
vars()
getoken()
# else: error("comma or semicolon expected in declaration")
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
global whichidaddress;
global arrayaddress;
global arrstar;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number: #number
print("#The address for "+ str(tn)+ " are ")
symtbl[tn].address = varptr;
emit(0, "constant", varptr)
arrstar = varptr;
while (token.value != 0):
# print("#address at " + str(varptr))
varptr = varptr + 1
token.value= token.value-1
emit(0, "constant", varptr)
# getoken()
array()
"""
elif token.token == idsym: #id
# getoken()
expression()
getoken()
"""
elif token.token == stringsym:
error("Array can't not accept string")
error("Array only accept expression")
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("#"),
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1;
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
if token.token == number:
arrayaddress = arrstar+token.value
whichidaddress = arrayaddress
print"#"+"Array address", str(arrayaddress)
getoken()
if token.token == rightsquarebrace:
stmt()
# getoken()
getoken()
# if token.token == leftsquarebrace:
# vars()
# getoken()
# if token.token == rightbracket:
# getoken()
#===============================================================================
def array():
# [expression]
#===============================================================================
global array;
expression()
#===============================================================================
def parameters():
#===============================================================================
vars()
if token.token == comma:
getoken()
vars()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == vars:
expression()
if token.token == ifsym:
ifStmt()
if token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == declaresym:
varList()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
factor()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == leftbracket or token.token == rightbracket or token.token == leftbrace or token.token == rightbrace or token.token == rightsquarebrace or token.token == assignsym:
getoken()
elif token.token == commentstr or token.token == breaksym:
# print(str(token.name))
getoken()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == semicolon or token.token == comma:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
global idaddress
getoken() # skip "print"
getoken()
printta = token.address
if token.token == idsym:
# print("#This is a id")
getoken()
tempad = token.address
if token.token == leftbracket:
function()
# emit(0, "writeint", 514)
if token.token == leftsquarebrace:
getoken()
if token.token == number:
arraryadd = arrstar+token.value
emit(0, "writeint", arraryadd)
getoken()
else:
emit(0, "writeint", printta)
getoken()
elif token.token == stringsym:
printMsg()
if token.token == idsym:
tempad=token.address;
getoken()
printta = token.address
if token.token == leftbracket:
function()
getoken()
else:
emit(0, "writeint",tempad)
getoken()
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech", 0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
getoken()
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "load", 7)
emit(0, "store", 700)
getoken()
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global resultnum
global whichidentifier
global whichidaddress
global arrayaddress
whichidentifier = token.name # Remember which ID on Left
tempadd = token.address
# print("#arrayaddres: " +str(tempadd))
if arrayaddress != 0:
whichidaddress = token.address;
else:
whichidaddress = arrayaddress;
# print("#whichaddress: " +str(whichaddress))
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == idsym:
getoken()
elif token.token == leftbracket:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == semicolon:
getoken()
else:
error("Expected = in assignment statement")
# print("#Store value")
expression()
passtoken = token.value
# print(str(whichidaddress))
if whichidaddress == 0:
# print("#tokenaddress " + str(tempadd))
emit(0, "store", tempadd)
else:
symtbl[whichidentifier].value = tokennum
# print("#whichidaddress "+str(whichidaddress))
emit(0, "store", whichidaddress)
getoken()
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
# print("#IFSmt")
getoken() # skip "if"
condition()
stmt()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#ElseSmt")
# emit(200, "jump", 47) # less than 2 go to else
getoken()
stmt()
# emit(0, "halt", '')
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
# emit(0, "store", 502)
getoken()
expression() # num>0
stmtList()
stmtList()
emit(0, "jump", 128)
#===============================================================================
def doStmt():
#===============================================================================
getoken()
expression()
stmt()
#===============================================================================
def returnStmt():
#===============================================================================
global returnadd;
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
returnadd = token.address
emit(600, "add", 514)
emit(601, "store", token.address)
emit(602, "return", '')
if token.token == rightbracket:
getoken()
if token.token == semicolon:
getoken()
#===============================================================================
def condition():
#===============================================================================
if token.token == notsym:
emit(0, "Not", '')
getoken()
conditionalexp()
#===============================================================================
def conditionalexp():
#===============================================================================
expression()
relational_op()
expression()
#===============================================================================
def relational_op():
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
term()
if op.token == lessthan:
# emit(0, "load", 501)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
elif op.token == greaterthan:
emit(0, "load", 504)
emit(0, "compare", 1)
emit(0, "jumpgt", 123)
# emit(0, "jump", 123)
elif op.token == lessthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
# emit(310, "writeInt", 502)
elif op.token == jumpeq:
# emit(0, "load", 200)
emit(0, "compare", 504)
emit(0, "jumpeq", 133)
emit(0, "jump", 138)
# emit(0, "halt", '')
# emit(0, "jump", 131)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> } <- wrong
<expression> ::= <term> { (+ | -) <term> }
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
idvalue = symtbl[whichidentifier].value
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
term()
if op.token == plus:
emit(0, "add", 501)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 1)
emit(0, "store", 501)
emit(0, "store", 1)
getoken()
term()
# print("term 1" + str(factor()))
## 1st start==============================================================================
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
emit(0, "store", 997) # Save current result
term()
# print("term 2" + str(term))
# print("#whichidentifier " + whichidentifier)
if op.token == plus:
emit(0, "loadv", idvalue)
emit(0, "add", 1)
# emit(0, "store", idaddress)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 500)
emit(0, "subtract", 1)
emit(0, "store", idaddress)
emit(0, "store", 1)
# emit(0, "writeInt", 501)
#===============================================================================
def term():
#===============================================================================
"""
term::= factor {(*|/) factor}
"""
global idaddress
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
save here xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
factor()
if op.token == mpy:
emit(0, "mpy", 1)
emit(0, "store", 205)
emit(0, "store", 502)
emit(0, "store", 1)
"""
while token.token == mpy:
op2 = token # remember -
getoken() # skip past -
factor()
emit(0, "mpy", 502)
# emit(0, "store", 205)
emit(0, "store", idaddress)
emit(0, "store", 1)
"""
elif op.token == div:
# emit(0, "load", 502)
emit(0, "load",504)
emit(0, "div", 1)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= [+|-] identifier | number | (expression)
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
# [+|-] number
if token.token == plus:
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == number:
emit(0, "loadv", 0 - token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
# gm emit(0, "store", 1)
tokennum = token.value
getoken()
# identifier
elif token.token == idsym:
# print("#token address " + str(token.address))
# print("#token value " + str(token.value))
emit(0, "load", token.address)
getoken()
# (expression)
elif token.token == leftbracket:
expression()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
# elif token.token == stringsym: #################
# print("#String: " + str(token.name))
# printMsg()
# printStmt()
# getoken()
elif token.token == commentstr or token.token == rightbracket or token.token == leftsquarebrace or token.token == rightsquarebrace:
# print ("#Comment: " + str(token.name))
getoken()
elif token.token == breaksym:
emit(0, "halt", '')
getoken()
elif token.token == semicolon or token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym or token.token == returnsym or token.token == functionsym:
getoken()
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
global returnadd;
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
elif token.token == number:
print("#"+str(token.value))
emit(0, "loadv", token.value)
emit(0, "store", 1)
emit(0, "call", 600)
# emit(0, "writeint", 514)
emit(0, "writeint", returnadd)
else:
error("Function error : No_parameter_input_for_function")
"""
if token.token == comma:
getoken()
emit(0, "loadv", token.value)
emit(0, "call", 600)
getoken()
"""
if token.token == rightbracket:
getoken()
if token.token == declaresym:
varList()
# getoken()
if token.token == semicolon:
getoken()
if token.token == leftbrace:
getoken()
stmtList()
"""
if token.token == plus:
expression()
getoken()
"""
# emit(0, "call", 600)
# emit(0, "call", 600)
if token.token == semicolon:
getoken()
if token.token == rightbrace:
print ("#---Function Finished---")
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
varList()
if token.token == functionsym:
function()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
main()
"""
srcfile = open('test.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym", "notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
resultnum = 0
whichidentifier = None;
identifieraddress = 0;
i = 800
j = 800
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while(ch != " "):
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 = counterafter
i = counterafter
if counterafter != 800:
counterafter = counterafter + 4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
else:
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
# emit(i+2, "writech", '')
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <term> { (+ | - ) <term> }
# <term> ::= <factor> { (*|/) factor}
# <factor> ::= [+/-] ID | Number | expression
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
# <vars> ::= <id>[array]
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number: #number
print("#The address for "+ str(tn)+ " are ")
symtbl[tn].address = varptr;
emit(0, "constant", varptr)
while (token.value != 0):
# print("#address at " + str(varptr))
emit(0, "constant", token.value)
varptr = varptr + 1
token.value= token.value-1
array()
elif token.token == idsym: #id
# getoken()
expression()
getoken()
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("#"),
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
expression()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "add", 11)
emit(0, "store", 1)
getoken()
if token.token == rightbracket:
getoken()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
# [expression]
#===============================================================================
global array;
expression()
#===============================================================================
def parameters():
#===============================================================================
vars()
if token.token == comma:
getoken()
vars()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == vars:
expression()
if token.token == ifsym:
ifStmt()
if token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
factor()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == leftbracket or token.token == rightbracket or token.token == leftbrace or token.token == rightbrace or token.token == rightsquarebrace or token.token == assignsym:
getoken()
elif token.token == commentstr or token.token == breaksym:
# print(str(token.name))
getoken()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == semicolon or token.token == comma:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
global idaddress
getoken() # skip "print"
getoken()
if token.token == idsym:
print("#This is a id")
function()
emit(0, "writeint", 503)
if token.token == stringsym:
printMsg()
# emit(0, "writeint", 501)
if token.token == stringsym:
printMsg()
if token.token == idsym:
function()
emit(0, "writeint", 503)
getoken()
if token.token == idsym:
emit(0, "writeint", 501)
emit(0, "writeint", 502)
# emit(0, "halt", '')
getoken()
else:
emit(0, "writeint", 501)
getoken()
# emit(0, "writeint", 7)
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech", 0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
getoken()
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "load", 7)
emit(0, "store", 500)
getoken()
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global resultnum
global whichidentifier
whichidentifier = token.name # Remember which ID on Left
whichidaddress = token.address
# print("#whichidentifier: " +str(whichidentifier))
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == idsym:
getoken()
elif token.token == leftbracket:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == semicolon:
getoken()
else:
error("Expected = in assignment statement")
# print("#Store value")
expression()
passtoken = token.value
# print(str(tokennum))
symtbl[whichidentifier].value = tokennum
emit(0, "store", whichidaddress)
getoken()
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
# print("#IFSmt")
getoken() # skip "if"
condition()
stmt()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#ElseSmt")
# emit(200, "jump", 47) # less than 2 go to else
getoken()
stmt()
# emit(0, "halt", '')
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
# emit(0, "store", 502)
getoken()
expression() # num>0
stmtList()
stmtList()
emit(0, "jump", 128)
#===============================================================================
def doStmt():
#===============================================================================
getoken()
expression()
stmt()
#===============================================================================
def returnStmt():
#===============================================================================
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
emit(600, "add", 505)
emit(601, "add", 1)
emit(602, "store", 503)
emit(603, "return", '')
if token.token == rightbracket:
getoken()
if token.token == semicolon:
getoken()
#===============================================================================
def condition():
#===============================================================================
if token.token == notsym:
emit(0, "Not", '')
getoken()
conditionalexp()
#===============================================================================
def conditionalexp():
#===============================================================================
expression()
relational_op()
expression()
#===============================================================================
def relational_op():
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
term()
if op.token == lessthan:
# emit(0, "load", 501)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
elif op.token == greaterthan:
emit(0, "load", 504)
emit(0, "compare", 1)
emit(0, "jumpgt", 123)
# emit(0, "jump", 123)
elif op.token == lessthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
# emit(310, "writeInt", 502)
elif op.token == jumpeq:
# emit(0, "load", 200)
emit(0, "compare", 504)
emit(0, "jumpeq", 133)
emit(0, "jump", 138)
# emit(0, "halt", '')
# emit(0, "jump", 131)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> } <- wrong
<expression> ::= <term> { (+ | -) <term> }
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
idvalue = symtbl[whichidentifier].value
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
term()
if op.token == plus:
emit(0, "add", 501)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 1)
emit(0, "store", 501)
emit(0, "store", 1)
getoken()
term()
# print("term 1" + str(factor()))
## 1st start==============================================================================
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
term()
# print("term 2" + str(term))
# print("#whichidentifier " + whichidentifier)
if op.token == plus:
emit(0, "loadv", idvalue)
emit(0, "add", 1)
# emit(0, "store", idaddress)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 500)
emit(0, "subtract", 1)
emit(0, "store", idaddress)
emit(0, "store", 1)
# emit(0, "writeInt", 501)
#===============================================================================
def term():
#===============================================================================
"""
term::= factor {(*|/) factor}
"""
global idaddress
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
factor()
if op.token == mpy:
emit(0, "mpy", 1)
# emit(0, "store", 205)
emit(0, "store", 502)
emit(0, "store", 1)
while token.token == mpy:
op2 = token # remember -
getoken() # skip past -
factor()
emit(0, "mpy", 502)
# emit(0, "store", 205)
emit(0, "store", idaddress)
emit(0, "store", 1)
elif op.token == div:
# emit(0, "load", 502)
emit(0, "load",504)
emit(0, "div", 1)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= [+|-] identifier | number | (expression)
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
# [+|-] number
if token.token == plus:
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == number:
emit(0, "loadv", 0 - token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 1)
tokennum = token.value
getoken()
# identifier
elif token.token == idsym:
# print("#token address " + str(token.address))
# print("#token value " + str(token.value))
emit(0, "load", token.address)
getoken()
# (expression)
elif token.token == leftbracket:
expression()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
# elif token.token == stringsym: #################
# print("#String: " + str(token.name))
# printMsg()
# printStmt()
# getoken()
elif token.token == commentstr or token.token == rightbracket or token.token == leftsquarebrace or token.token == rightsquarebrace:
# print ("#Comment: " + str(token.name))
getoken()
elif token.token == breaksym:
emit(0, "halt", '')
getoken()
elif token.token == semicolon or token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym or token.token == returnsym or token.token == functionsym:
getoken()
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
elif token.token == number:
print("#"+str(token.value))
emit(0, "loadv", token.value)
emit(0, "store", 1)
getoken()
else:
error("Function error : No_parameter_input_for_function")
if token.token == comma:
getoken()
emit(0, "loadv", token.value)
emit(0, "call", 600)
getoken()
if token.token == rightbracket:
getoken()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == semicolon:
getoken()
if token.token == leftbrace:
getoken()
if token.token == plus:
expression
getoken()
stmt()
# emit(0, "call", 600)
# returnStmt()
# emit(0, "call", 600)
if token.token == semicolon:
getoken()
if token.token == rightbrace:
print ("#---Function Finished---")
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == functionsym:
function()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 9)
main()
"""
srcfile = open('tiny_1.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym", "notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
resultnum = 0
whichidentifier = None;
identifieraddress = 0;
i = 100
j = 100
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while(ch != " "):
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 = counterafter
i = counterafter
if counterafter != 100:
counterafter = counterafter + 4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'" + ch + "'"
emit(i, "constant", b)
ch = getch()
i = i + 1
emit(i, "constant", 13)
emit(i + 1, "constant", 0)
emit(i + 2, "return", '')
ch = getch()
counterafter = i + 3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <term> { (+ | - ) <term> }
# <term> ::= <factor> { (*|/) factor}
# <factor> ::= [+/-] ID | Number | expression
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
# <vars> ::= <id>[array]
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number: #number
print("#The address for "+ str(tn)+ " are ")
symtbl[tn].address = varptr;
emit(0, "constant", varptr)
while (token.value != 0):
# print("#address at " + str(varptr))
emit(0, "constant", token.value)
varptr = varptr + 1
token.value= token.value-1
array()
elif token.token == idsym: #id
# getoken()
expression()
getoken()
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
expression()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "add", 11)
emit(0, "store", 1)
getoken()
if token.token == rightbracket:
getoken()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
# [expression]
#===============================================================================
global array;
expression()
#===============================================================================
def parameters():
#===============================================================================
vars()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == vars:
expression()
if token.token == ifsym:
ifStmt()
if token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
factor()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == leftbracket or token.token == rightbracket or token.token == leftbrace or token.token == rightbrace or token.token == rightsquarebrace or token.token == assignsym:
getoken()
elif token.token == commentstr or token.token == breaksym:
# print(str(token.name))
getoken()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == semicolon or token.token == comma:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
global idaddress
getoken() # skip "print"
getoken()
if token.token == idsym:
print("#This is a id")
function()
emit(0, "writeint", 503)
if token.token == stringsym:
printMsg()
# emit(0, "writeint", 501)
if token.token == stringsym:
printMsg()
if token.token == idsym:
function()
emit(0, "writeint", 503)
getoken()
if token.token == idsym:
emit(0, "writeint", 501)
emit(0, "writeint", 502)
# emit(0, "halt", '')
getoken()
else:
emit(0, "writeint", 501)
getoken()
# emit(0, "writeint", 7)
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech", 0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
getoken()
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "load", 7)
emit(0, "store", 500)
getoken()
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global resultnum
global whichidentifier
whichidentifier = token.name # Remember which ID on Left
whichidaddress = token.address
# print("#whichidentifier: " +str(whichidentifier))
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == idsym:
getoken()
elif token.token == leftbracket:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == semicolon:
getoken()
else:
error("Expected = in assignment statement")
# print("#Store value")
expression()
passtoken = token.value
# print(str(tokennum))
symtbl[whichidentifier].value = tokennum
emit(0, "store", whichidaddress)
getoken()
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
print("#IFSmt")
getoken() # skip "if"
condition()
stmt()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#ElseSmt")
# emit(200, "jump", 47) # less than 2 go to else
getoken()
stmt()
# emit(0, "halt", '')
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
# emit(0, "store", 502)
getoken()
expression() # num>0
stmtList()
stmtList()
emit(0, "jump", 122)
#===============================================================================
def doStmt():
#===============================================================================
getoken()
expression()
stmt()
#===============================================================================
def returnStmt():
#===============================================================================
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
emit(600, "add", 505)
emit(601, "store", 503)
emit(602, "return", '')
if token.token == rightbracket:
getoken()
if token.token == semicolon:
getoken()
#===============================================================================
def condition():
#===============================================================================
if token.token == notsym:
emit(0, "Not", '')
getoken()
conditionalexp()
#===============================================================================
def conditionalexp():
#===============================================================================
expression()
relational_op()
expression()
#===============================================================================
def relational_op():
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
term()
if op.token == lessthan:
# emit(0, "load", 501)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
elif op.token == greaterthan:
# emit(0, "load", 200)
emit(0, "compare", 504)
emit(0, "jumpgt", 122)
emit(0, "jump", 130)
elif op.token == lessthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
# emit(310, "writeInt", 502)
elif op.token == jumpeq:
# emit(0, "load", 200)
emit(0, "compare", 504)
emit(0, "jumpeq", 0)
# emit(0, "halt", '')
# emit(0, "jump", 131)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> } <- wrong
<expression> ::= <term> { (+ | -) <term> }
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
idvalue = symtbl[whichidentifier].value
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
term()
if op.token == plus:
emit(0, "add", 501)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 1)
emit(0, "store", 501)
emit(0, "store", 1)
getoken()
term()
# print("term 1" + str(factor()))
## 1st start==============================================================================
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
term()
# print("term 2" + str(term))
# print("#whichidentifier " + whichidentifier)
if op.token == plus:
emit(0, "loadv", idvalue)
emit(0, "add", 1)
# emit(0, "store", idaddress)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 500)
emit(0, "subtract", 1)
emit(0, "store", idaddress)
emit(0, "store", 1)
# emit(0, "writeInt", 501)
#===============================================================================
def term():
#===============================================================================
"""
term::= factor {(*|/) factor}
"""
global idaddress
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
factor()
if op.token == mpy:
emit(0, "mpy", 1)
# emit(0, "store", 205)
emit(0, "store", 502)
emit(0, "store", 1)
while token.token == mpy:
op2 = token # remember -
getoken() # skip past -
factor()
emit(0, "mpy", 502)
# emit(0, "store", 205)
emit(0, "store", idaddress)
emit(0, "store", 1)
elif op.token == div:
# emit(0, "load", 502)
emit(0, "div", 504)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= [+|-] identifier | number | (expression)
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
# [+|-] number
if token.token == plus:
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == number:
emit(0, "loadv", 0 - token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 1)
tokennum = token.value
getoken()
# identifier
elif token.token == idsym:
# print("#token address " + str(token.address))
# print("#token value " + str(token.value))
emit(0, "load", token.address)
getoken()
# (expression)
elif token.token == leftbracket:
expression()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == stringsym: #################
print("#String: " + str(token.name))
# printMsg()
printStmt()
getoken()
elif token.token == commentstr or token.token == rightbracket or token.token == leftsquarebrace or token.token == rightsquarebrace:
# print ("#Comment: " + str(token.name))
getoken()
elif token.token == breaksym:
emit(0, "halt", '')
getoken()
elif token.token == semicolon or token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym or token.token == returnsym or token.token == functionsym:
getoken()
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
elif token.token == number:
print("#"+str(token.value))
emit(0, "loadv", token.value)
emit(0, "call", 600)
getoken()
else:
error("Function error : No_parameter_input_for_function")
if token.token == rightbracket:
getoken()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == semicolon:
getoken()
if token.token == leftbrace:
getoken()
if token.token == plus:
expression
getoken()
stmt()
# emit(0, "call", 600)
# returnStmt()
# emit(0, "call", 600)
if token.token == semicolon:
getoken()
if token.token == rightbrace:
print ("#---Function Finished---")
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == functionsym:
function()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 9)
main()
"""
srcfile = open('tiny_1.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus","mpy","div","elsesym","declaresym","forsym","andsym","elifsym","dosym",
"continuesym","breaksym","nonesym","programsym","leftsquarebrace","rightsquarebrace",
"lessthanequal","colon","comma","comment","commentstr","dot"," greaterthanequal","jumpeq","jumpne",
"andop","orop","quote ","stringsym","arraysym","readsym","endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, equals, lessthan, greaterthan,\
number, plus, minus, mpy,div,elsesym,declaresym,forsym,andsym,elifsym,dosym,\
continuesym,breaksym,nonesym,programsym,leftsquarebrace,rightsquarebrace,\
lessthanequal,colon,comma,comment,commentstr,dot, greaterthanequal,jumpeq,jumpne,\
andop,orop,quote,stringsym,arraysym,readsym,endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym)
addToSymTbl('program', programsym)# VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym)#READINT
addToSymTbl('do', dosym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', comment)
addToSymTbl( '<', lessthan)
addToSymTbl( '>', greaterthan)
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( ';', semicolon)
addToSymTbl( 'break', breaksym)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( '[', leftsquarebrace)
addToSymTbl( ']', rightsquarebrace)
addToSymTbl( ':', colon)
addToSymTbl( ',', comma)
addToSymTbl( '.', dot)
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '&&', andop)
addToSymTbl( '||', orop)
addToSymTbl( '"',quote)
addToSymTbl( EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
print "#End of File"
print "#--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
x=0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[","]", "+", "-","*", "/", ";",",",":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value = int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch =='#':
str1 =""
ch = getch()
while(ch != " "):
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value = str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch =='"':
a =""
ch = getch()
while (ch != '"'):
a = str(a) + str(ch)
ch = getch()
ch = getch()
token = symbol(a, stringsym, value = str(a)) # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch =="<":
ch = getch()
if ch == "=":
lt =""
lt ="<" + "="
token = symbol(lt, lessthanequal, value = str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value = "<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch =="!":
ne =""
if ch == "=":
ne ="!" + "="
ch = getch()
token = symbol(ne, jumpne, value = str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value = "!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch =="=":
eq =""
if ch == "=":
eq ="=" + "="
ch = getch()
token = symbol(eq, jumpeq, value = str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value = "=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch ==">":
gt =""
ch = getch()
if ch == "=":
gt =">" + "="
ch = getch()
token = symbol(gt, lessthanequal, value = str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value = ">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | - | * | /) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number:
# emit(0, "loadv",token.value)
# emit(0, "store", token.value+300)
getoken()
if token.token == rightsquarebrace:
getoken()
else:
error("] expected")
else: error("number expected")
else:
if ta != 0:
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr +1
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
expression()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
#===============================================================================
global array;
getoken()
while (token.token == number):
print("#array address")
emit(0, "constant", token.value)
getoken();
if token.token == rightsquarebrace:getoken();
if token.token == assignsym:getoken();
while( token.token == number):
print("#store value")
emit(0, "load", 10)
emit(0, "add", 12)
emit(0, "store", 1)
emit(0, "loadv", token.value)
emit(0, "store-ind", 0)
getoken();
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
breakStmt()
elif token.token == continuesym:
continueStmt()
elif token.token == leftbracket:
getoken()
elif token.token == leftbrace:
getoken()
# elif token.token == stringsym:
# print(str(token.name))
# getoken()
elif token.token == assignsym:
getoken()
elif token.token == commentstr:
# print(str(token.name))
getoken()
elif token.token == breaksym:
getoken()
elif token.token ==lessthanequal:
getoken()
elif token.token ==greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == rightbrace:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
getoken()
# skip "print"
expression()
stmt()
emit(0, "writeint", 500)
# if token.token == rightbrace:
# print("\n*** Compilation finished ***\n")
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
expression()
emit(0, "readint", 0)
emit(0, "store", 500)
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token ==lessthanequal:
getoken()
elif token.token ==greaterthanequal:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
expression()
stmt()
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
stmt()
expression()
emit(0, "return",0)
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
emit(0, "load", 201)
emit(0, "store", 501)
getoken()
expression() #num>0
stmt()
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> }
"""
if token.token == leftbracket: getoken()
factor()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember +/-
getoken()
# skip past +/-
#emit(0, "store", 997)
# Save current result
if token.token == leftbracket:
getoken()
factor()
if op.token == plus:
emit(0, "add", 211)
emit(0, "store", 500)
# if op.token == leftbracket:getoken()
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 500)
emit(0, "subtract", 201)
emit(0, "store", 500)
emit(0, "jump", 23)
elif op.token == mpy:
# emit(0, "load", 501)
emit(0, "mpy", 501)
emit(0, "store", 501)
elif op.token == div:
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 8)
elif op.token == lessthan:
emit(0, "compare", 999)
emit(0, "jumplt", 80)
elif op.token == greaterthan:
emit(0, "load", 500)
emit(0, "compare", 200)
emit(0, "jumpgt", 50)
emit(50, "writeInt", 501)
elif op.token == lessthanequal:
emit(0, "compare", 201)
emit(0, "jumplt", 80)
emit(0, "store", 500)
elif op.token == greaterthanequal:
emit(0, "compare", 999)
emit(0, "jumpgt", 81)
emit(0, "jumpgt", 500)
elif op.token == jumpne:
emit(0, "compare", 999)
emit(0, "jumpne", 82)
emit(0, "loadv", 0)
emit(0, "store", 11)
elif op.token == jumpeq:
emit(0, "load", 500)
emit(0, "compare", 200)
emit(0, "jumpeq", 50)
emit(50, "writeInt", 501)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= identifier | number
"""
if token.token == plus:
getoken()
#- (unary)
elif token.token == minus:
getoken()
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == stringsym:#################
print("#String: "+ str(token.name))
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200+token.value)
getoken()
elif token.token == commentstr:
print ("#Comment: "+str(token.name))
getoken()
# elif token.token == assignsym:
# getoken()
elif token.token == leftbracket:
getoken()
# print "this is token",tokenNames[token.token]
elif token.token == leftsquarebrace: getoken()
elif token.token == rightbracket:
getoken()
elif token.token == breaksym:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
else:
error("Start Of Factor Expected")
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
# else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
# else: error("Program name expected")
if token.token == semicolon:
getoken()
# else: error("Semicolon expected")
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == leftsquarebrace:
vars()
stmtList()
stmtList()
if token.token ==rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("tiny_1.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
#out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
main()
#emit(0, "constant", "'A'") #need in break,comment,exitloop,writer-if-read-write-ch program
#emit(0, "constant", 10)
#emit(0, "constant", 12)
#emit(0, "constant", 25)
#emit(0, "constant", -10)
"""
srcfile = open('tiny_1.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
#getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym","notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym,\
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
resultnum = 0
whichidentifier = None;
identifieraddress = 0;
i = 100
j = 100
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while(ch != " "):
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 =counterafter
i=counterafter
if counterafter != 100:
counterafter=counterafter+4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
# emit(i+2, "writech", '')
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <term> { (+ | - ) <term> }
# <term> ::= <factor> { (*|/) factor}
# <factor> ::= [+/-] ID | Number | expression
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
# <vars> ::= <id>[array]
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
global arraynum;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number: #number
print("#The address for "+ str(tn)+ " are ")
symtbl[tn].address = varptr;
emit(0, "constant", varptr)
while (token.value != 0):
# print("#address at " + str(varptr))
emit(0, "constant", token.value)
varptr = varptr + 1
token.value= token.value-1
array()
elif token.token == idsym: #id
# getoken()
expression()
getoken()
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("%c already declared\n", tn);
#assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
expression()
if token.token == rightsquarebrace:
getoken()
if token.token == rightbracket:
getoken()
if token.token == comma:
vars()
if token.token == number:
arraynum = token.value;
print("#arraynum "+str(arraynum))
# if arraynum =
emit(0, "loadv", token.value)
emit(0, "add", 11)
emit(0, "store", 1)
getoken()
if token.token == rightsquarebrace:
getoken()
if token.token == assignsym:
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "store-ind", 0)
if token.token == plus or token.token == minus or token.token == mpy or token.token == div:
if token.token == plus:
emit(0, "load", 1)
emit(0, "load-ind", 0)
emit(0, "store", 1)
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "add", 1)
emit(0, "store", 507)
getoken()
# if token.token == plus or token.token == minus or token.token == mpy or token.token == div:
# getoken()
elif token.token == leftbrace:
getoken()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
# [expression]
#===============================================================================
global array;
expression()
print("#End of array expression")
"""
emit(0, "jump", 60)
emit(60, "load", 11)
emit(61, "add", 12)
emit(62, "store", 1)
"""
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == vars:
expression()
elif token.token == ifsym:
ifStmt()
if token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == dosym:
doStmt()
foreverStmt()
elif token.token == breaksym:
breakStmt()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == leftbracket or token.token == rightbracket or token.token == leftbrace or token.token == rightbrace or token.token == rightsquarebrace or token.token == assignsym:
getoken()
elif token.token == commentstr or token.token == breaksym:
# print(str(token.name))
getoken()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == plus or token.token == minus or token.token == mpy or token.token == div:
expression
elif token.token == semicolon or token.token == comma:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
global idaddress
getoken()# skip "print"
getoken()
if token.token == stringsym:
printMsg()
# emit(0, "writeint", 501)
if token.token == idsym:
emit(0, "writeint", 501)
else:
emit(0, "writeint", 501)
# emit(0, "writeint", 7)
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
# if counterafter != 100:
# emit(0,"loadv",counterafter )
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech",0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
getoken()
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "load", 7)
emit(0, "store", 500)
getoken()
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global resultnum
global whichidentifier
whichidentifier = token.name # Remember which ID on Left
whichidaddress = token.address
print("#whichidentifier: " +str(whichidentifier))
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == idsym:
getoken()
elif token.token == leftbracket:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
# print("#Store value")
expression()
passtoken = token.value
# print(str(tokennum))
symtbl[whichidentifier].value = tokennum
# emit(0, "store", whichidaddress)
getoken()
# emit(0, "writeint", whichidaddress)
# print("#assign " + str(whichidentifier))
# print("#assign " + str(whichidaddress))
# Save result into LHS runtime address
# expression()
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
print("#IFSmt")
getoken() # skip "if"
condition()
stmt()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#ElseSmt")
# emit(200, "jump", 47) # less than 2 go to else
getoken()
stmt()
# emit(314, "jump", 22)
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
emit(0, "store", 502)
getoken()
expression() # num>0
stmtList()
emit(0, "jump", 25)
#===============================================================================
def returnStmt():
#===============================================================================
emit(600,"add", 201)
emit(601,"store", 502)
emit(602,"return", '')
getoken()
#===============================================================================
def condition():
#===============================================================================
if token.token == notsym:
emit(0, "Not",'')
getoken()
conditionalexp()
#===============================================================================
def conditionalexp():
#===============================================================================
expression()
relational_op()
expression()
#===============================================================================
def relational_op():
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
term()
if op.token == lessthan:
# emit(0, "load", 501)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
elif op.token == greaterthan:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 43)
elif op.token == lessthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
# emit(310, "writeInt", 502)
elif op.token == jumpeq:
emit(0, "load", 200)
emit(0, "compare", 502)
emit(0, "jumpeq", 29)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> } <- wrong
<expression> ::= <term> { (+ | -) <term> }
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
# print("#Identifier address " + str(idaddress))
"""
idvalue = symtbl[whichidentifier].value
print("#Identifier value " + str(idvalue))
"""
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
term()
if op.token == plus:
emit(0, "add", 501)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 1)
emit(0, "store", 501)
getoken()
term()
# print("term 1" + str(factor()))
## 1st start==============================================================================
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
term()
# print("term 2" + str(term))
# print("#whichidentifier " + whichidentifier)
if op.token == plus:
emit(0, "add", 502)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 500)
emit(0, "subtract", 1)
emit(0, "store", idaddress)
# emit(0, "writeInt", 501)
#===============================================================================
def term():
#===============================================================================
"""
term::= factor {(*|/) factor}
"""
global idaddress
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
factor()
if op.token == mpy:
emit(0, "mpy", 502)
# emit(0, "store", 205)
emit(0, "store", 502)
# emit(0, "store", 210)
while token.token == mpy:
op2 = token # remember -
getoken() # skip past -
factor()
emit(0, "mpy", 502)
# emit(0, "store", 205)
emit(0, "store", idaddress)
elif op.token == div:
emit(0, "load", 502)
emit(0, "div", 202)
emit(0, "store", 503)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= [+|-] identifier | number | (expression)
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
# [+|-] number
if token.token == plus:
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == number:
emit(0, "loadv", 0-token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 1)
tokennum = token.value
getoken()
# identifier
elif token.token == idsym:
# print("#token address " + str(token.address))
# print("#token value " + str(token.value))
emit(0, "load", token.address)
getoken()
# (expression)
elif token.token == leftbracket:
expression()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == stringsym: #################
print("#String: " + str(token.name))
# printMsg()
printStmt()
getoken()
elif token.token == commentstr or token.token == rightbracket or token.token == leftsquarebrace or token.token == rightsquarebrace:
# print ("#Comment: " + str(token.name))
getoken()
elif token.token == breaksym:
emit(0,"halt", 0)
elif token.token == semicolon or token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym or token.token == returnsym or token.token == functionsym:
getoken()
else:
error("Start Of Factor Expected")
"""
elif token.token == assignsym:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
"""
#===============================================================================
def function():
#===============================================================================
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == idsym:
getoken()
if token.token == varsym :
vars()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
print ("#---Function Finished---")
#===============================================================================
def program():
#===============================================================================
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
# else: error("Semicolon expected")
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == semicolon:
getoken()
if token.token == functionsym:
function()
if token.token == semicolon:
getoken()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 9)
main()
# emit(0, "constant", "'A'") #need in break,comment,exitloop,writer-if-read-write-ch program
# emit(0, "constant", 10)
# emit(0, "constant", 12)
# emit(0, "constant", 25)
# emit(0, "constant", -10)
"""
srcfile = open('tiny_1.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym", "notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
resultnum = 0
whichidentifier = None;
identifieraddress = 0;
arrayaddress = 0;
arrstar = 0;
returnadd = 0;
i = 700
j = 700
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
emit(0, "halt", '')
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while ch != " ":
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 = counterafter
i = counterafter
if counterafter != 700:
counterafter = counterafter + 4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
else:
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <term> { (+ | - ) <term> }
# <term> ::= <factor> { (*|/) factor}
# <factor> ::= [+/-] ID | Number | expression
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
# <vars> ::= <id>[array]
#===============================================================================
def varList() :
#===============================================================================
vars()
while token.token != semicolon :
if token.token == comma:
vars()
getoken()
# else: error("comma or semicolon expected in declaration")
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
global whichidaddress;
global arrayaddress;
global arrstar;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number: #number
print("#The address for "+ str(tn)+ " are ")
symtbl[tn].address = varptr;
emit(0, "constant", varptr)
arrstar = varptr;
while (token.value != 0):
# print("#address at " + str(varptr))
varptr = varptr + 1
token.value= token.value-1
emit(0, "constant", varptr)
# getoken()
array()
"""
elif token.token == idsym: #id
# getoken()
expression()
getoken()
"""
elif token.token == stringsym:
error("Array can't not accept string")
error("Array only accept expression")
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("#"),
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1;
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
if token.token == number:
arrayaddress = arrstar+token.value
whichidaddress = arrayaddress
print"#"+"Array address", str(arrayaddress)
getoken()
if token.token == rightsquarebrace:
stmt()
# getoken()
getoken()
# if token.token == leftsquarebrace:
# vars()
# getoken()
# if token.token == rightbracket:
# getoken()
#===============================================================================
def array():
# [expression]
#===============================================================================
global array;
expression()
#===============================================================================
def parameters():
#===============================================================================
vars()
if token.token == comma:
getoken()
vars()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == vars:
expression()
if token.token == ifsym:
ifStmt()
if token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == declaresym:
varList()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
factor()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == leftbracket or token.token == rightbracket or token.token == leftbrace or token.token == rightbrace or token.token == rightsquarebrace or token.token == assignsym:
getoken()
elif token.token == commentstr or token.token == breaksym:
# print(str(token.name))
getoken()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == semicolon or token.token == comma:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
global idaddress
getoken() # skip "print"
getoken()
printta = token.address
if token.token == idsym:
# print("#This is a id")
getoken()
tempad = token.address
if token.token == leftbracket:
function()
# emit(0, "writeint", 514)
if token.token == leftsquarebrace:
getoken()
if token.token == number:
arraryadd = arrstar+token.value
emit(0, "writeint", arraryadd)
getoken()
else:
emit(0, "writeint", printta)
getoken()
elif token.token == stringsym:
printMsg()
if token.token == idsym:
tempad=token.address;
getoken()
printta = token.address
if token.token == leftbracket:
function()
getoken()
else:
emit(0, "writeint",tempad)
getoken()
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech", 0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
getoken()
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "load", 7)
emit(0, "store", 700)
getoken()
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global resultnum
global whichidentifier
global whichidaddress
global arrayaddress
whichidentifier = token.name # Remember which ID on Left
tempadd = token.address
# print("#arrayaddres: " +str(tempadd))
if arrayaddress != 0:
whichidaddress = token.address;
else:
whichidaddress = arrayaddress;
# print("#whichaddress: " +str(whichaddress))
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == idsym:
getoken()
elif token.token == leftbracket:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == semicolon:
getoken()
else:
error("Expected = in assignment statement")
# print("#Store value")
expression()
passtoken = token.value
# print(str(whichidaddress))
if whichidaddress == 0:
# print("#tokenaddress " + str(tempadd))
emit(0, "store", tempadd)
else:
symtbl[whichidentifier].value = tokennum
# print("#whichidaddress "+str(whichidaddress))
emit(0, "store", whichidaddress)
getoken()
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
# print("#IFSmt")
getoken() # skip "if"
condition()
stmt()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#ElseSmt")
# emit(200, "jump", 47) # less than 2 go to else
getoken()
stmt()
# emit(0, "halt", '')
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
# emit(0, "store", 502)
getoken()
expression() # num>0
stmtList()
stmtList()
emit(0, "jump", 128)
#===============================================================================
def doStmt():
#===============================================================================
getoken()
expression()
stmt()
#===============================================================================
def returnStmt():
#===============================================================================
global returnadd;
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
returnadd = token.address
emit(600, "add", 514)
emit(601, "store", token.address)
emit(602, "return", '')
if token.token == rightbracket:
getoken()
if token.token == semicolon:
getoken()
#===============================================================================
def condition():
#===============================================================================
if token.token == notsym:
emit(0, "Not", '')
getoken()
conditionalexp()
#===============================================================================
def conditionalexp():
#===============================================================================
expression()
relational_op()
expression()
#===============================================================================
def relational_op():
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
term()
if op.token == lessthan:
# emit(0, "load", 501)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
elif op.token == greaterthan:
emit(0, "load", 504)
emit(0, "compare", 1)
emit(0, "jumpgt", 123)
# emit(0, "jump", 123)
elif op.token == lessthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
# emit(310, "writeInt", 502)
elif op.token == jumpeq:
# emit(0, "load", 200)
emit(0, "compare", 504)
emit(0, "jumpeq", 133)
emit(0, "jump", 138)
# emit(0, "halt", '')
# emit(0, "jump", 131)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> } <- wrong
<expression> ::= <term> { (+ | -) <term> }
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
idvalue = symtbl[whichidentifier].value
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
term()
if op.token == plus:
emit(0, "add", 501)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 1)
emit(0, "store", 501)
emit(0, "store", 1)
getoken()
term()
# print("term 1" + str(factor()))
## start==============================================================================
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
term()
# print("term 2" + str(term))
# print("#whichidentifier " + whichidentifier)
if op.token == plus:
emit(0, "loadv", idvalue)
emit(0, "add", 1)
# emit(0, "store", idaddress)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 500)
emit(0, "subtract", 1)
emit(0, "store", idaddress)
emit(0, "store", 1)
# emit(0, "writeInt", 501)
#===============================================================================
def term():
#===============================================================================
"""
term::= factor {(*|/) factor}
"""
global idaddress
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
factor()
if op.token == mpy:
emit(0, "mpy", 1)
# emit(0, "store", 205)
emit(0, "store", 502)
emit(0, "store", 1)
"""
while token.token == mpy:
op2 = token # remember -
getoken() # skip past -
factor()
emit(0, "mpy", 502)
emit(0, "store", idaddress)
emit(0, "store", 1)
"""
elif op.token == div:
# emit(0, "load", 502)
emit(0, "load",504)
emit(0, "div", 1)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= [+|-] identifier | number | (expression)
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
# [+|-] number
if token.token == plus:
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == number:
emit(0, "loadv", 0 - token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 1)
tokennum = token.value
getoken()
# identifier
elif token.token == idsym:
# print("#token address " + str(token.address))
# print("#token value " + str(token.value))
emit(0, "load", token.address)
getoken()
# (expression)
elif token.token == leftbracket:
expression()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == commentstr or token.token == rightbracket or token.token == leftsquarebrace or token.token == rightsquarebrace:
# print ("#Comment: " + str(token.name))
getoken()
elif token.token == breaksym:
emit(0, "halt", '')
getoken()
elif token.token == semicolon or token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym or token.token == returnsym or token.token == functionsym:
getoken()
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
global returnadd;
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
elif token.token == number:
print("#"+str(token.value))
emit(0, "loadv", token.value)
emit(0, "store", 1)
emit(0, "call", 600)
# emit(0, "writeint", 514)
emit(0, "writeint", returnadd)
else:
error("Function error : No_parameter_input_for_function")
"""
if token.token == comma:
getoken()
emit(0, "loadv", token.value)
emit(0, "call", 600)
getoken()
"""
if token.token == rightbracket:
getoken()
if token.token == declaresym:
varList()
# getoken()
if token.token == semicolon:
getoken()
if token.token == leftbrace:
getoken()
stmtList()
"""
if token.token == plus:
expression()
getoken()
"""
# emit(0, "call", 600)
# emit(0, "call", 600)
if token.token == semicolon:
getoken()
if token.token == rightbrace:
print ("#---Function Finished---")
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
varList()
if token.token == functionsym:
function()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("string.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
main()
"""
srcfile = open('test.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym","notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym,\
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
resultnum = 0
whichidentifier = None;
identifieraddress = 0;
i = 100
j = 100
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while(ch != " "):
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 =counterafter
i=counterafter
if counterafter != 100:
counterafter=counterafter+4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
# emit(i+2, "writech", '')
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <term> { (+ | - ) <term> }
# <term> ::= <factor> { (*|/) factor}
# <factor> ::= [+/-] ID | Number | expression
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
# <vars> ::= <id>[array]
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number: #number
print("#The address for "+ str(tn)+ " are ")
symtbl[tn].address = varptr;
emit(0, "constant", varptr)
while (token.value != 0):
# print("#address at " + str(varptr))
emit(0, "constant", token.value)
varptr = varptr + 1
token.value= token.value-1
array()
elif token.token == idsym: #id
# getoken()
expression()
getoken()
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("%c already declared\n", tn);
#assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
expression()
if token.token == rightsquarebrace:
getoken()
if token.token == rightbracket:
getoken()
if token.token == comma:
vars()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "add", 11)
emit(0, "store", 1)
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
# [expression]
#===============================================================================
global array;
expression()
print("#End of array expression")
"""
emit(0, "jump", 60)
emit(60, "load", 11)
emit(61, "add", 12)
emit(62, "store", 1)
"""
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == vars:
expression()
elif token.token == ifsym:
ifStmt()
if token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == dosym:
doStmt()
foreverStmt()
elif token.token == breaksym:
breakStmt()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == leftbracket or token.token == rightbracket or token.token == leftbrace or token.token == rightbrace or token.token == rightsquarebrace or token.token == assignsym:
getoken()
elif token.token == commentstr or token.token == breaksym:
# print(str(token.name))
getoken()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == semicolon or token.token == comma:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
global idaddress
getoken()# skip "print"
getoken()
if token.token == stringsym:
printMsg()
# emit(0, "writeint", 501)
if token.token == idsym:
emit(0, "writeint", 501)
else:
emit(0, "writeint", 501)
# emit(0, "writeint", 7)
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
# if counterafter != 100:
# emit(0,"loadv",counterafter )
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech",0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
getoken()
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "load", 7)
emit(0, "store", 500)
getoken()
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global resultnum
global whichidentifier
whichidentifier = token.name # Remember which ID on Left
whichidaddress = token.address
# print("#whichidentifier: " +str(whichidentifier))
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == idsym:
getoken()
elif token.token == leftbracket:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
# print("#Store value")
expression()
passtoken = token.value
# print(str(tokennum))
symtbl[whichidentifier].value = tokennum
emit(0, "store", whichidaddress)
getoken()
# emit(0, "writeint", whichidaddress)
# print("#assign " + str(whichidentifier))
# print("#assign " + str(whichidaddress))
# Save result into LHS runtime address
# expression()
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
print("#IFSmt")
getoken() # skip "if"
condition()
stmt()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#ElseSmt")
# emit(200, "jump", 47) # less than 2 go to else
getoken()
stmt()
# emit(314, "jump", 22)
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
emit(0, "store", 502)
getoken()
expression() # num>0
stmtList()
emit(0, "jump", 25)
#===============================================================================
def returnStmt():
#===============================================================================
emit(600,"add", 201)
emit(601,"store", 502)
emit(602,"return", '')
getoken()
#===============================================================================
def condition():
#===============================================================================
if token.token == notsym:
emit(0, "Not",'')
getoken()
conditionalexp()
#===============================================================================
def conditionalexp():
#===============================================================================
expression()
relational_op()
expression()
#===============================================================================
def relational_op():
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
term()
if op.token == lessthan:
# emit(0, "load", 501)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
elif op.token == greaterthan:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 43)
elif op.token == lessthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumplt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 43)
emit(0, "jumpeq", 43)
# emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
# emit(310, "writeInt", 502)
elif op.token == jumpeq:
emit(0, "load", 200)
emit(0, "compare", 502)
emit(0, "jumpeq", 29)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> } <- wrong
<expression> ::= <term> { (+ | -) <term> }
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
# print("#Identifier address " + str(idaddress))
"""
idvalue = symtbl[whichidentifier].value
print("#Identifier value " + str(idvalue))
"""
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
term()
if op.token == plus:
emit(0, "add", 501)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 1)
emit(0, "store", 501)
getoken()
term()
# print("term 1" + str(factor()))
## 1st start==============================================================================
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
term()
# print("term 2" + str(term))
# print("#whichidentifier " + whichidentifier)
if op.token == plus:
emit(0, "add", 502)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 500)
emit(0, "subtract", 1)
emit(0, "store", idaddress)
# emit(0, "writeInt", 501)
#===============================================================================
def term():
#===============================================================================
"""
term::= factor {(*|/) factor}
"""
global idaddress
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
factor()
if op.token == mpy:
emit(0, "mpy", 502)
# emit(0, "store", 205)
emit(0, "store", 502)
# emit(0, "store", 210)
while token.token == mpy:
op2 = token # remember -
getoken() # skip past -
factor()
emit(0, "mpy", 502)
# emit(0, "store", 205)
emit(0, "store", idaddress)
elif op.token == div:
emit(0, "load", 502)
emit(0, "div", 202)
emit(0, "store", 503)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= [+|-] identifier | number | (expression)
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
# [+|-] number
if token.token == plus:
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == number:
emit(0, "loadv", 0-token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store-ind", 0)
emit(0, "store", 1)
tokennum = token.value
getoken()
# identifier
elif token.token == idsym:
# print("#token address " + str(token.address))
# print("#token value " + str(token.value))
emit(0, "load", token.address)
getoken()
# (expression)
elif token.token == leftbracket:
expression()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == stringsym: #################
print("#String: " + str(token.name))
# printMsg()
printStmt()
getoken()
elif token.token == commentstr or token.token == rightbracket or token.token == leftsquarebrace or token.token == rightsquarebrace:
# print ("#Comment: " + str(token.name))
getoken()
elif token.token == breaksym:
emit(0,"halt", 0)
elif token.token == semicolon or token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym or token.token == returnsym or token.token == functionsym:
getoken()
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == idsym:
getoken()
if token.token == varsym :
vars()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
print ("#---Function Finished---")
#===============================================================================
def program():
#===============================================================================
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
# else: error("Semicolon expected")
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == semicolon:
getoken()
if token.token == functionsym:
function()
if token.token == semicolon:
getoken()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 9)
main()
"""
srcfile = open('tiny_1.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym","notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym,\
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
resultnum = 0
whichidentifier = None;
identifieraddress = 0;
i = 100
j = 100
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while(ch != " "):
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 =counterafter
i=counterafter
if counterafter != 100:
counterafter=counterafter+4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
# emit(i+2, "writech", '')
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <term> { (+ | - ) <term> }
# <term> ::= <factor> { (*|/) factor}
# <factor> ::= [+/-] ID | Number | expression
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
# <vars> ::= <id>[array]
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number: #number
print("#The address for "+ str(tn)+ " are ")
symtbl[tn].address = varptr;
emit(0, "constant", varptr)
while (token.value != 0):
# print("#address at " + str(varptr))
emit(0, "constant", token.value)
varptr = varptr + 1
token.value= token.value-1
array()
elif token.token == idsym: #id
# getoken()
expression()
getoken()
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("%c already declared\n", tn);
#assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
expression()
if token.token == rightbracket:
getoken()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
# [expression]
#===============================================================================
global array;
expression()
#===============================================================================
def parameters():
#===============================================================================
vars()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == vars:
expression()
if token.token == ifsym:
ifStmt()
if token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == dosym:
doStmt()
foreverStmt()
elif token.token == breaksym:
factor()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == leftbracket or token.token == rightbracket or token.token == leftbrace or token.token == rightbrace or token.token == rightsquarebrace or token.token == assignsym:
getoken()
elif token.token == commentstr or token.token == breaksym:
# print(str(token.name))
getoken()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == semicolon or token.token == comma:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
global idaddress
getoken()# skip "print"
getoken()
if token.token == stringsym:
printMsg()
# emit(0, "writeint", 501)
if token.token == idsym:
emit(0, "writeint", 501)
emit(0, "halt", '')
else:
emit(0, "writeint", 501)
# emit(0, "writeint", 7)
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech",0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
getoken()
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "load", 7)
emit(0, "store", 500)
getoken()
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global resultnum
global whichidentifier
whichidentifier = token.name # Remember which ID on Left
whichidaddress = token.address
# print("#whichidentifier: " +str(whichidentifier))
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == idsym:
getoken()
elif token.token == leftbracket:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
# print("#Store value")
expression()
passtoken = token.value
# print(str(tokennum))
symtbl[whichidentifier].value = tokennum
emit(0, "store", whichidaddress)
getoken()
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
print("#IFSmt")
getoken() # skip "if"
condition()
stmt()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#ElseSmt")
# emit(200, "jump", 47) # less than 2 go to else
getoken()
stmt()
# emit(0, "halt", '')
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
emit(0, "store", 502)
getoken()
expression() # num>0
stmtList()
emit(0, "jump", 28)
#===============================================================================
def returnStmt():
#===============================================================================
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
emit(600, "add", 504)
emit(601, "store", 503)
emit(602, "return", '')
if token.token == rightbracket:
getoken()
if token.token == semicolon:
getoken()
#===============================================================================
def condition():
#===============================================================================
if token.token == notsym:
emit(0, "Not",'')
getoken()
conditionalexp()
#===============================================================================
def conditionalexp():
#===============================================================================
expression()
relational_op()
expression()
#===============================================================================
def relational_op():
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
term()
if op.token == lessthan:
# emit(0, "load", 501)
emit(0, "compare", 500)
emit(0, "jumplt", 46)
elif op.token == greaterthan:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 46)
elif op.token == lessthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumplt", 46)
emit(0, "jumpeq", 46)
# emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 46)
emit(0, "jumpeq", 46)
# emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
# emit(310, "writeInt", 502)
elif op.token == jumpeq:
# emit(0, "load", 200)
emit(0, "compare", 501)
emit(0, "jumpeq", 52)
emit(0, "jump", 57)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> } <- wrong
<expression> ::= <term> { (+ | -) <term> }
"""
global whichidentifier
global idaddress
global idvalue
idaddress = symtbl[whichidentifier].address
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
term()
if op.token == plus:
emit(0, "add", 501)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 1)
emit(0, "store", 501)
getoken()
term()
# print("term 1" + str(factor()))
## 1st start==============================================================================
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
term()
# print("term 2" + str(term))
# print("#whichidentifier " + whichidentifier)
if op.token == plus:
emit(0, "add", 502)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 500)
emit(0, "subtract", 1)
emit(0, "store", idaddress)
# emit(0, "writeInt", 501)
#===============================================================================
def term():
#===============================================================================
"""
term::= factor {(*|/) factor}
"""
global idaddress
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
factor()
if op.token == mpy:
emit(0, "mpy", 502)
# emit(0, "store", 205)
emit(0, "store", 502)
# emit(0, "store", 210)
while token.token == mpy:
op2 = token # remember -
getoken() # skip past -
factor()
emit(0, "mpy", 502)
# emit(0, "store", 205)
emit(0, "store", idaddress)
elif op.token == div:
emit(0, "load", 502)
emit(0, "div", 202)
emit(0, "store", 503)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= [+|-] identifier | number | (expression)
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
# [+|-] number
if token.token == plus:
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == number:
emit(0, "loadv", 0-token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 1)
tokennum = token.value
getoken()
# identifier
elif token.token == idsym:
# print("#token address " + str(token.address))
# print("#token value " + str(token.value))
emit(0, "load", token.address)
getoken()
# (expression)
elif token.token == leftbracket:
expression()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == stringsym: #################
print("#String: " + str(token.name))
# printMsg()
printStmt()
getoken()
elif token.token == commentstr or token.token == rightbracket or token.token == leftsquarebrace or token.token == rightsquarebrace:
# print ("#Comment: " + str(token.name))
getoken()
elif token.token == breaksym:
emit(0,"halt", 0)
getoken()
elif token.token == semicolon or token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym or token.token == returnsym or token.token == functionsym:
getoken()
else:
error("Start Of Factor Expected")
"""
elif token.token == assignsym:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
"""
#===============================================================================
def function():
#===============================================================================
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
elif token.token == number:
print("#"+str(token.value))
emit(0, "loadv", token.value)
emit(0, "call", 600)
getoken()
else:
error("Function error : No_parameter_input_for_function")
if token.token == rightbracket:
getoken()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == semicolon:
getoken()
if token.token == leftbrace:
getoken()
if token.token == plus:
expression
getoken()
stmt()
# emit(0, "call", 600)
# returnStmt()
# emit(0, "call", 600)
if token.token == semicolon:
getoken()
if token.token == rightbrace:
print ("#---Function Finished---")
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == functionsym:
function()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("string.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 9)
main()
# emit(0, "constant", "'A'") #need in break,comment,exitloop,writer-if-read-write-ch program
# emit(0, "constant", 10)
# emit(0, "constant", 12)
# emit(0, "constant", 25)
# emit(0, "constant", -10)
"""
srcfile = open('tiny_1.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym", "notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
resultnum = 0
whichidentifier = None;
identifieraddress = 0;
arrayaddress = 0;
arrstar = 0;
returnadd = 0;
i = 700
j = 700
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
emit(0, "halt", '')
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while ch != " ":
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 = counterafter
i = counterafter
if counterafter != 700:
counterafter = counterafter + 4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
else:
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <term> { (+ | - ) <term> }
# <term> ::= <factor> { (*|/) factor}
# <factor> ::= [+/-] ID | Number | expression
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
# <vars> ::= <id>[array]
#===============================================================================
def varList() :
#===============================================================================
vars()
while token.token != semicolon :
if token.token == comma:
vars()
getoken()
# else: error("comma or semicolon expected in declaration")
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
global whichidaddress;
global arrayaddress;
global arrstar;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number: #number
print("#The address for "+ str(tn)+ " are ")
symtbl[tn].address = varptr;
emit(0, "constant", varptr)
arrstar = varptr;
while (token.value != 0):
# print("#address at " + str(varptr))
varptr = varptr + 1
token.value= token.value-1
emit(0, "constant", varptr)
# getoken()
array()
"""
elif token.token == idsym: #id
# getoken()
expression()
getoken()
"""
elif token.token == stringsym:
error("Array can't not accept string")
error("Array only accept expression")
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("#"),
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1;
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
if token.token == number:
arrayaddress = arrstar+token.value
whichidaddress = arrayaddress
print"#"+"Array address", str(arrayaddress)
getoken()
if token.token == rightsquarebrace:
stmt()
# getoken()
getoken()
# if token.token == leftsquarebrace:
# vars()
# getoken()
# if token.token == rightbracket:
# getoken()
#===============================================================================
def array():
# [expression]
#===============================================================================
global array;
expression()
#===============================================================================
def parameters():
#===============================================================================
vars()
if token.token == comma:
getoken()
vars()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == vars:
expression()
if token.token == ifsym:
ifStmt()
if token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == declaresym:
varList()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
factor()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == leftbracket or token.token == rightbracket or token.token == leftbrace or token.token == rightbrace or token.token == rightsquarebrace or token.token == assignsym:
getoken()
elif token.token == commentstr or token.token == breaksym:
# print(str(token.name))
getoken()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
elif token.token == semicolon or token.token == comma:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
global idaddress
getoken() # skip "print"
getoken()
printta = token.address
if token.token == idsym:
# print("#This is a id")
getoken()
tempad = token.address
if token.token == leftbracket:
function()
# emit(0, "writeint", 514)
if token.token == leftsquarebrace:
getoken()
if token.token == number:
arraryadd = arrstar+token.value
emit(0, "writeint", arraryadd)
getoken()
else:
emit(0, "writeint", printta)
getoken()
elif token.token == stringsym:
printMsg()
if token.token == idsym:
tempad=token.address;
getoken()
printta = token.address
if token.token == leftbracket:
function()
getoken()
else:
emit(0, "writeint",tempad)
getoken()
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech", 0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
getoken()
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "load", 7)
emit(0, "store", 500)
# getoken()
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global resultnum
global whichidentifier
global whichidaddress
global arrayaddress
global tempadd
whichidentifier = token.name # Remember which ID on Left
tempadd = token.address
# print("#arrayaddres: " +str(tempadd))
if arrayaddress != 0:
whichidaddress = token.address;
else:
whichidaddress = arrayaddress;
# print("#whichaddress: " +str(whichaddress))
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == idsym:
getoken()
elif token.token == leftbracket:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == semicolon:
getoken()
else:
error("Expected = in assignment statement")
# print("#Store value")
expression()
passtoken = token.value
# print(str(whichidaddress))
if whichidaddress == 0:
print("#tokenaddress " + str(tempadd))
emit(0, "store", tempadd)
else:
symtbl[whichidentifier].value = tokennum
print("#whichidaddress "+str(whichidaddress))
emit(0, "store", whichidaddress)
getoken()
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
# print("#IFSmt")
getoken() # skip "if"
condition()
stmtList()
getoken()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
# print("#ElseSmt")
# emit(200, "jump", 47) # less than 2 go to else
getoken()
stmtList()
getoken()
# emit(0, "halt", '')
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
# emit(0, "store", 502)
getoken()
expression() # num>0
stmtList()
emit(0, "jump", 35)
getoken()
#===============================================================================
def doStmt():
#===============================================================================
getoken()
expression()
stmt()
#===============================================================================
def returnStmt():
#===============================================================================
global returnadd;
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
returnadd = token.address
emit(600, "add", 516)
emit(601, "store", token.address)
emit(602, "return", '')
if token.token == rightbracket:
getoken()
if token.token == semicolon:
getoken()
#===============================================================================
def condition():
#===============================================================================
if token.token == notsym:
emit(0, "Not", '')
getoken()
conditionalexp()
#===============================================================================
def conditionalexp():
#===============================================================================
expression()
relational_op()
expression()
#===============================================================================
def relational_op():
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
term()
if op.token == lessthan:
# emit(0, "load", 501)
emit(0, "compare", 500)
emit(0, "jumplt", 46)
elif op.token == greaterthan:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 46)
elif op.token == lessthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumplt", 46)
emit(0, "jumpeq", 46)
# emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpgt", 55)
emit(0, "jumpeq", 55)
# emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
# emit(310, "writeInt", 502)
elif op.token == jumpeq:
# emit(0, "load", 200)
emit(0, "compare", 500)
emit(0, "jumpeq", 23)
emit(0, "jump", 27)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> } <- wrong
<expression> ::= <term> { (+ | -) <term> }
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
idvalue = symtbl[whichidentifier].value
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
term()
if op.token == plus:
emit(0, "add", 501)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 1)
emit(0, "store", 501)
emit(0, "store", 1)
getoken()
term()
# print("term 1" + str(factor()))
## 1st start==============================================================================
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
term()
# print("term 2" + str(term))
# print("#whichidentifier " + whichidentifier)
if op.token == plus:
emit(0, "loadv", idvalue)
emit(0, "add", 1)
# emit(0, "store", idaddress)
# emit(0, "store", 500)
# emit(0, "writeInt", 500)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 500)
emit(0, "subtract", 1)
emit(0, "store", idaddress)
emit(0, "store", 1)
# emit(0, "writeInt", 501)
#===============================================================================
def term():
#===============================================================================
"""
term::= factor {(*|/) factor}
"""
global idaddress
tempa = token.address
# print "#tempa", str(tempa)
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
tempb = token.address
# print "#tempb", str(tempb)
factor()
if op.token == mpy:
# emit(0, "load", tempa)
emit(0, "mpy", 1)
emit(0, "store", 502)
emit(0, "store", 1)
while token.token == mpy:
op2 = token # remember -
getoken() # skip past -
factor()
emit(0, "mpy", 502)
emit(0, "store", idaddress)
emit(0, "store", 1)
elif op.token == div:
# emit(0, "load", 502)
emit(0, "load",504)
emit(0, "div", 1)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= [+|-] identifier | number | (expression)
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
global tempadd
# [+|-] number
if token.token == plus:
getoken()
if token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == number:
emit(0, "loadv", 0 - token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
if token.value == 0:
emit(0, "store", 200)
else:
emit(0, "store", 1)
tokennum = token.value
getoken()
# identifier
elif token.token == idsym:
emit(0, "load", token.address)
getoken()
# (expression)
elif token.token == leftbracket:
expression()
elif token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpeq or token.token == jumpne:
relational_op()
# elif token.token == stringsym: #################
# print("#String: " + str(token.name))
# printMsg()
# printStmt()
# getoken()
elif token.token == commentstr or token.token == rightbracket or token.token == leftsquarebrace or token.token == rightsquarebrace:
# print ("#Comment: " + str(token.name))
getoken()
elif token.token == breaksym:
emit(0, "jump", 31)
# emit(0, "halt", '')
getoken()
elif token.token == semicolon or token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym or token.token == returnsym or token.token == functionsym:
getoken()
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
global returnadd;
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
elif token.token == number:
print("#"+str(token.value))
emit(0, "loadv", token.value)
emit(0, "store", 1)
emit(0, "call", 600)
# emit(0, "writeint", 514)
emit(0, "writeint", returnadd)
else:
error("Function error : No_parameter_input_for_function")
"""
if token.token == comma:
getoken()
emit(0, "loadv", token.value)
emit(0, "call", 600)
getoken()
"""
if token.token == rightbracket:
getoken()
if token.token == declaresym:
varList()
# getoken()
if token.token == semicolon:
getoken()
if token.token == leftbrace:
getoken()
stmtList()
"""
if token.token == plus:
expression()
getoken()
"""
# emit(0, "call", 600)
# emit(0, "call", 600)
if token.token == semicolon:
getoken()
if token.token == rightbrace:
print ("#---Function Finished---")
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
varList()
if token.token == functionsym:
function()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
main()
"""
srcfile = open('test.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" MicroCompiler
<program> ::= program <id>; declare declareList; { StmtList}
<declareList> ::= varDeclare {, varDeclare};
<varDeclare> ::= idsym [ = number | "[" number "]"
<stmt> ::= variable( = expression | parameter) | <printStmt> ::= print "("<print_item>{,<print_item>}")"| if <condition> <stmt> [else <stmt>]|
<readStmt> ::= read "("variable")" | <id> = <expression> |
while <condition> <stmt>| <stmtList> | do <stmsList> forever | break | continue
<stmtlist> ::= <stmt> { ; <stmt> }
<print_item> ::= expression | string
<condition> ::= [not] <conditionalexp>
<conditionalexp> ::= <expression>[<relational_op> <expression>]
<relational_op> ::= <|<=|==|!=|>|>=
<expression> ::= <term> { (+ | -) <term> }
<term> ::= <factor> {(*|/) <factor>}
<factor> ::= [+|-] <id> | <number> | "("<expression>")"
<variable> ::= <id> [<arraySub>]
<arraySub> ::= "["<expression>"]"
<constnat> ::= <number>
<id> ::= A-Z{A-Z _ 0-9 ? }
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varDeclareym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym", "notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebracket", "rightsquarebracket",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraySubsym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varDeclareym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebracket, rightsquarebracket, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraySubsym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
whichidentifier = None;
arraySubaddress = 0;
endaddress = 0;
i = 700
j = 700
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varDeclareym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebracket)
addToSymTbl(']', rightsquarebracket)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is #
elif ch == '#':
str1 = ""
ch = getch()
#End while if the comment have ""
while ch != " ":
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
print("#comment: " + str(str1))
return
# If ch is "
elif ch == '"':
a = ""
ch = getch()
counterafter1 = counterafter
i = counterafter
if counterafter != 700:
counterafter = counterafter + 4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'" + ch + "'"
emit(i, "constant", b)
ch = getch()
else:
ch = getch()
i = i + 1
emit(i, "constant", 13)
emit(i + 1, "constant", 0)
emit(i + 2, "return", '')
ch = getch()
counterafter = i + 3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is <
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is !
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is =
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is >
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= program <id>; declare declareList; { StmtList}
# <declareList> ::= varDeclare {, varDeclare};
# <varDeclare> ::= idsym [ = number | "[" number "]"
# <stmt> ::= variable( = expression | parameter) | <printStmt> ::= print "("<print_item>{,<print_item>}")"| if <condition> <stmt> [else <stmt>]|
# <readStmt> ::= read "("variable")" | <id> = <expression> |
# while <condition> <stmt>| <stmtList> | do <stmsList> forever | break | continue
# <stmtlist> ::= <stmt> { ; <stmt> }
# <print_item> ::= expression | string
# <condition> ::= [not] <conditionalexp>
# <conditionalexp> ::= <expression>[<relational_op> <expression>]
# <relational_op> ::= <|<=|==|!=|>|>=
# <expression> ::= <term> { (+ | -) <term> }
# <term> ::= <factor> {(*|/) <factor>}
# <factor> ::= [+|-] <id> | <number> | "("<expression>")"
# <variable> ::= <id> [<arraySub>]
# <arraySub> ::= "["<expression>"]"
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#===============================================================================
def declareList() :
# declareList ::= varDeclare {, varDeclare};
#===============================================================================
varDeclare()
while token.token != semicolon :
if token.token == comma:
varDeclare()
getoken()
#===============================================================================
def varDeclare() :
# <varDeclare> ::= idsym [ = number | "[" number "]"
#===============================================================================
ta = 0
tn = []
global varptr;
global whichidaddress;
global arraySubaddress;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebracket:
getoken()
if token.token == number: # number
symtbl[tn].address = varptr;
while (token.value != 0):
varptr = varptr + 1
token.value = token.value - 1
getoken()
if token.token == rightsquarebracket:
getoken()
else:
error("Expected rightsquarebracket at the end of arraySub declare")
else:
if ta != 0:
print("#"),
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1;
# emit(0, "load", varptr)
#===============================================================================
def variable():
# <variable> ::= <id> [<arraySub>]
#===============================================================================
if token.token == idsym:
expression()
# getoken()
if token.token == leftsquarebracket:
arraySub()
#===============================================================================
def arraySub():
# <arraySub> ::= "["<expression>"]"
#===============================================================================
global arraySub;
expression()
if token.token == rightsquarebracket:
getoken()
else:
error("Expected rightsquarebracket for array expression")
#===============================================================================
def parameters():
#===============================================================================
varDeclare()
if token.token == comma:
varDeclare()
# getoken()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
# <stmt> ::= variable( = expression | parameter) | <printStmt> ::= print "("<print_item>{,<print_item>}")"| if <condition> <stmt> [else <stmt>]|
# <readStmt> ::= read "("variable")" | <id> = <expression> |
# while <condition> <stmt>| <stmtList> | do <stmsList> forever | break | continue
#===============================================================================
def stmt():
#===============================================================================
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == variable:
getoken()
if token.token == assignsym:
expression()
else:
parameter()
elif token.token == ifsym:
ifStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == declaresym:
declareList()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
emit(0, "halt", '')
getoken()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
else:
error("Expected start of a statement")
if token.token == semicolon or token.token == comma:
getoken()
#===============================================================================
def printStmt():
# <printStmt> ::= print "("<print_item>{,<print_item>}")"
#===============================================================================
getoken() # skip "print"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket before the print-item")
print_item()
if token.token == comma:
print_item()
getoken()
if token.token == rightbracket:
getoken()
if token.token == semicolon:
getoken()
#===============================================================================
def print_item():
# <print_item> ::= expression | string
#===============================================================================
# expression
if token.token == idsym:
expression()
emit(0, "writeint", 0)
getoken()
# string
if token.token == stringsym:
printMsg()
getoken()
#===============================================================================
def printMsg():
# <printMsg> ::= printMsg <expression>
#===============================================================================
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech", 0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
#===============================================================================
def readStmt():
# <readStmt> ::= read "("variable")"
#===============================================================================
global idaddress
getoken()
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket before the variable")
variable()
emit(0, "readint", idaddress)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket after the variable")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global whichidentifier
global whichidaddress
global arraySubaddress
whichidentifier = token.name # Remember which ID on Left
tempadd = token.address
if arraySubaddress != 0:
whichidaddress = token.address;
else:
whichidaddress = arraySubaddress;
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
else:
error("Expected = in assignment statement")
expression()
passtoken = token.value
emit(0, "store", tempadd)
getoken()
#===============================================================================
def ifStmt():
# <ifStmt> ::= if (condition) statement [else statement]
#===============================================================================
getoken() # skip "if"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket at the start of if-condition")
condition()
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket at the end of if-condition")
if token.token == leftbrace:
getoken()
else:
error("Expected leftbrace at the start of if-statement")
stmtList()
getoken()
if token.token == rightbrace:
getoken()
if token.token == elsesym:
getoken()
if token.token == leftbrace:
getoken()
else:
error("Expected leftbrace at the start of else-statement")
stmt()
getoken()
if token.token == rightbrace:
getoken()
else:
error("Expected rightbrace at the end of else-statement")
#===============================================================================
def whileStmt():
# <whileStmt> ::= while (condition)statement
#===============================================================================
getoken() # skip "while"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket at the start of while-condition")
condition()
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket at the end of while-condition")
if token.token == leftbrace:
getoken()
else:
error("Expected leftbrace at the start of while-statement")
stmtList()
# emit(0,"jump",127)
if token.token == rightbrace:
getoken()
else:
error("Expected rightbrace at the end of while-statement")
#===============================================================================
def doStmt():
# doStmt ::= <do> stmtList <forever>
#===============================================================================
getoken()
stmtList()
#===============================================================================
def returnStmt():
#===============================================================================
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
expression()
emit(0, "jump", 0)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket for return-statement")
#===============================================================================
def condition():
# condition ::= [not] conditional-expression
#===============================================================================
notsign = False;
if token.token == notsym:
notsign = True;
getoken()
if notsign == True:
emit(0, "Not", '')
conditionalexp()
else:
conditionalexp()
#===============================================================================
def conditionalexp():
# <conditionalexp> ::= <expression>[relational_op <expression>]
#===============================================================================
expression()
relational_op()
#===============================================================================
def relational_op():
# <relational_op> ::= <|<=|==|!=|>|>=
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
emit(0, "store", 686) # Save current expression result
expression()
if op.token == lessthan:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumplt", 137)
emit(0, "jump", 158)
elif op.token == greaterthan:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpgt", 158)
emit(0, "jump", 137)
elif op.token == lessthanequal:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumplt", 145)
emit(0, "jumpeq", 145)
emit(0, "jump", 159)
elif op.token == greaterthanequal:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpgt", 145)
emit(0, "jumpeq", 145)
emit(0, "jump", 159)
elif op.token == jumpne:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpne", 128)
emit(0, "jump", 125)
elif op.token == jumpeq:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpeq", 125)
emit(0, "jump", 128)
#===============================================================================
def expression():
# <expression> ::= <term> { (+ | -) <term> }
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 687 as Temporary variables
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
idvalue = symtbl[whichidentifier].value
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
emit(0, "store", 687) # Save current result
term()
if op.token == plus:
emit(0, "add", 687)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 5)
emit(0, "load", 687)
emit(0, "subtract", 5)
#===============================================================================
def term():
# <term> ::= <factor> {(*|/) <factor>}
#===============================================================================
"""
Use addresses 688 as Temporary variables
"""
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
emit(0, "store", 688) # Save term result
# save here xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
factor()
if op.token == mpy:
emit(0, "mpy", 688)
elif op.token == div:
emit(0, "store", 5)
emit(0, "load", 688)
emit(0, "div", 5)
#===============================================================================
def factor():
# <factor> ::= [+|-] <id> | <number> | "("<expression>")"
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
tokensign = False
# [+|-] number
if token.token == plus:
getoken()
# - (unary)
elif token.token == minus:
tokensign = True
getoken()
# number
if token.token == number:
if tokensign == True:
emit(0, "loadv", 0 - token.value)
getoken()
else:
emit(0, "loadv", token.value)
tokennum = token.value
getoken()
# id
elif token.token == idsym:
emit(0, "load", token.address)
idaddress = token.address
tempaddress = token.address
getoken()
if token.token == leftbracket:
getoken()
expression()
if token.token == comma:
# For two parameters
emit(0, "store", tempaddress + 1)
getoken()
expression()
emit(0, "call", 419)
else:
# For one parameter
emit(0, "store", tempaddress + 2)
emit(0, "call", 410)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket after the factor")
# "(" <expression> ")"
elif token.token == leftbracket:
emit(0, "store", 689)
emit(0, "push", 1)
getoken()
expression()
if token.token == rightbracket:
getoken()
emit(0, "pop", 1)
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
global codeptr
global endaddress
beginaddress = codeptr
if endaddress < 200:
codeptr = codeptr + 400
elif endaddress > 400:
codeptr = endaddress
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
else:
error("Function error : No_parameter_input_for_function")
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket for parameter")
if token.token == semicolon:
getoken()
else:
error("Expected semicolon after parameter")
if token.token == declaresym:
declareList()
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
getoken()
print ("#---Function Finished---")
endaddress = codeptr
#===============================================================================
def program():
# <program> ::= program <id>; declare declareList; { StmtList}
#===============================================================================
global codeptr
beginaddress = codeptr
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
declareList()
while token.token == functionsym:
function()
codeptr = beginaddress
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test2.txt") as srcfile:
line = srcfile.read()
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py"
main()
"""
srcfile = open('test.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebrace", "rightsquarebrace",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraysym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varsym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebrace, rightsquarebrace, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraysym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
i = 100
j = 100
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebrace)
addToSymTbl(']', rightsquarebrace)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" % \
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# elif ch == "-":
# x = ""
# no =""
# ch = getch()
# if ch.isdigit() ==True:
# while ch.isdigit():
# x = str(x) + str(ch)
# ch = getch()
#
# ch = ungetch()
#
# no = "-" + str(x)
#
# token = symbol(no, number, value = int(no))
elif ch == '#':
str1 = ""
ch = getch()
while(ch != " "):
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 =counterafter
i=counterafter
if counterafter != 100:
counterafter=counterafter+4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
# emit(i+2, "writech", '')
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
# printMsg()
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, lessthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | - | * | /) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number:
# emit(0, "loadv",token.value)
# emit(0, "store", token.value+300)
array()
if token.token == rightsquarebrace:
getoken()
else:
error("var error: ] expected - 1")
else:
getoken()
elif tn == "i":
# print("#The array name is " + str(tn)+"\n")
if token.token == rightsquarebrace:
getoken()
else:
if ta != 0:
print("%c already declared\n", tn);
#assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1
# emit(0, "load", varptr)
if token.token == assignsym:
getoken()
expression()
if token.token == rightbracket:
getoken()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
#===============================================================================
global array;
# getoken()
while (token.token == number):
print("#array address")
emit(0, "store", token.value + 400)
print("#array value " +str(token.value))
getoken();
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <vars> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraysym:
# array()
if token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == dosym:
doStmt()
elif token.token == returnsym:
returnStmt()
elif token.token == functionsym:
function()
elif token.token == continuesym:
continueStmt()
elif token.token == leftbracket:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == stringsym:
# print(str(token.name))
printMsg()
getoken()
elif token.token == assignsym:
getoken()
elif token.token == commentstr:
# print(str(token.name))
getoken()
elif token.token == breaksym:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == rightbrace:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
getoken()# skip "print"
if token.token == idsym:
if token.token == leftbracket:
returnStmt
else:
stmt()
emit(0, "load", 501)
expression()
emit(0, "writeint", 502)
emit(0, "writeint", 7)
emit(0, "writeint", 501)
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
# print("#"+str(counterafter)+ " counterafter")
# print("#"+str(counterafter1)+ " counterafter1")
# if counterafter != 100:
# emit(0,"loadv",counterafter )
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech",0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read <vars>"""
getoken()
emit(0, "readint", 7)
emit(0, "store", 502)
getoken()
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == leftsquarebrace:
vars()
elif token.token == leftbrace:
vars()
elif token.token == jumpeq:
getoken()
elif token.token == jumpne:
getoken()
elif token.token == rightbracket:
getoken()
elif token.token == lessthanequal:
getoken()
elif token.token == idsym:
getoken()
elif token.token == leftbracket:
getoken()
elif token.token == comma:
getoken()
elif token.token == greaterthanequal:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
# if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
print("#IFSmt")
getoken() # skip "if"
expression()
stmt()
expression()
#===============================================================================
def elseStmt():
# if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
print("#ElseSmt")
emit(200, "jump", 47) # less than 2 go to else
getoken()
stmt()
expression()
# emit(314, "jump", 22)
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
# emit(0, "load", 201)
emit(0, "store", 502)
getoken()
expression() # num>0
# emit(0, "jump", 22)
stmt()
#===============================================================================
def returnStmt():
#===============================================================================
emit(600,"add", 201)
emit(601,"store", 502)
emit(602,"return", '')
getoken()
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> }
"""
if token.token == leftbracket: getoken()
factor()
## 1st start==============================================================================
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
# emit(0, "store", 997) # Save current result
factor()
if op.token == plus:
emit(0, "add", 502)
emit(0, "store", 502)
# emit(0, "jump", 22)
# if op.token == leftbracket:getoken()
if op.token == minus:
## 2nd start==============================================================================
if token.token == plus or token.token == minus or token.token == mpy or token.token == div:
op2 = token# remember *
getoken() # skip past *
factor()
if op2.token == plus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "add", 203)
emit(0, "store", 500)
if op2.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 201)
emit(0, "store", 501)
if op2.token == mpy:
## 3rd start==============================================================================
while token.token == plus or token.token == minus or token.token == mpy or token.token == div:
op3 = token# remember *
getoken() # skip past *
factor()
if op3.token == plus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "add", 203)
emit(0, "store", 500)
if op3.token == minus: # Subtract - have to swap operand order
emit(0, "load", 501)
emit(0, "subtract", 210)
emit(0, "store", 501)
if op3.token == mpy:
factor()
## 4th start==============================================================================
while token.token == plus or token.token == minus or token.token == mpy or token.token == div:
if token.token == plus:
op4 = token# remember +
getoken() # skip past +
factor()
if op4.token == plus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "add", 203)
emit(0, "store", 500)
if token.token == minus:
op4 = token# remember -
getoken() # skip past -
factor()
if op4.token == minus: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "subtract", 203)
emit(0, "store", 500)
if token.token == mpy:
op4 = token
getoken()
factor()
if op4.token == mpy: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "mpy", 203)
emit(0, "store", 500)
if token.token == div:
op4 = token
getoken()
factor()
if op4.token == div: # Subtract - have to swap operand order
emit(0, "load", 210)
emit(0, "div", 203)
emit(0, "store", 500)
## 4th end==============================================================================
emit(0, "mpy", 205)
emit(0, "store", 501)
## 3rd end==============================================================================
emit(0, "mpy", 210)
emit(0, "store", 501)
## 2nd end==============================================================================
emit(0, "load", 590)
emit(0, "subtract", 501)
emit(0, "store", 501)
# emit(0, "jump", 24)
elif op.token == mpy:
emit(0, "load", 206)
emit(0, "mpy", 7)
emit(0, "store", 502)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "load", 590)
emit(0, "subtract", 201)
emit(0, "store", 501)
emit(0, "writeInt", 502)
elif op.token == div:
emit(0, "load", 502)
emit(0, "div", 202)
emit(0, "store", 7)
elif op.token == lessthan:
emit(0, "load", 501)
emit(0, "compare", 212)
emit(0, "jumplt", 300)
emit(300, "writeInt", 502)
elif op.token == greaterthan:
emit(0, "load", 208)
emit(0, "compare", 7)
emit(0, "jumpgt", 47)
elif op.token == lessthanequal:
emit(0, "load", 501)
emit(0, "compare", 212)
emit(0, "jumplt", 300)
emit(300, "writeInt", 502)
elif op.token == greaterthanequal:
emit(0, "load", 501)
emit(0, "compare", 212)
emit(0, "jumpgt", 300)
emit(300, "writeInt", 502)
elif op.token == jumpne:
emit(0, "load", 205)
emit(0, "compare", 502)
emit(0, "jumpne", 310)
emit(0, "writeInt", 0)
emit(0, "halt", 0)
emit(310, "writeInt", 502)
elif op.token == jumpeq:
emit(0, "load", 210)
emit(0, "compare", 7)
emit(0, "jumpgt", 29)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= identifier | number
"""
if token.token == plus:
getoken()
# - (unary)
elif token.token == minus:
getoken()
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == stringsym: #################
print("#String: " + str(token.name))
printMsg()
getoken()
elif token.token == number:
if token.value == 5:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
emit(0, "call", 600)
emit(0, "writeint", 502)
getoken()
else:
emit(0, "loadv", token.value)
emit(0, "store", 200 + token.value)
getoken()
elif token.token == commentstr:
# print ("#Comment: " + str(token.name))
getoken()
# elif token.token == assignsym:
# getoken()
elif token.token == leftbracket:
getoken()
# print "this is token",tokenNames[token.token]
elif token.token == leftsquarebrace: getoken()
elif token.token == rightbracket:
getoken()
elif token.token == breaksym:
emit(0,"halt", 0)
elif token.token == lessthanequal:
getoken()
elif token.token == greaterthanequal:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == functionsym:
getoken()
elif token.token == rightbrace:
print("")
elif token.token == ifsym:
ifStmt()
elif token.token == printsym:
getoken()
elif token.token == returnsym:
getoken()
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
if token.token == functionsym:
getoken()
if token.token == idsym:
getoken()
if token.token == idsym:
getoken()
if token.token == varsym :
vars()
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == leftbrace:
vars()
stmtList()
if token.token == rightbrace:
print ("#---Function Finished---")
#===============================================================================
def program():
#===============================================================================
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
# else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
# else: error("Program name expected")
if token.token == semicolon:
getoken()
# else: error("Semicolon expected")
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
if token.token == functionsym:
function()
if token.token == leftbrace:
getoken()
stmtList()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 9)
main()
# emit(0, "constant", "'A'") #need in break,comment,exitloop,writer-if-read-write-ch program
# emit(0, "constant", 10)
# emit(0, "constant", 12)
# emit(0, "constant", 25)
# emit(0, "constant", -10)
"""
srcfile = open('tiny_1.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <varDeclare > <stmtlist> }
<varDeclare> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varDeclareym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym", "notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebracket", "rightsquarebracket",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraySubsym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varDeclareym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebracket, rightsquarebracket, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraySubsym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
resultnum = 0
whichidentifier = None;
identifieraddress = 0;
arraySubaddress = 0;
arrstar = 0;
returnadd = 0;
endaddress = 0;
i = 700
j = 700
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varDeclareym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebracket)
addToSymTbl(']', rightsquarebracket)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
dumpSymTbl()
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == '#':
str1 = ""
ch = getch()
while ch != " ":
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
# token = symbol(str1, commentstr, value=str(str1)) # simplistic SINGLE DIGIT Ascii to Binary
print("#comment: " + str(str1))
return
elif ch == '"':
a = ""
ch = getch()
counterafter1 = counterafter
i = counterafter
if counterafter != 700:
counterafter = counterafter + 4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'"+ch+"'"
emit(i, "constant",b)
ch = getch()
else:
ch = getch()
i=i+1
emit(i, "constant", 13)
emit(i+1, "constant", 0)
emit(i+2, "return", '')
ch = getch()
counterafter=i+3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <varDeclare > <stmtlist> }
# <varDeclare> ::= var { <id> ; } % DECLARATIONS
# <arraySub> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <term> { (+ | - ) <term> }
# <term> ::= <factor> { (*|/) factor}
# <factor> ::= [+/-] ID | Number | expression
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#===============================================================================
def declareList() :
# declareList ::= varDeclare {, varDeclare};
#===============================================================================
varDeclare()
while token.token != semicolon :
if token.token == comma:
varDeclare()
getoken()
# else: error("comma or semicolon expected in declaration")
#===============================================================================
def varDeclare() :
# varDeclare ::= idsym [ = number | "[" number "]"
#===============================================================================
ta = 0
tn = []
global varptr;
global whichidaddress;
global arraySubaddress;
global arrstar;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebracket:
getoken()
if token.token == number: #number
print("#The address for "+ str(tn)+ " are ")
symtbl[tn].address = varptr;
# emit(0, "constant", varptr)
print("#"+str(varptr))
while (token.value != 0):
# print("#address at " + str(varptr))
varptr = varptr + 1
token.value= token.value-1
# emit(0, "constant", varptr)
print("#"+str(varptr))
# getoken()
getoken()
if token.token == rightsquarebracket:
getoken()
else:
error("Expected rightsquarebracket at the end of arraySub declare")
else:
if ta != 0:
print("#"),
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1;
# emit(0, "load", varptr)
"""
if token.token == assignsym:
getoken()
if token.token == number:
arraySubaddress = arrstar+token.value
whichidaddress = arraySubaddress
print"#"+"arraySub address", str(arraySubaddress)
getoken()
if token.token == rightsquarebracket:
stmt()
# getoken()
getoken()
"""
# if token.token == leftsquarebracket:
# varDeclare()
# getoken()
# if token.token == rightbracket:
# getoken()
#===============================================================================
def variable():
# idsym [arraySub]
#===============================================================================
if token.token == idsym:
arraySub()
#===============================================================================
def arraySub():
# [expression]
#===============================================================================
global arraySub;
expression()
#===============================================================================
def parameters():
#===============================================================================
varDeclare()
if token.token == comma:
varDeclare()
# getoken()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression|string>| read <varDeclare> | <id> = <expression> |
if <condition> <stmt> [else <stmt>]| while <condition> <stmt>|
<stmtList> | do <stmsList> forever | break | continue
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
# if token.token == arraySubsym:
# arraySub()
if token.token == varDeclare:
getoken()
if token.token == assignsym:
expression()
else:
parameter()
elif token.token == ifsym:
ifStmt()
# elif token.token == elsesym:
# elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == declaresym:
declareList()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
emit(0, "halt", '')
getoken()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
else:
error("Expected start of a statement")
if token.token == semicolon or token.token == comma:
getoken()
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression|string>"""
global idaddress
getoken() # skip "print"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket before the print-item")
# printta = token.address
print_item()
if token.token == comma:
print_item()
getoken()
if token.token == rightbracket:
getoken()
# if token.token == rightbracket:
# getoken()
# else:
# error("Expected rightbracket end the print")
if token.token == semicolon:
getoken()
# else:
# error("Expected semicolon end the print")
#===============================================================================
def print_item():
# expression | string
#===============================================================================
# expression
if token.token == idsym:
expression()
emit(0, "writeint", 0)
getoken()
# string
if token.token == stringsym:
printMsg()
getoken()
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech", 0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
#===============================================================================
def readStmt():
#===============================================================================
""" <readStmt> ::= read variable()"""
global idaddress
getoken()
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket before the variable")
variable()
emit(0, "readint", idaddress)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket after the variable")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global resultnum
global whichidentifier
global whichidaddress
global arraySubaddress
whichidentifier = token.name # Remember which ID on Left
tempadd = token.address
if arraySubaddress != 0:
whichidaddress = token.address;
else:
whichidaddress = arraySubaddress;
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
else:
error("Expected = in assignment statement")
expression()
passtoken = token.value
# print(str(whichidaddress))
emit(0, "store", tempadd)
"""
if whichidaddress == 0:
# print("#tokenaddress " + str(tempadd))
emit(0, "store", tempadd)
else:
symtbl[whichidentifier].value = tokennum
# print("#whichidaddress "+str(whichidaddress))
emit(0, "store", whichidaddress)
"""
getoken()
#===============================================================================
def ifStmt():
# <ifStmt> ::= if (condition) statement [else statement]
#===============================================================================
getoken() # skip "if"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket at the start of if-condition")
condition()
# getoken()
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket at the end of if-condition")
if token.token == leftbrace:
getoken()
else:
error("Expected leftbrace at the start of if-statement")
stmtList()
getoken()
if token.token == rightbrace:
getoken()
# else:
# error("Expected rightbrace at the end of if-statement")
if token.token == elsesym:
getoken()
if token.token == leftbrace:
getoken()
else:
error("Expected leftbrace at the start of else-statement")
stmt()
getoken()
# emit(0, "cont", '')
if token.token == rightbrace:
getoken()
else:
error("Expected rightbrace at the end of else-statement")
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
getoken()# skip "while"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket at the start of while-condition")
condition()
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket at the end of while-condition")
if token.token == leftbrace:
getoken()
else:
error("Expected leftbrace at the start of while-statement")
stmtList()
# emit(0,"jump",127)
if token.token == rightbrace:
getoken()
else:
error("Expected rightbrace at the end of while-statement")
#===============================================================================
def doStmt():
#===============================================================================
getoken()
stmtList()
#===============================================================================
def returnStmt():
#===============================================================================
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
expression()
# print("#"+str(token.value))
emit(0, "jump", 0)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket for return-statement")
#===============================================================================
def condition():
# [not] conditional-expression
#===============================================================================
notsign = False;
if token.token == notsym:
notsign = True;
getoken()
if notsign == True:
emit(0, "Not", '')
conditionalexp()
else:
conditionalexp()
#===============================================================================
def conditionalexp():
#===============================================================================
expression()
relational_op()
#===============================================================================
def relational_op():
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
emit(0, "store", 686) # Save current expression result
expression()
if op.token == lessthan:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumplt", 131)
emit(0, "jump", 152)
elif op.token == greaterthan:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpgt", 152)
emit(0, "jump", 131)
elif op.token == lessthanequal:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumplt", 139)
emit(0, "jumpeq", 139)
emit(0, "jump", 153)
elif op.token == greaterthanequal:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpgt", 139)
emit(0, "jumpeq", 139)
emit(0, "jump", 153)
elif op.token == jumpne:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpne", 122)
emit(0, "jump", 119)
elif op.token == jumpeq:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpeq", 119)
emit(0, "jump", 122)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 687 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> } <- wrong
<expression> ::= <term> { (+ | -) <term> }
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
idvalue = symtbl[whichidentifier].value
if token.token == leftbracket:
getoken()
term()
## 1st start==============================================================================
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
emit(0, "store", 687) # Save current result
term()
if op.token == plus:
emit(0, "add", 687)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 5)
emit(0, "load", 687)
emit(0, "subtract", 5)
#===============================================================================
def term():
#===============================================================================
"""
term::= factor {(*|/) factor}
Use addresses 688 as Temporary variables
"""
global idaddress
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
emit(0, "store", 688) # Save term result
# save here xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
factor()
if op.token == mpy:
emit(0, "mpy", 688)
elif op.token == div:
emit(0, "store", 5)
emit(0, "load",688)
emit(0, "div", 5)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= [+|-] identifier | number | (expression)
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
tokensign = False
# [+|-] number
if token.token == plus:
getoken()
# - (unary)
elif token.token == minus:
tokensign=True
getoken()
if token.token == number:
if tokensign == True:
emit(0, "loadv", 0 - token.value)
getoken()
else:
emit(0, "loadv", token.value)
tokennum = token.value
getoken()
# identifier
elif token.token == idsym:
emit(0, "load", token.address)
idaddress = token.address
tempaddress = token.address
# print(str(tempaddress))
getoken()
if token.token == leftbracket:
getoken()
expression()
# emit(0, "store", 684)
if token.token == comma:
emit(0, "store", tempaddress+1)
getoken()
expression()
emit(0, "call", 419)
else:
emit(0, "store", tempaddress+2)
emit(0, "call", 410)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket after the factor")
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
global returnadd;
global codeptr
global endaddress
beginaddress = codeptr
# print(str(beginaddress))
if endaddress < 200:
codeptr = codeptr+400
elif endaddress > 400:
codeptr = endaddress
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
# elif token.token == number:
# print("#"+str(token.value))
else:
error("Function error : No_parameter_input_for_function")
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket for parameter")
if token.token == semicolon:
getoken()
else:
error("Expected semicolon after parameter")
if token.token == declaresym:
declareList()
"""
if token.token == semicolon:
getoken()
else:
error("Expected semicolon after declare variable")
"""
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
getoken()
print ("#---Function Finished---")
endaddress = codeptr
#===============================================================================
def program():
#===============================================================================
global codeptr
beginaddress = codeptr
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
declareList()
while token.token == functionsym:
function()
codeptr = beginaddress
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test.txt") as srcfile:
# out1file = open('output.obj','w')
line = srcfile.read()
# out1file.write("hello")
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
#emit(0, "load", 0)
main()
"""
srcfile = open('test.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
# getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
import re
__author__ = 'YeeHin Kwok'
""" MicroCompiler
<program> ::= program <id>; declare declareList; { StmtList}
<declareList> ::= varDeclare {, varDeclare};
<varDeclare> ::= idsym [ = number | "[" number "]"
<stmt> ::= variable( = expression | parameter) | <printStmt> ::= print "("<print_item>{,<print_item>}")"| if <condition> <stmt> [else <stmt>]|
<readStmt> ::= read "("variable")" | <id> = <expression> |
while <condition> <stmt>| <stmtList> | do <stmsList> forever | break | continue
<stmtlist> ::= <stmt> { ; <stmt> }
<print_item> ::= expression | string
<condition> ::= [not] <conditionalexp>
<conditionalexp> ::= <expression>[<relational_op> <expression>]
<relational_op> ::= <|<=|==|!=|>|>=
<expression> ::= <term> { (+ | -) <term> }
<term> ::= <factor> {(*|/) <factor>}
<factor> ::= [+|-] <id> | <number> | "("<expression>")"
<variable> ::= <id> [<arraySub>]
<arraySub> ::= "["<expression>"]"
<constnat> ::= <number>
<id> ::= A-Z{A-Z _ 0-9 ? }
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varDeclareym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym", "notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebracket", "rightsquarebracket",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraySubsym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varDeclareym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebracket, rightsquarebracket, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraySubsym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
whichidentifier = None;
arraySubaddress = 0;
endaddress = 0;
i = 700
j = 700
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varDeclareym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebracket)
addToSymTbl(']', rightsquarebracket)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
if line == "": line = EOF
dumpSymTbl()
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is #
elif ch == '#':
str1 = ""
ch = getch()
#End while if the comment have ""
while ch != " ":
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
print("#comment: " + str(str1))
return
# If ch is "
elif ch == '"':
a = ""
ch = getch()
counterafter1 = counterafter
i = counterafter
if counterafter != 700:
counterafter = counterafter + 4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'" + ch + "'"
emit(i, "constant", b)
ch = getch()
else:
ch = getch()
i = i + 1
emit(i, "constant", 13)
emit(i + 1, "constant", 0)
emit(i + 2, "return", '')
ch = getch()
counterafter = i + 3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is <
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is !
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is =
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is >
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= program <id>; declare declareList; { StmtList}
# <declareList> ::= varDeclare {, varDeclare};
# <varDeclare> ::= idsym [ = number | "[" number "]"
# <stmt> ::= variable( = expression | parameter) | <printStmt> ::= print "("<print_item>{,<print_item>}")"| if <condition> <stmt> [else <stmt>]|
# <readStmt> ::= read "("variable")" | <id> = <expression> |
# while <condition> <stmt>| <stmtList> | do <stmsList> forever | break | continue
# <stmtlist> ::= <stmt> { ; <stmt> }
# <print_item> ::= expression | string
# <condition> ::= [not] <conditionalexp>
# <conditionalexp> ::= <expression>[<relational_op> <expression>]
# <relational_op> ::= <|<=|==|!=|>|>=
# <expression> ::= <term> { (+ | -) <term> }
# <term> ::= <factor> {(*|/) <factor>}
# <factor> ::= [+|-] <id> | <number> | "("<expression>")"
# <variable> ::= <id> [<arraySub>]
# <arraySub> ::= "["<expression>"]"
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#===============================================================================
def declareList() :
# declareList ::= varDeclare {, varDeclare};
#===============================================================================
varDeclare()
while token.token != semicolon :
if token.token == comma:
varDeclare()
getoken()
#===============================================================================
def varDeclare() :
# <varDeclare> ::= idsym [ = number | "[" number "]"
#===============================================================================
ta = 0
tn = []
global varptr;
global whichidaddress;
global arraySubaddress;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebracket:
getoken()
if token.token == number: # number
symtbl[tn].address = varptr;
while (token.value != 0):
varptr = varptr + 1
token.value = token.value - 1
getoken()
if token.token == rightsquarebracket:
getoken()
else:
error("Expected rightsquarebracket at the end of arraySub declare")
else:
if ta != 0:
print("#"),
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1;
# emit(0, "load", varptr)
#===============================================================================
def variable():
# <variable> ::= <id> [<arraySub>]
#===============================================================================
if token.token == idsym:
expression()
# getoken()
if token.token == leftsquarebracket:
arraySub()
#===============================================================================
def arraySub():
# <arraySub> ::= "["<expression>"]"
#===============================================================================
global arraySub;
expression()
if token.token == rightsquarebracket:
getoken()
else:
error("Expected rightsquarebracket for array expression")
#===============================================================================
def parameters():
#===============================================================================
varDeclare()
if token.token == comma:
varDeclare()
# getoken()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
# <stmt> ::= variable( = expression | parameter) | <printStmt> ::= print "("<print_item>{,<print_item>}")"| if <condition> <stmt> [else <stmt>]|
# <readStmt> ::= read "("variable")" | <id> = <expression> |
# while <condition> <stmt>| <stmtList> | do <stmsList> forever | break | continue
#===============================================================================
def stmt():
#===============================================================================
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == variable:
getoken()
if token.token == assignsym:
expression()
else:
parameter()
elif token.token == ifsym:
ifStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == stmtList:
stmtList()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == declaresym:
declareList()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
emit(0, "halt", '')
getoken()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
else:
error("Expected start of a statement")
if token.token == semicolon or token.token == comma:
getoken()
#===============================================================================
def printStmt():
# <printStmt> ::= print "("<print_item>{,<print_item>}")"
#===============================================================================
getoken() # skip "print"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket before the print-item")
print_item()
if token.token == comma:
print_item()
getoken()
if token.token == rightbracket:
getoken()
if token.token == semicolon:
getoken()
#===============================================================================
def print_item():
# <print_item> ::= expression | string
#===============================================================================
# expression
if token.token == idsym:
expression()
emit(0, "writeint", 0)
getoken()
# string
if token.token == stringsym:
printMsg()
getoken()
#===============================================================================
def printMsg():
# <printMsg> ::= printMsg <expression>
#===============================================================================
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech", 0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
#===============================================================================
def readStmt():
# <readStmt> ::= read "("variable")"
#===============================================================================
global idaddress
getoken()
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket before the variable")
variable()
emit(0, "readint", idaddress)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket after the variable")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global whichidentifier
global whichidaddress
global arraySubaddress
whichidentifier = token.name # Remember which ID on Left
tempadd = token.address
if arraySubaddress != 0:
whichidaddress = token.address;
else:
whichidaddress = arraySubaddress;
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
else:
error("Expected = in assignment statement")
expression()
passtoken = token.value
emit(0, "store", tempadd)
getoken()
#===============================================================================
def ifStmt():
# <ifStmt> ::= if (condition) statement [else statement]
#===============================================================================
getoken() # skip "if"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket at the start of if-condition")
condition()
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket at the end of if-condition")
if token.token == leftbrace:
getoken()
else:
error("Expected leftbrace at the start of if-statement")
stmtList()
getoken()
if token.token == rightbrace:
getoken()
if token.token == elsesym:
getoken()
if token.token == leftbrace:
getoken()
else:
error("Expected leftbrace at the start of else-statement")
stmt()
getoken()
if token.token == rightbrace:
getoken()
else:
error("Expected rightbrace at the end of else-statement")
#===============================================================================
def whileStmt():
# <whileStmt> ::= while (condition)statement
#===============================================================================
getoken() # skip "while"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket at the start of while-condition")
condition()
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket at the end of while-condition")
if token.token == leftbrace:
getoken()
else:
error("Expected leftbrace at the start of while-statement")
stmtList()
# emit(0,"jump",127)
if token.token == rightbrace:
getoken()
else:
error("Expected rightbrace at the end of while-statement")
#===============================================================================
def doStmt():
# doStmt ::= <do> stmtList <forever>
#===============================================================================
getoken()
stmtList()
#===============================================================================
def returnStmt():
#===============================================================================
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
expression()
emit(0, "jump", 0)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket for return-statement")
#===============================================================================
def condition():
# condition ::= [not] conditional-expression
#===============================================================================
notsign = False;
if token.token == notsym:
notsign = True;
getoken()
if notsign == True:
emit(0, "Not", '')
conditionalexp()
else:
conditionalexp()
#===============================================================================
def conditionalexp():
# <conditionalexp> ::= <expression>[relational_op <expression>]
#===============================================================================
expression()
relational_op()
#===============================================================================
def relational_op():
# <relational_op> ::= <|<=|==|!=|>|>=
#===============================================================================
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
emit(0, "store", 686) # Save current expression result
expression()
if op.token == lessthan:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumplt", 137)
emit(0, "jump", 158)
elif op.token == greaterthan:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpgt", 158)
emit(0, "jump", 137)
elif op.token == lessthanequal:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumplt", 145)
emit(0, "jumpeq", 145)
emit(0, "jump", 159)
elif op.token == greaterthanequal:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpgt", 145)
emit(0, "jumpeq", 145)
emit(0, "jump", 159)
elif op.token == jumpne:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpne", 128)
emit(0, "jump", 125)
elif op.token == jumpeq:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpeq", 125)
emit(0, "jump", 128)
#===============================================================================
def expression():
# <expression> ::= <term> { (+ | -) <term> }
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 687 as Temporary variables
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
idvalue = symtbl[whichidentifier].value
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
emit(0, "store", 687) # Save current result
term()
if op.token == plus:
emit(0, "add", 687)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 5)
emit(0, "load", 687)
emit(0, "subtract", 5)
#===============================================================================
def term():
# <term> ::= <factor> {(*|/) <factor>}
#===============================================================================
"""
Use addresses 688 as Temporary variables
"""
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
emit(0, "store", 688) # Save term result
# save here xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
factor()
if op.token == mpy:
emit(0, "mpy", 688)
elif op.token == div:
emit(0, "store", 5)
emit(0, "load", 688)
emit(0, "div", 5)
#===============================================================================
def factor():
# <factor> ::= [+|-] <id> | <number> | "("<expression>")"
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
tokensign = False
# [+|-] number
if token.token == plus:
getoken()
# - (unary)
elif token.token == minus:
tokensign = True
getoken()
# number
if token.token == number:
if tokensign == True:
emit(0, "loadv", 0 - token.value)
getoken()
else:
emit(0, "loadv", token.value)
tokennum = token.value
getoken()
# id
elif token.token == idsym:
emit(0, "load", token.address)
idaddress = token.address
tempaddress = token.address
getoken()
if token.token == leftbracket:
getoken()
expression()
if token.token == comma:
# For two parameters
emit(0, "store", tempaddress + 1)
getoken()
expression()
emit(0, "call", 419)
else:
# For one parameter
emit(0, "store", tempaddress + 2)
emit(0, "call", 410)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket after the factor")
# "(" <expression> ")"
elif token.token == leftbracket:
emit(0, "store", 689)
emit(0, "push", 1)
getoken()
expression()
if token.token == rightbracket:
getoken()
emit(0, "pop", 1)
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
global codeptr
global endaddress
beginaddress = codeptr
if endaddress < 200:
codeptr = codeptr + 400
elif endaddress > 400:
codeptr = endaddress
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
else:
error("Function error : No_parameter_input_for_function")
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket for parameter")
if token.token == semicolon:
getoken()
else:
error("Expected semicolon after parameter")
if token.token == declaresym:
declareList()
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
getoken()
print ("#---Function Finished---")
endaddress = codeptr
#===============================================================================
def program():
# <program> ::= program <id>; declare declareList; { StmtList}
#===============================================================================
global codeptr
beginaddress = codeptr
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
declareList()
while token.token == functionsym:
function()
codeptr = beginaddress
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("test2.txt") as srcfile:
line = srcfile.read()
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py"
main()
"""
srcfile = open('test.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
| Python |
import re
__author__ = 'YeeHin Kwok'
""" MicroCompiler
<program> ::= program <id>; declare declareList; { StmtList}
<declareList> ::= varDeclare {, varDeclare};
<varDeclare> ::= idsym [ = number | "[" number "]"
<stmt> ::= variable( = expression | parameter) | <printStmt> ::= print "("<print_item>{,<print_item>}")"| if <condition> <stmt> [else <stmt>]|
<readStmt> ::= read "("variable")" | <id> = <expression> |
while <condition> <stmt>| <stmtList> | do <stmsList> forever | break | continue
<stmtlist> ::= <stmt> { ; <stmt> }
<print_item> ::= expression | string
<condition> ::= [not] <conditionalexp>
<conditionalexp> ::= <expression>[<relational_op> <expression>]
<relational_op> ::= <|<=|==|!=|>|>=
<expression> ::= <term> { (+ | -) <term> }
<term> ::= <factor> {(*|/) <factor>}
<factor> ::= [+|-] <id> | <number> | "("<expression>")"
<variable> ::= <id> [<arraySub>]
<arraySub> ::= "["<expression>"]"
<constnat> ::= <number>
<id> ::= A-Z{A-Z _ 0-9 ? }
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames = \
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varDeclareym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "lessthan", "greaterthan",
"number", "plus", "minus", "mpy", "div", "elsesym", "declaresym", "forsym", "andsym", "elifsym", "dosym", "returnsym", "notsym",
"continuesym", "breaksym", "nonesym", "programsym", "functionsym", "leftsquarebracket", "rightsquarebracket",
"lessthanequal", "colon", "comma", "comment", "commentstr", "dot", " greaterthanequal", "jumpeq", "jumpne",
"andop", "orop", "quote ", "stringsym", "arraySubsym", "readsym", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace, \
varDeclareym, semicolon, whilesym, leftbracket, rightbracket, \
printsym, ifsym, equals, lessthan, greaterthan, \
number, plus, minus, mpy, div, elsesym, declaresym, forsym, andsym, elifsym, dosym, returnsym, notsym, \
continuesym, breaksym, nonesym, programsym, functionsym, leftsquarebracket, rightsquarebracket, \
lessthanequal, colon, comma, comment, commentstr, dot, greaterthanequal, jumpeq, jumpne, \
andop, orop, quote, stringsym, arraySubsym, readsym, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value=0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber = 0 # The current number
tokennum = 0
whichidentifier = None;
arraySubaddress = 0;
endaddress = 0;
i = 700
j = 700
counterafter = i
counterafter1 = j
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varDeclareym) # VAR
addToSymTbl('program', programsym)
addToSymTbl('function', functionsym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('declare', declaresym)
addToSymTbl('for', forsym)
addToSymTbl('None', nonesym)
addToSymTbl('continue', continuesym)
addToSymTbl('read', readsym) # READINT
addToSymTbl('do', dosym)
addToSymTbl('return', returnsym)
addToSymTbl('not', notsym)
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl('=', assignsym)
addToSymTbl('#', comment)
addToSymTbl('<', lessthan)
addToSymTbl('>', greaterthan)
addToSymTbl('{', leftbrace)
addToSymTbl('}', rightbrace)
addToSymTbl('(', leftbracket)
addToSymTbl(')', rightbracket)
addToSymTbl('+', plus)
addToSymTbl('-', minus)
addToSymTbl(';', semicolon)
addToSymTbl('break', breaksym)
addToSymTbl('*', mpy)
addToSymTbl('/', div)
addToSymTbl('[', leftsquarebracket)
addToSymTbl(']', rightsquarebracket)
addToSymTbl(':', colon)
addToSymTbl(',', comma)
addToSymTbl('.', dot)
addToSymTbl('==', jumpeq)
addToSymTbl('!=', jumpne)
addToSymTbl('&&', andop)
addToSymTbl('||', orop)
addToSymTbl('"', quote)
addToSymTbl(EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d, val = %d" % \
(tokenNames[tok.token], tok.name, tok.address, tok.value)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print("# *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
print("#"),
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex + 1 # & move pointer for next time
else:
# line = f.readline()
if line == "": line = EOF
# dumpSymTbl()
print "#End of File"
print "#--> ",
line = raw_input() + "\n" # read new line, adding \n so it's like f.readline()
# line = srcfile.read()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " "
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex - 1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
global i
global m
global counterafter
global counterafter1
x = 0
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
elif ch in ["{", "}", "(", ")", "[", "]", "+", "-", "*", "/", ";", ",", ":", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = str(x) + str(ch)
ch = getch()
ch = ungetch()
token = symbol(x, number, value=int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is #
elif ch == '#':
str1 = ""
ch = getch()
#End while if the comment have ""
while ch != " ":
str1 = str(str1) + str(ch)
ch = getch()
ch = getch()
print("#comment: " + str(str1))
return
# If ch is "
elif ch == '"':
a = ""
ch = getch()
counterafter1 = counterafter
i = counterafter
if counterafter != 700:
counterafter = counterafter + 4;
counterafter = i
while (ch != '"'):
a = str(a) + str(ch)
if ch != " ":
b = "'" + ch + "'"
emit(i, "constant", b)
ch = getch()
else:
ch = getch()
i = i + 1
emit(i, "constant", 13)
emit(i + 1, "constant", 0)
ch = getch()
counterafter = i + 3
token = symbol(a, stringsym, value=str(a)) # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is <
elif ch == "<":
ch = getch()
if ch == "=":
lt = ""
lt = "<" + "="
token = symbol(lt, lessthanequal, value=str(lt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("<", lessthan, value="<") # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is !
elif ch == "!":
ne = ""
ch = getch()
if ch == "=":
ne = "!" + "="
token = symbol(ne, jumpne, value=str(ne)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("!", NOT , value="!") # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is =
elif ch == "=":
eq = ""
ch = getch()
if ch == "=":
eq = "=" + "="
token = symbol(eq, jumpeq, value=str(eq)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol("=", assignsym, value="=") # simplistic SINGLE DIGIT Ascii to Binary
return
# If ch is >
elif ch == ">":
gt = ""
ch = getch()
if ch == "=":
gt = ">" + "="
token = symbol(gt, greaterthanequal, value=str(gt)) # simplistic SINGLE DIGIT Ascii to Binary
return
else:
ch == ungetch()
token = symbol(">", greaterthan, value=">") # simplistic SINGLE DIGIT Ascii to Binary
return
else:
print "Unknown character -->%s<- decimal %d" % (ch, ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= program <id>; declare declareList; { StmtList}
# <declareList> ::= varDeclare {, varDeclare};
# <varDeclare> ::= idsym [ = number | "[" number "]"
# <stmt> ::= variable( = expression | parameter) | <printStmt> ::= print "("<print_item>{,<print_item>}")"| if <condition> <stmt> [else <stmt>]|
# <readStmt> ::= read "("variable")" | <id> = <expression> |
# while <condition> <stmt>| <stmtList> | do <stmsList> forever | break | continue
# <stmtlist> ::= <stmt> { ; <stmt> }
# <print_item> ::= expression | string
# <condition> ::= [not] <conditionalexp>
# <conditionalexp> ::= <expression>[<relational_op> <expression>]
# <relational_op> ::= <|<=|==|!=|>|>=
# <expression> ::= <term> { (+ | -) <term> }
# <term> ::= <factor> {(*|/) <factor>}
# <factor> ::= [+|-] <id> | <number> | "("<expression>")"
# <variable> ::= <id> [<arraySub>]
# <arraySub> ::= "["<expression>"]"
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex, "^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr + 1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#===============================================================================
def declareList() :
# declareList ::= varDeclare {, varDeclare};
#===============================================================================
varDeclare()
while token.token != semicolon :
if token.token == comma:
varDeclare()
getoken()
#===============================================================================
def varDeclare() :
# <varDeclare> ::= idsym [ = number | "[" number "]"
#===============================================================================
ta = 0
tn = []
global varptr;
global whichidaddress;
global arraySubaddress;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebracket:
getoken()
if token.token == number: # number
symtbl[tn].address = varptr;
while (token.value != 0):
varptr = varptr + 1
token.value = token.value - 1
getoken()
if token.token == rightsquarebracket:
getoken()
else:
error("Expected rightsquarebracket at the end of arraySub declare")
else:
if ta != 0:
print("#"),
print("%c already declared\n", tn);
# assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr + 1;
# emit(0, "load", varptr)
#===============================================================================
def variable():
# <variable> ::= <id> [<arraySub>]
#===============================================================================
if token.token == idsym:
expression()
# getoken()
if token.token == leftsquarebracket:
arraySub()
#===============================================================================
def arraySub():
# <arraySub> ::= "["<expression>"]"
#===============================================================================
global arraySub;
expression()
if token.token == rightsquarebracket:
getoken()
else:
error("Expected rightsquarebracket for array expression")
#===============================================================================
def parameters():
#===============================================================================
varDeclare()
if token.token == comma:
varDeclare()
# getoken()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
# <stmt> ::= variable( = expression | parameter) | <printStmt> ::= print "("<print_item>{,<print_item>}")"| if <condition> <stmt> [else <stmt>]|
# <readStmt> ::= read "("variable")" | <id> = <expression> |
# while <condition> <stmt>| <stmtList> | do <stmsList> forever | break | continue
#===============================================================================
def stmt():
#===============================================================================
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == variable:
getoken()
if token.token == assignsym:
expression()
else:
parameter()
elif token.token == ifsym:
ifStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == printsym:
printStmt()
elif token.token == readsym:
readStmt()
elif token.token == declaresym:
declareList()
elif token.token == dosym:
doStmt()
elif token.token == breaksym:
# emit(0, "halt", '')
getoken()
elif token.token == continuesym:
continueStmt()
elif token.token == number:
expression()
elif token.token == idsym:
assignStmt()
elif token.token == functionsym:
function()
elif token.token == returnsym:
returnStmt()
elif token.token == leftbrace:
getoken()
stmtList()
else:
error("Expected start of a statement")
if token.token == semicolon:
getoken()
#===============================================================================
def printStmt():
# <printStmt> ::= print "("<print_item>{,<print_item>}")"
#===============================================================================
getoken() # skip "print"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket before the print-item")
print_item()
# while (token.token != rightbracket):
# print_item()
if token.token != rightbracket:
print_item()
getoken()
# if token.token == semicolon:
# getoken()
#===============================================================================
def print_item():
# <print_item> ::= expression | string
#===============================================================================
# expression
if token.token == idsym:
expression()
emit(0, "writeint", 0)
getoken()
# string
elif token.token == stringsym:
printMsg()
getoken()
#===============================================================================
def printMsg():
# <printMsg> ::= printMsg <expression>
#===============================================================================
emit(0, "loadv", counterafter1)
emit(0, "store", 1)
emit(0, "call", 400)
emit(400, "load-Ind", 0)
emit(401, "jumpeq", 405)
emit(402, "writech", 0)
emit(403, "increment", 1)
emit(404, "jump", 400)
emit(405, "return", '')
#===============================================================================
def readStmt():
# <readStmt> ::= read "("variable")"
#===============================================================================
global idaddress
getoken()
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket before the variable")
variable()
emit(0, "readint", idaddress)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket after the variable")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
global tokennum
global whichidentifier
global whichidaddress
global arraySubaddress
whichidentifier = token.name # Remember which ID on Left
tempadd = token.address
if arraySubaddress != 0:
whichidaddress = token.address;
else:
whichidaddress = arraySubaddress;
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
else:
error("Expected = in assignment statement")
expression()
passtoken = token.value
emit(0, "store", tempadd)
getoken()
#===============================================================================
def ifStmt():
# <ifStmt> ::= if (condition) statement [else statement]
#===============================================================================
getoken() # skip "if"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket at the start of if-condition")
ifStmtAdr = codeptr
condition()
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket at the end of if-condition")
emit(0, "load-Ind", 1)
#jump out of statement (300) if condition is false
emit(0, "jumpne", 300)
stmt()
#jump out of statement
emit(0, "jump",301)
if token.token == rightbrace:
getoken()
if token.token == elsesym:
getoken()
endptr1 = codeptr
#jump out of statement
emit(300, "jump",endptr1)
stmt()
if token.token == rightbrace:
getoken()
else:
error("Expected rightbrace at the end of else-statement")
endptr2 = codeptr
emit(301, "jump",endptr2)
#===============================================================================
def whileStmt():
# <whileStmt> ::= while (condition)statement
#===============================================================================
global whileStmtAdr
getoken() # skip "while"
if token.token == leftbracket:
getoken()
else:
error("Expected leftbracket at the start of while-condition")
#save while statment address
whileStmtAdr = codeptr
condition()
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket at the end of while-condition")
emit(0, "load-Ind", 1)
#jump out of statement (302) if condition is false
emit(0, "jumpne", 302)
stmt()
emit(0,"jump",whileStmtAdr)
endptr3 = codeptr
emit(302, "jump",endptr3)
if token.token == rightbrace:
getoken()
else:
error("Expected rightbrace at the end of while-statement")
#===============================================================================
def doStmt():
# doStmt ::= <do> stmtList <forever>
#===============================================================================
getoken()
stmtList()
#===============================================================================
def returnStmt():
#===============================================================================
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
expression()
emit(0, "return", '')
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket for return-statement")
#===============================================================================
def condition():
# condition ::= [not] conditional-expression
#===============================================================================
notsign = False;
if token.token == notsym:
notsign = True;
getoken()
if notsign == True:
emit(0, "Not", '')
conditionalexp()
else:
conditionalexp()
#===============================================================================
def conditionalexp():
# <conditionalexp> ::= <expression>[relational_op <expression>]
#===============================================================================
expression()
relational_op()
#===============================================================================
def relational_op():
# <relational_op> ::= <|<=|==|!=|>|>=
#===============================================================================
global endAdr
if token.token == lessthan or token.token == greaterthan or token.token == lessthanequal or token.token == greaterthanequal or token.token == jumpne or token.token == jumpeq:
op = token # remember -
getoken() # skip past -
emit(0, "store", 686) # Save current expression result
expression()
if op.token == lessthan:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumplt", codeptr+4)
#If False set X as 1
emit(0, "loadv", 1)
emit(0, "store-Ind", 1)
emit(0, "jump", codeptr+3)
#If True set X as 0
emit(0, "loadv", 0)
emit(0, "store-Ind", 1)
elif op.token == greaterthan:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpgt", codeptr+4)
#If False set X as 1
emit(0, "loadv", 1)
emit(0, "store-Ind", 1)
emit(0, "jump", codeptr+3)
#If True set X as 0
emit(0, "loadv", 0)
emit(0, "store-Ind", 1)
elif op.token == lessthanequal:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumplt", codeptr+5)
emit(0, "jumpeq", codeptr+4)
#If False set X as 1
emit(0, "loadv", 1)
emit(0, "store-Ind", 1)
emit(0, "jump", codeptr+3)
#If True set X as 0
emit(0, "loadv", 0)
emit(0, "store-Ind", 1)
elif op.token == greaterthanequal:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpgt", codeptr+5)
emit(0, "jumpeq", codeptr+4)
#If False set X as 1
emit(0, "loadv", 1)
emit(0, "store-Ind", 1)
emit(0, "jump", codeptr+3)
#If True set X as 0
emit(0, "loadv", 0)
emit(0, "store-Ind", 1)
elif op.token == jumpne:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpne", codeptr+4)
#If False set X as 1
emit(0, "loadv", 1)
emit(0, "store-Ind", 1)
emit(0, "jump", codeptr+3)
#If True set X as 0
emit(0, "loadv", 0)
emit(0, "store-Ind", 1)
elif op.token == jumpeq:
emit(0, "store", 5)
emit(0, "load", 686)
emit(0, "compare", 5)
emit(0, "jumpeq", codeptr+4)
#If False set X as 0
emit(0, "loadv", 0)
emit(0, "store-Ind", 1)
emit(0, "jump", codeptr+3)
#If True set X as 1
emit(0, "loadv", 1)
emit(0, "store-Ind", 1)
#===============================================================================
def expression():
# <expression> ::= <term> { (+ | -) <term> }
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 687 as Temporary variables
"""
global whichidentifier
global idaddress
global idvalue
if whichidentifier == None:
getoken()
else:
idaddress = symtbl[whichidentifier].address
idvalue = symtbl[whichidentifier].value
if token.token == leftbracket:
getoken()
term()
while token.token == plus or token.token == minus:
op = token # remember -
getoken() # skip past -
emit(0, "store", 687) # Save current result
term()
if op.token == plus:
emit(0, "add", 687)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 5)
emit(0, "load", 687)
emit(0, "subtract", 5)
#===============================================================================
def term():
# <term> ::= <factor> {(*|/) <factor>}
#===============================================================================
"""
Use addresses 688 as Temporary variables
"""
factor()
while token.token == mpy or token.token == div:
op = token # remember -
getoken() # skip past -
emit(0, "store", 688) # Save term result
# save here xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
factor()
if op.token == mpy:
emit(0, "mpy", 688)
elif op.token == div:
emit(0, "store", 5)
emit(0, "load", 688)
emit(0, "div", 5)
#===============================================================================
def factor():
# <factor> ::= [+|-] <id> | <number> | "("<expression>")"
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
"""
global tokennum
global whichidentifier
global idaddress
global idvalue
tokensign = False
# [+|-] number
if token.token == plus:
getoken()
# - (unary)
elif token.token == minus:
tokensign = True
getoken()
# number
if token.token == number:
if tokensign == True:
emit(0, "loadv", 0 - token.value)
getoken()
else:
emit(0, "loadv", token.value)
tokennum = token.value
getoken()
# id
elif token.token == idsym:
emit(0, "load", token.address)
idaddress = token.address
tempaddress = token.address
getoken()
if token.token == leftbracket:
getoken()
expression()
if token.token == comma:
# For two parameters
emit(0, "store", tempaddress + 1)
getoken()
expression()
emit(0, "call", 419)
else:
# For one parameter
emit(0, "store", tempaddress + 2)
emit(0, "call", 410)
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket after the factor")
# "(" <expression> ")"
elif token.token == leftbracket:
emit(0, "store", 689)
emit(0, "push", 1)
getoken()
expression()
if token.token == rightbracket:
getoken()
emit(0, "pop", 1)
else:
error("Start Of Factor Expected")
#===============================================================================
def function():
#===============================================================================
global codeptr
global endaddress
beginaddress = codeptr
if endaddress < 200:
codeptr = codeptr + 400
elif endaddress > 400:
codeptr = endaddress
getoken()
if token.token == idsym:
getoken()
if token.token == leftbracket:
getoken()
if token.token == idsym:
parameters()
else:
error("Function error : No_parameter_input_for_function")
if token.token == rightbracket:
getoken()
else:
error("Expected rightbracket for parameter")
if token.token == semicolon:
getoken()
else:
error("Expected semicolon after parameter")
if token.token == declaresym:
declareList()
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
getoken()
print ("#---Function Finished---")
endaddress = codeptr
#===============================================================================
def program():
# <program> ::= program <id>; declare declareList; { StmtList}
#===============================================================================
global codeptr
beginaddress = codeptr
if token.token == leftbrace:
getoken()
if token.token == programsym:
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
if token.token == semicolon:
getoken()
if token.token == declaresym :
declareList()
while token.token == functionsym:
function()
codeptr = beginaddress
if token.token == leftbrace:
getoken()
stmtList()
if token.token == rightbrace:
print "#***Compilation Finished****"
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("combine.txt") as srcfile:
line = srcfile.read()
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program()
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py"
main()
"""
srcfile = open('test.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
| Python |
import re
__author__ = 'N Tech2'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken","programsym", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "comment", "lessthan", "greaterthan",
"number", "plus", "minus", "endsym" ,"elsesym","declaresym","forsym",
"andsym","elifsym","continuesym","nonesym","factorial",
"leftsquarebrace","rightsquarebrace","lessthanequal","colon","comma",
"dot"," greaterthanequal","jumpeq","jumpne","andop","orop","readint","dollar",
"writeint","readch","writech","mpy","div","quote ","stringsym","arraysym",
"readsym","breaksym","endfile"]
# define the tokens as variables
unknownToken,programsym,idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, equals, comment, lessthan, greaterthan,\
number, plus, minus,elsesym,declaresym,forsym,andsym,elifsym,\
continuesym,factorial,nonesym,dollar,leftsquarebrace,rightsquarebrace,\
lessthanequal,colon,comma,dot, greaterthanequal,jumpeq,jumpne,\
andop,orop,endfile,readint,writeint,readch,writech,\
mpy,div,quote,stringsym,arraysym,readsym,breaksym,\
endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName):
# thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym)
addToSymTbl('program',programsym)
addToSymTbl('break', breaksym)
addToSymTbl('declare', declaresym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('for', forsym)
addToSymTbl('and', andsym)
addToSymTbl('None', nonesym)
addToSymTbl("hello world", stringsym)
addToSymTbl('continue', continuesym)
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech)
addToSymTbl('read', readsym)#READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', comment)
addToSymTbl( '<', lessthan)
addToSymTbl( '>', greaterthan)
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( ';', semicolon)
addToSymTbl( '-', minus)
addToSymTbl( '!', factorial)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( '$', dollar)
addToSymTbl( '[', leftsquarebrace)
addToSymTbl( ']', rightsquarebrace)
addToSymTbl( ':', colon)
addToSymTbl( ',', comma)
addToSymTbl( '.', dot)
addToSymTbl( '<=', lessthanequal)
addToSymTbl( '>=', greaterthanequal)
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '&&', andop)
addToSymTbl( '||', orop)
addToSymTbl( '"',quote)
addToSymTbl( EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
x = ""
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n", "#"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = x + ch
ch = getch()
token = symbol(x, number, value = int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["=", "#", "<", ">", "{", "}", "(", ")", "[","]", "+" , "-", "*", "/", ";","!", "==",",","<=",">=",'"',":", EOF]:
token = lookup(ch) # preloaded with appropriate token
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | - | * | /) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number:
getoken()
if token.token == rightsquarebrace:
getoken()
else:
error("] expected")
else: error("number expected")
else:
print
if ta != 0:
print("%c already declared\n", token.name);
assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr +1
if token.token == assignsym:
getoken()
expression()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
#===============================================================================
global array;
getoken()
while (token.token == number):
print("#array address")
emit(0, "constant", token.value)
emit(0, "constant", token.value)
emit(0, "constant", token.value)
emit(0, "constant", token.value)
emit(0, "constant", 4)
getoken();
if token.token == rightsquarebrace:getoken();
if token.token == assignsym:getoken();
while( token.token == number):
print("#store value")
emit(0, "load", 10)
emit(0, "add", 12)
emit(0, "store", 1)
emit(0, "loadv", token.value)
emit(0, "store-ind", 0)
getoken();
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression>
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == arraysym:
array()
if token.token == printsym:
printStmt()
if token.token == number:
expression()
elif token.token == leftbracket:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == idsym:
assignStmt()
elif token.token == quote:
a =""
getoken()
while token.token != quote:
a = str(a) + str(token.name)
getoken()
# print "string:-",a
getoken()
elif token.token == comment:
b =""
getoken()
while token.token != '\n':
b = str(b) + str(token.name)
getoken()
# print "comment:-"
getoken()
elif token.token == assignsym:
getoken()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == readint:
readIntStmt()
elif token.token == readch:
readChStmt()
elif token.token == writeint:
writeIntStmt()
elif token.token == writech:
writeChStmt()
elif token.token == rightbracket:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == lessthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "lessthanequal"
expression()
elif token.token == greaterthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "greaterthanequal"
expression()
elif token.token == breaksym:
print("program break")
elif token.token == rightsquarebrace:
print("\n#*** Compilation finished ***\n")
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken()
# skip "print"
expression()
emit(0, "writeint", 0)
stmt()
# if token.token == rightbrace:
# print("\n*** Compilation finished ***\n")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token
getoken()
# print "token>>>>",tokenNames[token.token]
if token.token == jumpne:
srcfile.read()
getoken()
elif token.token == assignsym:
getoken()
elif token.token == lessthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "lessthanequal"
print "token:-",tokenNames[token.token]
elif token.token == greaterthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "greaterthanequal"
elif token.token == leftsquarebrace:
array()
elif token.token == jumpeq:
getoken()
elif token.token == rightbracket:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
emit(0, "compare",60)
expression()
stmt()
if token.token == rightbrace: getoken()
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
emit(0, "store", 888)
stmt()
emit(0, "return",0)
if token.token == rightbrace: getoken()
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
getoken()
emit(0, "compare",50)
expression()
stmt()
emit(0, "increment", 1)
emit(0, "jumpi", 14)
#===============================================================================
def readIntStmt():
#===============================================================================
getoken()
expression() # skip "if"
emit(0, "readint",12)
#===============================================================================
def readChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "readch",11)
#===============================================================================
def writeIntStmt():
#===============================================================================
getoken() # skip "if"
expression()
emit(0, "writeint",50)
#===============================================================================
def writeChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "writech",token.value)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> }
"""
# while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpne or token.token == jumpeq:
# op = token # remember +/-
# getoken() # skip past +/-
# emit(0, "store", 999) # Save current result
# factor()
#
#
# if token.token == leftbracket:
# getoken()
#1st number
# if token.token == leftbracket: getoken()
factor()
# if token.token == lessthan:
# getoken()
#
# if token.token == assignsym:
# token.token.name = lessthanequal
# print "wweee",tokenNames[token.token]
#
# else:
# ungetch()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpne or token.token == jumpeq or token.token == lessthanequal or token.token == greaterthanequal:
op = token # remember +/-
getoken() # skip past +/-
# emit(0, "store", 200) # Save current result
if token.token == leftbracket:
getoken()
factor()
# if token.token == rightbracket:getoken()
if op.token == plus:
emit(0, "add", 201)
emit(0, "store", 500)
# if op.token == leftbracket:getoken()
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998)
emit(0, "store", 6)
if token.token == semicolon:
getoken()
elif op.token == mpy:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 7)
elif op.token == div:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 8)
elif op.token == lessthan:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumplt", 80)
emit(0, "loadv", 0)
emit(0, "store", 9)
elif op.token == greaterthan:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpgt", 81)
emit(0, "loadv", 0)
emit(0, "store", 10)
#not working
elif op.token == jumpne:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpne", 82)
emit(0, "loadv", 0)
emit(0, "store", 11)
elif op.token == jumpeq:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpeq", 83)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= identifier | number
"""
if token.token == plus:
getoken()
#- (unary)
elif token.token == minus:
getoken()
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", token.value+200)
getoken()
elif token.token == comment:
b =""
getoken()
while token.token != "\\n":
b = str(b) + str(token.name)
getoken()
print "comment:-",b
getoken()
elif token.token == quote:
a =""
getoken()
while token.token != quote:
a = str(a) + str(token.name)
getoken()
# print "string:-",a
getoken()
elif token.token == lessthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "lessthanequal"
elif token.token == greaterthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "greaterthanequal"
# elif token.token == assignsym:
# getoken()
elif token.token == leftbracket:
getoken()
# print "this is token",tokenNames[token.token]
elif token.token == leftsquarebrace: getoken()
elif token.token == rightbracket:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
elif token.token == breaksym:
print("program break")
else:
error("Start Of Factor Expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == programsym:
# print "name",tokenNames[token.token]
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
else: error("Program name expected")
if token.token == semicolon:
getoken()
else: error("Semicolon expected")
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
stmtList()
if token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
else: error(" } expected")
# Compiler main
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("reallybasic.txt") as line1:
# out1file = open('output.obj','w')
line = line1.read()
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# y = str(token)
# out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
#outfile = open('writeOutput.obj', 'w')
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
#srcfile = open('tiny.txt', 'r')
#lexer = shlex.shlex(srcfile)
#for token in lexer:
# print repr(token)
main()
#getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
'''
Created on Jun 16, 2014
@author: Brian
'''
#filename:Lexer.py
import sys
flag=0
keyword=[]
keyword.extend(['program','var','begin','end','integer','if','then',
'else','while','do','read','write','procedure','function'])
simpleword='+-*/,;()[]'
doubleword='><=!:'
filename=raw_input('Please input the source filename(and path):\n');
try:
fin=open(filename,'r')
except:
print 'source file open error!\n'
sys.exit()
filename=raw_input('Please input the destination filename(and path):\n')
try:
fout=open(filename,'w')
except:
print 'destination file open error!\n'
source=fin.read()
print source
i=0
while i <len(source):
while source[i]==' ' or source[i]=='\t' or source[i]=='\n':
i=i+1
if source[i].isalpha():
temp=source[i]
i=i+1
while source[i].isalpha() or source[i].isdigit():
temp=temp+source[i]
i=i+1
if keyword.count(temp)==0:
if len(temp)>8:
temp=temp[0,7]
print 'warning: sysmol name length>8'
fout.write('ID\t'+temp)
fout.write('\n')
else:
fout.write(temp+'\t'+temp)
fout.write('\n')
elif source[i].isdigit():
temp=source[i]
i=i+1
while source[i].isdigit():
temp=temp+source[i]
i=i+1
fout.write('int\t'+temp)
fout.write('\n')
elif simpleword.count(source[i])==1:
fout.write(source[i]+'\t'+source[i])
fout.write('\n')
i=i+1
elif doubleword.count(source[i])==1:
temp=source[i]
i=i+1
if source[i]=='=':
temp=temp+'='
i=i+1
fout.write(temp+'\t'+temp)
fout.write('\n')
elif source[i]=='{':
i=1+1
while source[i]!='}':
i=i+1
i=i+1
else:
flag=flag+1
print 'Error,Program exit!\n'
break
print('%d,%d',i,len(source))
if flag==0:
print 'Success!\n' | Python |
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "notequals", "lessthan", "greaterthan",
"number", "plus", "minus", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, equals, notequals, lessthan, greaterthan,\
number, plus, minus, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('if', ifsym) # IF
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', notequals)
addToSymTbl( '<', lessthan)
addToSymTbl( '>', greaterthan)
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( ';', semicolon)
addToSymTbl( EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
token = symbol(ch, number, value = int(ch)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["=", "#", "<", ">", "{", "}", "(", ")", "+" , "-" , ";", EOF]:
token = lookup(ch) # preloaded with appropriate token
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | -) <factor> } % No precedence
# <factor> ::= ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7d" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
global varptr;
getoken(); #skip VARSYM - already been recognised
while (token.token == idsym):
if token.address != 0:
print("%c already declared\n", token.name);
else:
symtbl[token.name].address = varptr;
varptr = varptr +1
getoken(); #skip past identifier
if token.token == semicolon: getoken() #skip ;
else: error("semicolon expected in declaration")
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token == semicolon):
getoken() #skip ;
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression>
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == printsym:
printStmt()
elif token.token == idsym:
assignStmt()
else:
error("Expected start of a statement")
emit (0, "jumpDemo-to start of statement: jump", thisStmtAdr) # Jump DEMO
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken() # skip "print"
expression() # on return, expr result (at runtime) will be in ACC
emit(0, "output", 0) # Memory address 0 is the ACC
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> }
"""
factor()
while token.token == plus or token.token == minus:
op = token # remember +/-
getoken() # skip past +/-
emit(0, "store", 999) # Save current result
factor() # Evaluate next factor
if op.token == plus:
emit(0, "add", 999)
else: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998) # Leaves result in Acc
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= identifier | number
"""
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
getoken()
else:
error("Start of Factor expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == leftbrace: getoken()
else: error(" { expected")
if token.token == idsym: getoken()
else: error("Program name expected")
if token.token == semicolon: getoken()
else: error("Semicolon expected")
if token.token == varsym : vars()
stmtList()
if token.token == rightbrace:
print("\n*** Compilation finished ***\n")
else: error(" } expected")
# Compiler main function
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
# srcfile = open('tiny.txt', 'r')
# line = srcfile.read() # readline
line = """{ G;
var a; b; c;
print a+10;\n""" # a+1
# line = """{ G;
# var a; b; c;
# print a+b-c+8-b-9;\n""" # a+b-c+8-b-9
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "Microcompiler.py v0.2"
main()
getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { <op> <factor> } % No precedence (return 0 for FALSE, anything else for TRUE)
<op> ::= + | - | * | /
<unary> ::= "-" | "+" | "~"
Old - <factor> ::= ID | Number
New - <factor> ::= <unary> <id>|<number> <op> <unary> <id>|<number>
"""
import sys
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "notequals", "lessthan", "greaterthan",
"number", "plus", "minus", "star", "slash", "endfile"]
# Define the tokens as variables
# This uses Python's ability to assign to multiple variables at a time
# and range() which generates a list from 0 to n-1
# e.g. a,b,c = 1,2,3 # assigns 1 to a, 2 to b ...
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, equals, notequals, lessthan, greaterthan,\
number, plus, minus, star, slash, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
# Find a given identifier in the Symbol Table, Return the symtbl entry
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
# Initialise Symbol Table, and preload reserved words
addToSymTbl('var', varsym) # VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('if', ifsym) # IF
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', notequals)
addToSymTbl( '<', lessthan)
addToSymTbl( '>', greaterthan)
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( ';', semicolon)
addToSymTbl( EOF, endfile)
#multi-character identifiers and special symbols (eg >= == !=)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
token = symbol(ch, number, value = int(ch)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["=", "#", "<", ">", "{", "}", "(", ")", "+" , "-" , ";", EOF]:
token = lookup(ch) # preloaded with appropriate token
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
#<expr> ::= <factor> { <op> <factor> } % No precedence (return 0 for FALSE, anything else for TRUE)
#<op> ::= + | - | * | /
#<unary> ::= "-" | "+" | "~"
#Old - <factor> ::= ID | Number
#New - <factor> ::= <unary> <id>|<number> <op> <unary> <id>|<number>
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7d" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
global varptr;
getoken(); #skip VARSYM - already been recognised
while (token.token == idsym):
if token.address != 0:
print("%c already declared\n", token.name);
else:
symtbl[token.name].address = varptr;
varptr = varptr +1
getoken(); #skip past identifier
if token.token == semicolon: getoken() #skip ;
else: error("semicolon expected in declaration")
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token == semicolon):
getoken() #skip ;
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression>
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == printsym:
printStmt()
elif token.token == idsym:
assignStmt()
else:
error("Expected start of a statement")
emit (0, "jumpDemo-to start of statement: jump", thisStmtAdr) # Jump DEMO
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken() # skip "print"
expression() # on return, expr result (at runtime) will be in ACC
emit(0, "output", 0) # Memory address 0 is the ACC
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
Old - <expression> ::= <factor> { (+ | -) <factor> }
New - <expression> ::= <factor> { <op> <factor> } % No precedence (return 0 for FALSE, anything else for TRUE)
<op> ::= + | - | * | /
"""
factor()
while token.token == plus or token.token == minus:
# while token.token == plus or token.token == minus or token.token == star or token.token == slash:
op = token # remember +/-
getoken() # skip past +/-
emit(0, "store", 999) # Save current result
factor() # Evaluate next factor
if op.token == plus:
emit(0, "add", 999)
else: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998) # Leaves result in Acc
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= identifier | number
New---------------------------------------------------------------
#<op> ::= + | - | * | /
#<unary> ::= "-" | "+" | "~"
#Old - <factor> ::= ID | Number
#New - <factor> ::= <unary> <id>|<number> <op> <unary> <id>|<number>
"""
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
getoken()
else:
error("Start of Factor expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == leftbrace: getoken()
else: error(" { expected")
if token.token == idsym: getoken()
else: error("Program name expected")
if token.token == semicolon: getoken()
else: error("Semicolon expected")
if token.token == varsym : vars()
stmtList()
if token.token == rightbrace:
print("\n*** Compilation finished ***\n")
else: error(" } expected")
# Compiler main
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
# srcfile = open("tiny.txt", r)
# line = f.readline() # readline
line = """{ G;
var a; b; c;
print a+1;\n"""
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "hello world"
main()
getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= (+|-) ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "elsesym", "equals", "notequals", "lessthan", "greaterthan",
"readch", "readint", "writech", "writeint",
"number", "plus", "minus", "mpy", "div", "jumpne", "jumpeq","lessthanequal","greaterthanequal","ex","remainder", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, elsesym, equals, notequals, lessthan, greaterthan,\
readch, readint, writech, writeint,\
number, plus, minus, mpy, div, jumpne, jumpeq, lessthanequal, greaterthanequal,ex,remainder, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('for', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('if', ifsym) # IF
addToSymTbl('else', elsesym) # ELSE
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech) #READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', notequals)
addToSymTbl( '<', lessthan) #jumplt
addToSymTbl( '>', greaterthan) #jumpgt
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( ';', semicolon)
addToSymTbl( '!', ex)
addToSymTbl( '%', remainder)
addToSymTbl( EOF, endfile)
#multicharacter one like ">=" are still to do
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '<=', lessthanequal) #jumplt
addToSymTbl( '>=', greaterthanequal) #jumpgt
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
#line = srcfile.readline()
if line == "": line = EOF
#print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == "?":
dumpSymTbl()
continue
if ch == "#":
print "#Comment Found"
srcfile.read()
print "#Read next line"
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n", "#"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
token = symbol(ch, number, value = int(ch)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["#", "{", "}", "(", ")", "+" , "-", "*", "/", ";","%", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch in ["!"]:
ch = getch()
char = "!"
nEqual = "!="
if ch == "=":
char = nEqual
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
elif ch in ["="]:
ch = getch()
char = "="
Equal = "=="
if ch == "=":
char = Equal
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
elif ch in ["<"]:
ch = getch()
char = "<"
lessthanEqual = "<="
if ch == "=":
char = lessthanEqual
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
elif ch in [">"]:
ch = getch()
char = ">"
greatthanEqual = ">="
if ch == "=":
char = greatthanEqual
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | -) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
global varptr;
getoken(); #skip VARSYM - already been recognised
while (token.token == idsym):
if token.address != 0:
print("%c already declared\n", token.name);
else:
symtbl[token.name].address = varptr;
varptr = varptr +1
getoken(); #skip past identifier
if token.token == semicolon: getoken() #skip ;
else: error("semicolon expected in declaration")
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token == semicolon):
getoken() #skip ;
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression> | if <expression> | while <expression>
"""
global codeptr
# thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == printsym:
printStmt()
elif token.token == idsym:
assignStmt()
elif token.token == assignsym:
getoken()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == readint:
readIntStmt()
elif token.token == readch:
readChStmt()
elif token.token == writeint:
writeIntStmt()
elif token.token == writech:
writeChStmt()
elif token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) # Jump DEMO
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken() # skip "print"
expression() # on return, expr result (at runtime) will be in ACC
emit(0, "writeint", 0) # Memory address 0 is the ACC
if token.token == rightbrace:
print("#\n*** Compilation finished ***\n")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == notequals: # skip # then read next line
srcfile.read()
getoken()
elif token.token == assignsym: #if the next token is =
expression()
elif token.token == idsym: factor()
elif token.token == jumpeq: print("#")
elif token.token == jumpne: print("#")
elif token.token == lessthanequal: print("")
elif token.token == greaterthanequal: print("")
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
emit(0, "compare",60)
expression()
stmt()
emit(0, "return",0)
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
emit(0, "store", 888)
stmt()
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
getoken() # skip "if"
emit(0, "compare",50)
expression()
stmt()
emit(0, "increment", 1)
emit(0, "jumpi", 14)
#===============================================================================
def readIntStmt():
#===============================================================================
getoken()
expression() # skip "if"
emit(0, "readint",999)
#===============================================================================
def readChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "readch",11)
#===============================================================================
def writeIntStmt():
#===============================================================================
getoken() # skip "if"
expression()
emit(0, "writeint",50)
#===============================================================================
def writeChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "writech",51)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | - | * | /) <factor> }
"""
factor()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpeq or token.token == jumpne or token.token == lessthanequal or token.token == greaterthanequal:
op = token # remember +/-
getoken() # skip past +/-
emit(0, "store", 999) # Save current result
factor() # Evaluate next factor
#working
if op.token == plus: #+
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 999)
elif op.token == minus: # - Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998) # Leaves result in Acc
emit(0, "store", 880)
elif op.token == mpy: #*
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 881)
elif op.token == div: #/
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 882)
elif op.token == remainder: #%
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mod", 998)
emit(0, "store", 883)
elif op.token == jumpeq: #==
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "jumpeq", 56)
elif op.token == jumpne: #!=
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpne", 82)
emit(0, "loadv", 0)
emit(0, "store", 884)
elif op.token == lessthanequal: #<=
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumplt", 82)
emit(0, "loadv", 0)
emit(0, "store", 885)
elif op.token == lessthanequal: #<=
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpgt", 82)
emit(0, "loadv", 0)
emit(0, "store", 886)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= (+|-) identifier | number
"""
#Numbers
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
getoken()
elif token.token == assignsym:getoken()
elif token.token == jumpeq:
print("#==")
elif token.token == jumpne:
print("#!=")
elif token.token == lessthanequal:
print("#<=")
elif token.token == greaterthanequal:
print("#<=")
elif token.token == semicolon: getoken()
else: error("Start of Factor expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == leftbrace: getoken()
else: error(" { expected")
if token.token == idsym: getoken()
else: error("Program name expected")
if token.token == semicolon: getoken()
else: error("Semicolon expected")
if token.token == varsym : vars()
stmtList()
if token.token == number:
factor()
elif token.token == idsym: factor()
elif token.token == rightbrace:
print("\n")
else: error(" } expected")
# Compiler main function
#======================================================================
def main():
#======================================================================
global line
global srcfile
global outfile
global charIndex
initSymTbl()
srcfile = open('tiny_2.txt', 'r')
line = srcfile.read() # readline
# for line in open('tiny.txt', 'r'):
# if not line.startswith("#"):
# debugScanner = False
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# outfile.write(token)
getoken()
srcfile.close()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
main()
#srcfile = open('tiny.txt', 'r')
#lexer = shlex.shlex(srcfile)
#for token in lexer:
# print repr(token)
getoken()
| Python |
import re
__author__ = 'N Tech2'
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= ID | Number
"""
import sys
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken","programsym", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "equals", "comment", "lessthan", "greaterthan",
"number", "plus", "minus", "endsym" ,"elsesym","declaresym","forsym",
"andsym","elifsym","continuesym","nonesym","factorial",
"leftsquarebrace","rightsquarebrace","lessthanequal","colon","comma",
"dot"," greaterthanequal","jumpeq","jumpne","andop","orop","readint","dollar",
"writeint","readch","writech","mpy","div","quote ","stringsym","arraysym",
"readsym","breaksym","breaksym","endfile"]
# define the tokens as variables
unknownToken,programsym,idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, equals, comment, lessthan, greaterthan,\
number, plus, minus,elsesym,declaresym,forsym,andsym,elifsym,\
continuesym,factorial,nonesym,dollar,leftsquarebrace,rightsquarebrace,\
lessthanequal,colon,comma,dot, greaterthanequal,jumpeq,jumpne,\
andop,orop,endfile,readint,writeint,readch,writech,\
mpy,div,quote,stringsym,arraysym,readsym,breaksym,\
endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName):
# thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym)
addToSymTbl('program',programsym)
addToSymTbl('break', breaksym)
addToSymTbl('declare', declaresym)
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('else', elsesym)
addToSymTbl('elif', elifsym)
addToSymTbl('if', ifsym)
addToSymTbl('for', forsym)
addToSymTbl('and', andsym)
addToSymTbl('None', nonesym)
addToSymTbl("hello world", stringsym)
addToSymTbl('continue', continuesym)
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech)
addToSymTbl('read', readsym)#READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', comment)
addToSymTbl( '<', lessthan)
addToSymTbl( '>', greaterthan)
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( ';', semicolon)
addToSymTbl( '-', minus)
addToSymTbl( '!', factorial)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( '$', dollar)
addToSymTbl( '[', leftsquarebrace)
addToSymTbl( ']', rightsquarebrace)
addToSymTbl( ':', colon)
addToSymTbl( ',', comma)
addToSymTbl( '.', dot)
addToSymTbl( '<=', lessthanequal)
addToSymTbl( '>=', greaterthanequal)
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '&&', andop)
addToSymTbl( '||', orop)
addToSymTbl( '"',quote)
addToSymTbl( EOF, endfile)
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
# line = f.readline()
# if line == "": line = EOF
print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == '?':
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
x = ""
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n", "#"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
while(ch.isdigit() == True):
x = x + ch
ch = getch()
token = symbol(x, number, value = int(x)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["=", "#", "<", ">", "{", "}", "(", ")", "[","]", "+" , "-", "*", "/", ";","!", "==",",","<=",">=",'"',":", EOF]:
token = lookup(ch) # preloaded with appropriate token
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | - | * | /) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
ta = 0
tn = []
global varptr;
getoken();
if token.token == idsym:
ta = token.address
tn = token.name
getoken()
if token.token == leftsquarebrace:
getoken()
if token.token == number:
getoken()
if token.token == rightsquarebrace:
getoken()
else:
error("] expected")
else: error("number expected")
else:
print
if ta != 0:
print("%c already declared\n", token.name);
assignStmt()
else:
symtbl[tn].address = varptr;
varptr = varptr +1
if token.token == assignsym:
getoken()
expression()
if token.token == comma:
vars()
elif token.token == semicolon : getoken()
else: error("comma or semicolon expected in declaration")
#===============================================================================
def array():
#===============================================================================
global array;
getoken()
while (token.token == number):
print("#array address")
emit(0, "constant", token.value)
emit(0, "constant", token.value)
emit(0, "constant", token.value)
emit(0, "constant", token.value)
emit(0, "constant", 4)
getoken();
if token.token == rightsquarebrace:getoken();
if token.token == assignsym:getoken();
while( token.token == number):
print("#store value")
emit(0, "load", 10)
emit(0, "add", 12)
emit(0, "store", 1)
emit(0, "loadv", token.value)
emit(0, "store-ind", 0)
getoken();
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token != rightbrace):
stmt()
print("\n#*** Compilation finished ***\n")
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression>
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == arraysym:
array()
if token.token == printsym:
printStmt()
if token.token == number:
expression()
elif token.token == leftbracket:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == idsym:
assignStmt()
elif token.token == quote:
a =""
getoken()
while token.token != quote:
a = str(a) + str(token.name)
getoken()
# print "string:-",a
getoken()
elif token.token == comment:
b =""
getoken()
while token.token != '\n':
b = str(b) + str(token.name)
getoken()
# print "comment:-"
getoken()
elif token.token == assignsym:
getoken()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == readint:
readIntStmt()
elif token.token == readch:
readChStmt()
elif token.token == writeint:
writeIntStmt()
elif token.token == writech:
writeChStmt()
elif token.token == rightbracket:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == comma:
getoken()
elif token.token == lessthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "lessthanequal"
expression()
elif token.token == greaterthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "greaterthanequal"
expression()
elif token.token == breaksym:
print("program break")
elif token.token == rightsquarebrace:
print("\n#*** Compilation finished ***\n")
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) Jump DEMO need in break program
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken()
# skip "print"
expression()
emit(0, "writeint", 0)
stmt()
# if token.token == rightbrace:
# print("\n*** Compilation finished ***\n")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token
getoken()
# print "token>>>>",tokenNames[token.token]
if token.token == jumpne:
srcfile.read()
getoken()
elif token.token == assignsym:
getoken()
elif token.token == lessthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "lessthanequal"
print "token:-",tokenNames[token.token]
elif token.token == greaterthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "greaterthanequal"
elif token.token == leftsquarebrace:
array()
elif token.token == jumpeq:
getoken()
elif token.token == rightbracket:
getoken()
# elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
emit(0, "compare",60)
expression()
stmt()
if token.token == rightbrace: getoken()
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
emit(0, "store", 888)
stmt()
emit(0, "return",0)
if token.token == rightbrace: getoken()
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
getoken()
emit(0, "compare",50)
expression()
stmt()
emit(0, "increment", 1)
emit(0, "jumpi", 14)
#===============================================================================
def readIntStmt():
#===============================================================================
getoken()
expression() # skip "if"
emit(0, "readint",12)
#===============================================================================
def readChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "readch",11)
#===============================================================================
def writeIntStmt():
#===============================================================================
getoken() # skip "if"
expression()
emit(0, "writeint",50)
#===============================================================================
def writeChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "writech",token.value)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | -) <factor> }
"""
# while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpne or token.token == jumpeq:
# op = token # remember +/-
# getoken() # skip past +/-
# emit(0, "store", 999) # Save current result
# factor()
#
#
# if token.token == leftbracket:
# getoken()
#1st number
if token.token == leftbracket: getoken()
factor()
# if token.token == lessthan:
# getoken()
#
# if token.token == assignsym:
# token.token.name = lessthanequal
# print "wweee",tokenNames[token.token]
#
# else:
# ungetch()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpne or token.token == jumpeq or token.token == lessthanequal or token.token == greaterthanequal:
op = token # remember +/-
getoken()
# skip past +/-
emit(0, "store", 997) # Save current result
if token.token == leftbracket:
getoken()
factor()
if token.token == plus:
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 5)
elif token.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998) # Leaves result in Acc
emit(0, "store", 6)
if token.token == rightbracket:getoken()
if op.token == plus:
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 5)
if op.token == leftbracket:getoken()
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998)
emit(0, "store", 6)
if token.token == semicolon:
getoken()
elif op.token == mpy:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 7)
elif op.token == div:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 8)
if token.token == plus:
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 5)
elif token.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998)
emit(0, "store", 6)
elif op.token == mpy:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 7)
elif op.token == div:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 8)
elif op.token == lessthan:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumplt", 80)
emit(0, "loadv", 0)
emit(0, "store", 9)
elif op.token == greaterthan:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpgt", 81)
emit(0, "loadv", 0)
emit(0, "store", 10)
#not working
elif op.token == jumpne:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpne", 82)
emit(0, "loadv", 0)
emit(0, "store", 11)
elif op.token == jumpeq:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpeq", 83)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= identifier | number
"""
if token.token == plus:
getoken()
#- (unary)
elif token.token == minus:
getoken()
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == comment:
b =""
getoken()
while token.token != "\\n":
b = str(b) + str(token.name)
getoken()
print "comment:-",b
getoken()
elif token.token == quote:
a =""
getoken()
while token.token != quote:
a = str(a) + str(token.name)
getoken()
# print "string:-",a
getoken()
elif token.token == lessthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "lessthanequal"
elif token.token == greaterthan:
getoken()
if token.token == assignsym:
tokenNames[token.token]= "greaterthanequal"
elif token.token == number:
emit(0, "loadv", token.value)
# emit(0, "store", 1)
getoken()
# elif token.token == assignsym:
# getoken()
elif token.token == leftbracket:
getoken()
# print "this is token",tokenNames[token.token]
elif token.token == leftsquarebrace: getoken()
elif token.token == rightbracket:
getoken()
elif token.token == rightsquarebrace:
getoken()
elif token.token == semicolon:
getoken()
elif token.token == leftbrace:
getoken()
elif token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
elif token.token == breaksym:
print("program break")
else:
error("Start Of Factor Expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == programsym:
# print "name",tokenNames[token.token]
getoken()
else: error("Program start with 'program' keyword")
if token.token == idsym:
getoken()
else: error("Program name expected")
if token.token == semicolon:
getoken()
else: error("Semicolon expected")
if token.token == declaresym :
vars()
if token.token == varsym :
vars()
stmtList()
if token.token == rightbrace:
print("#\n*** Compilation finished ***\n")
else: error(" } expected")
# Compiler main
#======================================================================
def main():
#======================================================================
global line
global srcfile
global charIndex
initSymTbl()
with open("break.txt") as line1:
out1file = open('output.obj','w')
line = line1.read()
# print line
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
y = str(token)
out1file.write(y)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
# emit(0, "load", 0)
# emit(0, "constant", "'A'") #need in break,comment,exitloop,writer-if-read-write-ch program
# emit(0, "constant", 10)
# emit(0, "constant", 12)
# emit(0, "constant", 25)
# emit(0, "constant", -10)
# outfile = open('constant.obj', "w")
#
# z = str("#Microcompiler.py v0.2")
# outfile.write(z)
#
# emit(0, "load", 0)
# z1 = str('emit(0, "load", 0)')
# outfile.write(z1)
#
# emit(0, "constant", "'A'")
# z2 = str('emit(0, "constant", "A")')
# outfile.write(z2)
#
# emit(0, "constant", 10)
# z3 = str('emit(0, "constant", 10)')
# outfile.write(z3)
#
# z4=emit(0, "constant", 12)
# z4 = str('emit(0, "constant", 12)')
# outfile.write(z4)
#
# z5=emit(0, "constant", 25)
# z5 = str('emit(0, "constant", 25)')
# outfile.write(z5)
#
# z6=emit(0, "constant", -10)
# z6 = str('emit(0, "constant", -10)')
# outfile.write(z6)
# outfile.close()
main()
getoken()
#=======================================================================
# *** That's it folks - written by Giovanni Moretti - April 27, 2011 ***
#=======================================================================
| Python |
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= (+|-) ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym","printmsg", "ifsym", "elsesym", "equals", "notequals", "lessthan", "greaterthan",
"readch", "readint", "writech", "writeint",
"number", "plus", "minus", "mpy", "div", "jumpne", "jumpeq","lessthanequal","greaterthanequal", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym,printmsg, ifsym, elsesym, equals, notequals, lessthan, greaterthan,\
readch, readint, writech, writeint,\
number, plus, minus, mpy, div, jumpne, jumpeq, lessthanequal, greaterthanequal, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('for', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('printmsg', printmsg)
addToSymTbl('if', ifsym) # IF
addToSymTbl('else', elsesym) # ELSE
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech) #READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', notequals)
addToSymTbl( '<', lessthan) #jumplt
addToSymTbl( '>', greaterthan) #jumpgt
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( ';', semicolon)
addToSymTbl( EOF, endfile)
#multicharacter one like ">=" are still to do
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '<=', lessthanequal) #jumplt
addToSymTbl( '>=', greaterthanequal) #jumpgt
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
#line = srcfile.readline()
#if line == "": line = EOF
#if line == "#": line = notequals
#print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == "?":
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n", "#"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
token = symbol(ch, number, value = int(ch)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["=", "#", "<", ">", "{", "}", "(", ")", "+" , "-", "*", "/", ";","!", "==", EOF]:
token = lookup(ch) # preloaded with appropriate token
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | -) <factor> } % No precedence
# <factor> ::= ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
global varptr;
getoken(); #skip VARSYM - already been recognised
while (token.token == idsym):
if token.address != 0:
print("%c already declared\n", token.name);
else:
symtbl[token.name].address = varptr;
varptr = varptr +1
getoken(); #skip past identifier
if token.token == semicolon: getoken() #skip ;
else: error("semicolon expected in declaration")
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token == semicolon):
getoken() #skip ;
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression> | if <expression> | while <expression>
"""
global codeptr
# thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == printsym:
printStmt()
elif token.token == printmsg:
printMsg()
elif token.token == idsym:
assignStmt()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == readint:
readIntStmt()
elif token.token == readch:
readChStmt()
elif token.token == writeint:
writeIntStmt()
elif token.token == writech:
writeChStmt()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) # Jump DEMO
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken() # skip "print"
expression() # on return, expr result (at runtime) will be in ACC
# emit(0, "writeint", 0) # Memory address 0 is the ACC
if token.token == rightbrace:
print("\n*** Compilation finished ***\n")
#===============================================================================
def printMsg():
#===============================================================================
""" <printMsg> ::= printMsg <expression>"""
emit(0, "loadv", 100)
emit(0, "store", 1)
emit(0, "call", 40)
emit(40, "load-Ind", 0)
emit(41, "jumpeq", 45)
emit(42, "writech",150)
emit(43, "increment", 1)
emit(44, "jump", 40)
emit(45, "return", 0)
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == jumpeq:
getoken()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
emit(0, "compare",60)
expression()
stmt()
emit(0, "return",0)
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
emit(0, "store", 888)
stmt()
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
getoken() # skip "if"
emit(0, "compare",50)
expression()
stmt()
emit(0, "increment", 1)
emit(0, "jumpi", 14)
#===============================================================================
def readIntStmt():
#===============================================================================
getoken()
expression() # skip "if"
emit(0, "readint",12)
#===============================================================================
def readChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "readch",11)
#===============================================================================
def writeIntStmt():
#===============================================================================
getoken() # skip "if"
expression()
emit(0, "writeint",50)
return
#===============================================================================
def writeChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "writech",token.value)
return
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | - | * | /) <factor> }
"""
factor()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpne or token.token == jumpeq:
op = token # remember +/-
getoken() # skip past +/-
emit(0, "store", 999) # Save current result
factor() # Evaluate next factor
#working
if op.token == plus:
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 777)
if op.token == leftbracket:getoken()
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998) # Leaves result in Acc
emit(0, "store", 6)
elif op.token == mpy:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 7)
elif op.token == div:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 8)
elif op.token == lessthan:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumplt", 80)
emit(0, "loadv", 0)
emit(0, "store", 9)
elif op.token == greaterthan:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpgt", 81)
emit(0, "loadv", 0)
emit(0, "store", 10)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= (+|-) identifier | number
"""
#+ (unary)
if token.token == plus:
getoken()
token.value = token.value
#- (unary)
elif token.token == minus:
getoken()
token.value = -token.value
#Numbers
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
getoken()
else: error("Start of Factor expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == leftbrace: getoken()
else: error(" { expected")
if token.token == idsym: getoken()
else: error("Program name expected")
if token.token == semicolon: getoken()
else: error("Semicolon expected")
if token.token == varsym : vars()
stmtList()
if token.token == printmsg:
getoken()
elif token.token == rightbrace:
print("\n*** Compilation finished ***\n")
else: error(" } expected")
# Compiler main function
#======================================================================
def main():
#======================================================================
global line
global srcfile
global outfile
global charIndex
initSymTbl()
srcfile = open('writeOutput.txt', 'r')
line = srcfile.read() # readline
# for line in open('tiny.txt', 'r'):
# if not line.startswith("#"):
# debugScanner = False
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
getoken()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
#outfile = open('writeOutput.obj', 'w')
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
emit(100, "constant", "'A'")
emit(101, "constant", "'P'")
emit(102, "constant", "'P'")
emit(103, "constant", "'L'")
emit(104, "constant", "'E'")
main()
#srcfile = open('writeOutput_unarry_plue_minus.txt', 'r')
#lexer = shlex.shlex(srcfile)
#for token in lexer:
# print repr(token)
#getoken()
| Python |
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= (+|-) ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "elsesym", "equals", "notequals", "lessthan", "greaterthan",
"readch", "readint", "writech", "writeint",
"number", "plus", "minus", "mpy", "div", "jumpne", "jumpeq","lessthanequal","greaterthanequal", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, elsesym, equals, notequals, lessthan, greaterthan,\
readch, readint, writech, writeint,\
number, plus, minus, mpy, div, jumpne, jumpeq, lessthanequal, greaterthanequal, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('for', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('if', ifsym) # IF
addToSymTbl('else', elsesym) # ELSE
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech) #READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', notequals)
addToSymTbl( '<', lessthan) #jumplt
addToSymTbl( '>', greaterthan) #jumpgt
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( ';', semicolon)
addToSymTbl( EOF, endfile)
#multicharacter one like ">=" are still to do
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '<=', lessthanequal) #jumplt
addToSymTbl( '>=', greaterthanequal) #jumpgt
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
#line = srcfile.readline()
if line == "": line = EOF
print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == "?":
dumpSymTbl()
continue
if ch == "#":
print "#Comment Found"
srcfile.read()
print "#Read next line"
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n", "#"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
token = symbol(ch, number, value = int(ch)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["=", "#", "<", ">", "{", "}", "(", ")", "+" , "-", "*", "/", ";","!", "==", EOF]:
token = lookup(ch) # preloaded with appropriate token
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | -) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
global varptr;
getoken(); #skip VARSYM - already been recognised
while (token.token == idsym):
if token.address != 0:
print("%c already declared\n", token.name);
else:
symtbl[token.name].address = varptr;
varptr = varptr +1
getoken(); #skip past identifier
if token.token == semicolon: getoken() #skip ;
else: error("semicolon expected in declaration")
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token == semicolon):
getoken() #skip ;
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression> | if <expression> | while <expression>
"""
global codeptr
# thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == printsym:
printStmt()
elif token.token == idsym:
assignStmt()
elif token.token == assignsym:
getoken()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == readint:
readIntStmt()
elif token.token == readch:
readChStmt()
elif token.token == writeint:
writeIntStmt()
elif token.token == writech:
writeChStmt()
elif token.token == semicolon:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) # Jump DEMO
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken() # skip "print"
expression() # on return, expr result (at runtime) will be in ACC
emit(0, "writeint", 0) # Memory address 0 is the ACC
if token.token == rightbrace:
print("\n*** Compilation finished ***\n")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == notequals:
srcfile.read()
getoken()
elif token.token == assignsym:
getoken()
elif token.token == jumpeq:
getoken()
elif token.token == printsym:printStmt()
elif token.token == idsym: factor()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
emit(0, "compare",60)
expression()
stmt()
emit(0, "return",0)
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
emit(0, "store", 888)
stmt()
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
getoken() # skip "if"
emit(0, "compare",50)
expression()
stmt()
emit(0, "increment", 1)
emit(0, "jumpi", 14)
#===============================================================================
def readIntStmt():
#===============================================================================
getoken()
expression() # skip "if"
emit(0, "readint",999)
#===============================================================================
def readChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "readch",11)
#===============================================================================
def writeIntStmt():
#===============================================================================
getoken() # skip "if"
expression()
emit(0, "writeint",50)
#===============================================================================
def writeChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "writech",51)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | - | * | /) <factor> }
"""
factor()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpne or token.token == jumpeq:
op = token # remember +/-
getoken() # skip past +/-
emit(0, "store", 999) # Save current result
factor() # Evaluate next factor
#working
if op.token == plus:
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 999)
if op.token == leftbracket:getoken()
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998) # Leaves result in Acc
emit(0, "store", 6)
elif op.token == mpy:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 7)
elif op.token == div:
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 8)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= (+|-) identifier | number
"""
#Numbers
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
getoken()
elif token.token == assignsym:getoken()
elif token.token == semicolon:getoken()
else: error("Start of Factor expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == leftbrace: getoken()
else: error(" { expected")
if token.token == idsym: getoken()
else: error("Program name expected")
if token.token == semicolon: getoken()
else: error("Semicolon expected")
if token.token == varsym : vars()
stmtList()
if token.token == number:
factor()
elif token.token == rightbrace:
print("\n*** Compilation finished ***\n")
else: error(" } expected")
# Compiler main function
#======================================================================
def main():
#======================================================================
global line
global srcfile
global outfile
global charIndex
initSymTbl()
srcfile = open('comment.txt', 'r')
line = srcfile.read() # readline
# for line in open('tiny.txt', 'r'):
# if not line.startswith("#"):
# debugScanner = False
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# outfile.write(token)
getoken()
srcfile.close()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
emit(0, "constant", "'A'")
emit(0, "constant", 10)
emit(0, "constant", 12)
emit(0, "constant", 25)
emit(0, "constant", -10)
main()
#srcfile = open('tiny.txt', 'r')
#lexer = shlex.shlex(srcfile)
#for token in lexer:
# print repr(token)
#getoken()
| Python |
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= (+|-) ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "elsesym", "equals", "notequals", "lessthan", "greaterthan",
"readch", "readint", "writech", "writeint",
"number", "plus", "minus", "mpy", "div", "jumpne", "jumpeq","lessthanequal","greaterthanequal","remainder", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, elsesym, equals, notequals, lessthan, greaterthan,\
readch, readint, writech, writeint,\
number, plus, minus, mpy, div, jumpne, jumpeq, lessthanequal, greaterthanequal,remainder, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('for', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('if', ifsym) # IF
addToSymTbl('else', elsesym) # ELSE
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech) #READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', notequals)
addToSymTbl( '<', lessthan) #jumplt
addToSymTbl( '>', greaterthan) #jumpgt
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( ';', semicolon)
addToSymTbl( '%', remainder)
addToSymTbl( EOF, endfile)
#multicharacter one like ">=" are still to do
addToSymTbl( '!=', jumpne)
addToSymTbl( '==', jumpeq)
addToSymTbl( '<=', lessthanequal) #jumplt
addToSymTbl( '>=', greaterthanequal) #jumpgt
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
#line = srcfile.readline()
if line == "": line = EOF
#print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == "?":
dumpSymTbl()
continue
if ch == "#":
print "#Comment Found"
srcfile.read()
print "#Read next line"
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n", "#"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
token = symbol(ch, number, value = int(ch)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["#", "{", "}", "(", ")", "+" , "-", "*", "/", ";","%", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch in ["!"]:
ch = getch()
char = "!"
nEqual = "!="
if ch == "=":
char = nEqual
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
elif ch in ["="]:
ch = getch()
char = "="
Equal = "=="
if ch == "=":
char = Equal
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
elif ch in ["<"]:
ch = getch()
char = "<"
lessthanEqual = "<="
if ch == "=":
char = lessthanEqual
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
elif ch in [">"]:
ch = getch()
char = ">"
greatthanEqual = ">="
if ch == "=":
char = greatthanEqual
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | -) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
global varptr;
getoken(); #skip VARSYM - already been recognised
while (token.token == idsym):
if token.address != 0:
print("%c already declared\n", token.name);
else:
symtbl[token.name].address = varptr;
varptr = varptr +1
getoken(); #skip past identifier
if token.token == semicolon: getoken() #skip ;
else: error("semicolon expected in declaration")
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token == semicolon):
getoken() #skip ;
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression> | if <expression> | while <expression>
"""
global codeptr
# thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == printsym:
printStmt()
elif token.token == idsym:
assignStmt()
elif token.token == assignsym:
getoken()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == readint:
readIntStmt()
elif token.token == readch:
readChStmt()
elif token.token == writeint:
writeIntStmt()
elif token.token == writech:
writeChStmt()
elif token.token == jumpne:
expression()
elif token.token == jumpeq:
expression()
elif token.token == lessthanequal:
expression()
elif token.token == greaterthanequal:
expression()
elif token.token == rightbrace:getoken()
elif token.token == semicolon:
getoken()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) # Jump DEMO
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken() # skip "print"
expression() # on return, expr result (at runtime) will be in ACC
emit(0, "writeint", 0) # Memory address 0 is the ACC
if token.token == rightbrace:
print("#\n*** Compilation finished ***\n")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == notequals: # skip # then read next line
srcfile.read()
getoken()
elif token.token == assignsym: #if the next token is =
expression()
elif token.token == idsym: factor()
elif token.token == ifsym: stmt()
elif token.token == whilesym: stmt()
elif token.token == jumpeq: print("#")
elif token.token == jumpne: print("#")
elif token.token == lessthanequal: print("#")
elif token.token == greaterthanequal: print("#")
elif token.token == semicolon: getoken()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
expression()
stmt()
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
emit(0, "store", 888)
stmt()
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
print("#While statement\n")
getoken() # skip "while"
expression()
emit(0, "compare", 204)
stmt()
emit(0, "increment", 1)
emit(0, "jumpi", 14)
#===============================================================================
def readIntStmt():
#===============================================================================
getoken()
expression()
emit(0, "readint",999)
#===============================================================================
def readChStmt():
#===============================================================================
getoken()
emit(0, "readch",11)
#===============================================================================
def writeIntStmt():
#===============================================================================
getoken() # skip "if"
expression()
emit(0, "writeint",50)
#===============================================================================
def writeChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "writech",51)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | - | * | /) <factor> }
"""
factor()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpeq or token.token == jumpne or token.token == lessthanequal or token.token == greaterthanequal:
op = token # remember +/-
getoken() # skip past +/-
#emit(0, "store", 2) # Save current result
factor() # Evaluate next factor
#working
if op.token == plus: #+
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 999)
elif op.token == minus: # - Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998) # Leaves result in Acc
emit(0, "store", 880)
elif op.token == mpy: #*
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 881)
elif op.token == div: #/
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 882)
elif op.token == remainder: #%
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mod", 998)
emit(0, "store", 883)
elif op.token == jumpeq: #==
print("#==\n")
emit(0, "compare", 11)
emit(0, "jumpeq", 310)
if token.token == idsym:getoken()
if token.token == assignsym:getoken()
emit(310, "loadv", token.value)
emit(311, "store", 401)
emit(312, "return", 0)
getoken()
getoken()
elif op.token == jumpne: #!=
print("#!=\n")
emit(0, "compare", 204)
emit(0, "jumpne", 300)
if token.token == idsym:getoken()
if token.token == assignsym:getoken()
emit(300, "loadv", token.value)
emit(301, "store", 400)
emit(302, "return", 0)
getoken()
getoken()
elif op.token == lessthanequal: #<=
print("#<=\n")
emit(0, "compare", 204)
emit(0, "jumplt", 320)
emit(0, "compare", 204)
emit(0, "jumpeq", 320)
if token.token == idsym:getoken()
if token.token == assignsym:getoken()
emit(320, "loadv", token.value)
emit(321, "store", 402)
emit(322, "return", 0)
getoken()
getoken()
elif op.token == greaterthanequal: #>=
print("#>=\n")
emit(0, "compare", 204)
emit(0, "jumpgt", 330)
emit(0, "compare", 204)
emit(0, "jumpeq", 330)
if token.token == idsym:getoken()
if token.token == assignsym:getoken()
emit(330, "loadv", token.value)
emit(331, "store", 403)
emit(332, "return", 0)
getoken()
if token.token == semicolon:getoken()
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= (+|-) identifier | number
"""
#Numbers
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", 200+token.value)
getoken()
elif token.token == assignsym:getoken()
elif token.token == jumpeq:
print("#==")
elif token.token == jumpne:
print("")
elif token.token == lessthanequal:
print("#<=")
elif token.token == greaterthanequal:
print("#<=")
elif token.token == lessthan:
print("#<")
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == semicolon: getoken()
else: error("Start of Factor expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == leftbrace: getoken()
else: error(" { expected")
if token.token == idsym: getoken()
else: error("Program name expected")
if token.token == semicolon: getoken()
else: error("Semicolon expected")
if token.token == varsym : vars()
stmtList()
if token.token == rightbrace:
print("\n")
else: error(" } expected")
if token.token == rightbrace:
print("\n")
# Compiler main function
#======================================================================
def main():
#======================================================================
global line
global srcfile
global outfile
global charIndex
initSymTbl()
srcfile = open('character.txt', 'r')
line = srcfile.read() # readline
# for line in open('tiny.txt', 'r'):
# if not line.startswith("#"):
# debugScanner = False
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# outfile.write(token)
getoken()
srcfile.close()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
main()
#srcfile = open('tiny.txt', 'r')
#lexer = shlex.shlex(srcfile)
#for token in lexer:
# print repr(token)
getoken()
| Python |
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= (+|-) ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket","leftparen","rightparen",
"printsym", "ifsym", "elsesym", "equals", "notequals", "lessthan", "greaterthan",
"readch", "readint", "writech", "writeint","comma","dot","appendsym",
"number", "plus", "minus", "mpy", "div", "jumpne", "jumpeq","lessthanequal","greaterthanequal", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket, leftparen, rightparen,\
printsym, ifsym, elsesym, equals, notequals, lessthan, greaterthan,\
readch, readint, writech, writeint,comma,dot,appendsym,\
number, plus, minus, mpy, div, jumpne, jumpeq, lessthanequal, greaterthanequal, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('for', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('append', appendsym)
addToSymTbl('if', ifsym) # IF
addToSymTbl('else', elsesym) # ELSE
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech) #READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', notequals)
addToSymTbl( '<', lessthan) #jumplt
addToSymTbl( '>', greaterthan) #jumpgt
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '[', leftparen)
addToSymTbl( ']', rightparen)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( ';', semicolon)
addToSymTbl( EOF, endfile)
addToSymTbl( ',', comma)
addToSymTbl( '.', dot)
#multicharacter one like ">=" are still to do
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '<=', lessthanequal) #jumplt
addToSymTbl( '>=', greaterthanequal) #jumpgt
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
#line = srcfile.readline()
if line == "": line = EOF
print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == "?":
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n", "#"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
token = symbol(ch, number, value = int(ch)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["=", "#", "<", ">", "{", "}", "(", ")", "[","]", "+" , "-", "*", "/", ";","!", "==",",",".", EOF]:
token = lookup(ch) # preloaded with appropriate token
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | - | * | /) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
global varptr;
getoken(); #skip VARSYM - already been recognised
while (token.token == idsym):
if token.address != 0:
print("%c already declared\n", token.name);
else:
symtbl[token.name].address = varptr;
varptr = varptr +1
getoken(); #skip past identifier
if token.token == assignsym:assignStmt()
if token.token == semicolon: getoken() #skip ;
else: error("semicolon expected in declaration")
#===============================================================================
def array():
#a=[1,2,3];
#a=append(4);
#print a;
#===============================================================================
global array;
list =[];
#a=[1,2,3];
while (token.token == number):
print("#array address")
emit(0, "loadv", token.value)
list.append(token.value)
emit(0, "store", token.value+100)
emit(0, "push", token.value+200)
getoken()
if token.token == comma:getoken()
if token.token == rightparen:getoken()
if token.token == semicolon:getoken()
print ("\n"+ "#This is a list of array from txt\n" + "#"+str(list) + "\n");
if token.token == idsym:getoken()
if token.token == dot:getoken()
if token.token == appendsym:getoken()
if token.token == leftbracket:getoken()
while( token.token == number):
print("#store new value to list")
emit(0, "load", token.value)
list.append(token.value)
emit(0, "store", 104)
emit(0, "push", token.value+200)
getoken()
print("\n"+ "#Now the list have new value added to list" + "\n#"+str(list)+"\n")
if token.token == rightbracket:getoken()
if token.token == semicolon:getoken()
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token == semicolon):
getoken() #skip ;
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression> | if <expression> | while <expression>
"""
global codeptr
thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == printsym:
printStmt()
if token.token == varsym:
vars()
elif token.token == idsym:
assignStmt()
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) # Jump DEMO
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken() # skip "print"
if token.token == idsym: getoken()
emit(0, "writeint", 100) # Memory address 0 is the ACC
if token.token == semicolon: getoken()
if token.token == rightbrace:
print("")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == notequals:
srcfile.read()
# getoken()
elif token.token == assignsym:
getoken()
elif token.token == number:
factor()
elif token.token == leftparen: # [
array()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | - | * | /) <factor> }
"""
factor()
while token.token == plus or token.token == jumpeq:
op = token # remember +/-
getoken() # skip past +/-
emit(0, "store", 999) # Save current result
if token.token == jumpeq:
emit(0, "store", 998)
emit(0, "compare", 999)
emit(0, "jumpeq", 83)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= (+|-) identifier | number
"""
#Numbers
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
print("# Store value")
emit(0, "loadv", token.value)
emit(0, "store", 1)
print(" ")
getoken()
elif token.token == leftparen:getoken()
elif token.token == assignsym:getoken()
elif token.token == semicolon:getoken()
else: error("Start of Factor expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == leftbrace: getoken()
else: error(" { expected")
if token.token == idsym: getoken()
else: error("Program name expected")
if token.token == semicolon: getoken()
else: error("Semicolon expected")
stmtList()
if token.token == rightparen: getoken()
elif token.token == number: array()
# else: error(" ] expected")
if token.token == printsym:printStmt()
if token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
else: error(" } expected")
# Compiler main function
#======================================================================
def main():
#======================================================================
global line
global srcfile
global outfile
global charIndex
initSymTbl()
srcfile = open('declare_array.txt', 'r')
line = srcfile.read() # readline
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# outfile.write(token)
getoken()
srcfile.close()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
#emit(0, "constant", "'A'")
#emit(0, "constant", 10)
emit(0, "constant", 12)
#emit(0, "constant", 25)
#emit(0, "constant", -10)
main()
"""srcfile = open('tiny.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print repr(token)
"""
#getoken()
| Python |
'''
Created on Jun 23, 2014
@author: Brian
'''
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= (+|-) ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "elsesym", "equals", "notequals", "lessthan", "greaterthan",
"readch", "readint", "writech", "writeint",
"number", "plus", "minus", "mpy", "div", "jumpne", "jumpeq","lessthanequal","greaterthanequal","ex","remainder", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, elsesym, equals, notequals, lessthan, greaterthan,\
readch, readint, writech, writeint,\
number, plus, minus, mpy, div, jumpne, jumpeq, lessthanequal, greaterthanequal,ex,remainder, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('for', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('if', ifsym) # IF
addToSymTbl('else', elsesym) # ELSE
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech) #READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', notequals)
addToSymTbl( '<', lessthan) #jumplt
addToSymTbl( '>', greaterthan) #jumpgt
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( ';', semicolon)
addToSymTbl( '!', ex)
addToSymTbl( '%', remainder)
addToSymTbl( EOF, endfile)
#multicharacter one like ">=" are still to do
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '<=', lessthanequal) #jumplt
addToSymTbl( '>=', greaterthanequal) #jumpgt
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
#line = srcfile.readline()
if line == "": line = EOF
#print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == "?":
dumpSymTbl()
continue
if ch == "#":
print "#Comment Found"
srcfile.read()
print "#Read next line"
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n", "#"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
token = symbol(ch, number, value = int(ch)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["#", "{", "}", "(", ")", "+" , "-", "*", "/", ";","%", EOF]:
token = lookup(ch) # preloaded with appropriate token
elif ch in ["!"]:
ch = getch()
char = "!"
nEqual = "!="
if ch == "=":
char = nEqual
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
elif ch in ["="]:
ch = getch()
char = "="
Equal = "=="
if ch == "=":
char = Equal
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
elif ch in ["<"]:
ch = getch()
char = "<"
lessthanEqual = "<="
if ch == "=":
char = lessthanEqual
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
elif ch in [">"]:
ch = getch()
char = ">"
greatthanEqual = ">="
if ch == "=":
char = greatthanEqual
ch = getch()
else:
token = lookup(ch)
ungetch()
token = lookup(char)
if token is None:
token = addToSymTbl(char, idsym)
return
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <array> ::= [<expr>]
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | -) <factor> } % No precedence
# <factor> ::= [+/-] ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
global varptr;
getoken(); #skip VARSYM - already been recognised
while (token.token == idsym):
if token.address != 0:
print("%c already declared\n", token.name);
else:
symtbl[token.name].address = varptr;
varptr = varptr +1
getoken(); #skip past identifier
if token.token == semicolon: getoken() #skip ;
else: error("semicolon expected in declaration")
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token == semicolon):
getoken() #skip ;
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression> | if <expression> | while <expression>
"""
global codeptr
# thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == printsym:
printStmt()
elif token.token == idsym:
assignStmt()
elif token.token == assignsym:
getoken()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == readint:
readIntStmt()
elif token.token == readch:
readChStmt()
elif token.token == writeint:
writeIntStmt()
elif token.token == writech:
writeChStmt()
elif token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) # Jump DEMO
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken() # skip "print"
expression() # on return, expr result (at runtime) will be in ACC
emit(0, "writeint", 0) # Memory address 0 is the ACC
if token.token == rightbrace:
print("#\n*** Compilation finished ***\n")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == notequals: # skip # then read next line
srcfile.read()
getoken()
elif token.token == assignsym: #if the next token is =
expression()
elif token.token == idsym: factor()
elif token.token == jumpeq: print("#")
elif token.token == jumpne: print("#")
elif token.token == lessthanequal: print("")
elif token.token == greaterthanequal: print("")
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
emit(0, "compare",60)
expression()
stmt()
emit(0, "return",0)
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
emit(0, "store", 888)
stmt()
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
getoken() # skip "if"
emit(0, "compare",50)
expression()
stmt()
emit(0, "increment", 1)
emit(0, "jumpi", 14)
#===============================================================================
def readIntStmt():
#===============================================================================
getoken()
expression() # skip "if"
emit(0, "readint",999)
#===============================================================================
def readChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "readch",11)
#===============================================================================
def writeIntStmt():
#===============================================================================
getoken() # skip "if"
expression()
emit(0, "writeint",50)
#===============================================================================
def writeChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "writech",51)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | - | * | /) <factor> }
"""
factor()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == lessthan or token.token == greaterthan or token.token == jumpeq or token.token == jumpne or token.token == lessthanequal or token.token == greaterthanequal:
op = token # remember +/-
getoken() # skip past +/-
emit(0, "store", 600+token.value) # Save current result
factor() # Evaluate next factor
#working
if op.token == plus: #+
emit(0, "add", 601)
emit(0, "store", 200)
elif op.token == minus: # - Subtract - have to swap operand order
emit(0, "subtract", 603) # Leaves result in Acc
emit(0, "store", 201)
elif op.token == mpy: #*
emit(0, "load", 999)
emit(0, "mpy", 998)
emit(0, "store", 203)
elif op.token == div: #/
emit(0, "load", 999)
emit(0, "div", 998)
emit(0, "store", 882)
elif op.token == remainder: #%
emit(0, "load", 999)
emit(0, "mod", 998)
emit(0, "store", 883)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= (+|-) identifier | number
"""
#Numbers
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
getoken()
elif token.token == assignsym:getoken()
elif token.token == jumpeq:
print("#==")
elif token.token == jumpne:
print("#!=")
elif token.token == lessthanequal:
print("#<=")
elif token.token == greaterthanequal:
print("#<=")
elif token.token == semicolon: getoken()
else: error("Start of Factor expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == leftbrace: getoken()
else: error(" { expected")
if token.token == idsym: getoken()
else: error("Program name expected")
if token.token == semicolon: getoken()
else: error("Semicolon expected")
if token.token == varsym : vars()
stmtList()
if token.token == number:
factor()
elif token.token == idsym: factor()
elif token.token == rightbrace:
print("\n")
else: error(" } expected")
# Compiler main function
#======================================================================
def main():
#======================================================================
global line
global srcfile
global outfile
global charIndex
initSymTbl()
srcfile = open('variable_declar.txt', 'r')
line = srcfile.read() # readline
# for line in open('tiny.txt', 'r'):
# if not line.startswith("#"):
# debugScanner = False
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
# outfile.write(token)
getoken()
srcfile.close()
sys.exit(1)
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
print "#Microcompiler.py v0.2"
emit(0, "load", 0)
main()
#srcfile = open('tiny.txt', 'r')
#lexer = shlex.shlex(srcfile)
#for token in lexer:
# print repr(token)
#getoken()
| Python |
""" Giovanni's MicroCompiler Demo
<program> ::= { <id> ; <vars > <stmtlist> }
<vars> ::= V { <id> ; } % DECLARATIONS
<stmtlist> ::= <stmt> { ; <stmt> }
<stmt> ::= P <id> | <id> = <expr>
<expr> ::= <factor> { (+ | -) <factor> } % No precedence
<factor> ::= (+|-) ID | Number
"""
import sys
import shlex
#===============================================================================
# # Lexical Analyser - the "Scanner" - Define the TokenTypes
#===============================================================================
tokenNames =\
[ "unknownToken", "idsym", "assignsym", "leftbrace", "rightbrace",
"varsym", "semicolon", "whilesym", "leftbracket", "rightbracket",
"printsym", "ifsym", "elsesym", "equals", "notequals", "lessthan", "greaterthan",
"readch", "readint", "writech", "writeint",
"number", "plus", "minus", "mpy", "div", "jumpne", "jumpeq","lessthanequal","greaterthanequal","remainder", "endfile"]
# define the tokens as variables
unknownToken, idsym, assignsym, leftbrace, rightbrace,\
varsym, semicolon, whilesym, leftbracket, rightbracket,\
printsym, ifsym, elsesym, equals, notequals, lessthan, greaterthan,\
readch, readint, writech, writeint,\
number, plus, minus, mpy, div, jumpne, jumpeq, lessthanequal, greaterthanequal,remainder, endfile = range(0, len(tokenNames))
#===============================================================================
class symbol:
#===============================================================================
name = None # String representation
token = None; # Corresponding token
address = 0; # For variables, their runtime address
value = None # on defined for numbers
def __init__(self, name, token, value = 0):
self.name = name
self.token = token
self.address = 0 # for identifiers, their address
self.value = value # for numbers, their value
symtbl = {}; # The Symbol Table, a dictionary of symbols indexed by name
#======================================================================
# GLOBALS for output of Lexical Analyser
# Set by each call to GeToken()
token = None; # A symbol
line = "\n" # the complex source file as a string
charIndex = 0 # the position in the source
linenumber= 0 # The current number
EOF = chr(0)
#======================================================================
# Run Time Code Generation Variables
varptr = 500 # Arbitrary base address of memory for variables
codeptr = 10 # Address to output next instruction (for code)
#===============================================================================
# Symbol Table Management Routines
#===============================================================================
#===============================================================================
def addToSymTbl (name, token):
#===============================================================================
symtbl[name] = symbol(name, token) # Add a new symbol to the dictionary
return symtbl[name]
#===============================================================================
def lookup (thisName):
#===============================================================================
"# Find a given identifier in the Symbol Table, Return the symtbl entry"
if symtbl.has_key(thisName): # thisName has been seen before
return symtbl[thisName] # return the symtbl entry
else: return None
#===============================================================================
def initSymTbl():
#===============================================================================
"# Initialise Symbol Table, and preload reserved words"
addToSymTbl('var', varsym) # VAR
addToSymTbl('while', whilesym) # WHILE
addToSymTbl('for', whilesym) # WHILE
addToSymTbl('print', printsym) # PRINT
addToSymTbl('if', ifsym) # IF
addToSymTbl('else', elsesym) # ELSE
addToSymTbl('readint', readint) #READINT
addToSymTbl('writeint', writeint) #READINT
addToSymTbl('readch', readch) #READINT
addToSymTbl('writech', writech) #READINT
# Now add symbols - NB only single character symbols are here
# multicharacter one like ">=" are still to do
addToSymTbl( '=', assignsym)
addToSymTbl( '#', notequals)
addToSymTbl( '<', lessthan) #jumplt
addToSymTbl( '>', greaterthan) #jumpgt
addToSymTbl( '{', leftbrace )
addToSymTbl( '}', rightbrace)
addToSymTbl( '(', leftbracket)
addToSymTbl( ')', rightbracket)
addToSymTbl( '+', plus )
addToSymTbl( '-', minus)
addToSymTbl( '*', mpy)
addToSymTbl( '/', div)
addToSymTbl( ';', semicolon)
addToSymTbl( '%', remainder)
addToSymTbl( EOF, endfile)
#multicharacter one like ">=" are still to do
addToSymTbl( '==', jumpeq)
addToSymTbl( '!=', jumpne)
addToSymTbl( '<=', lessthanequal) #jumplt
addToSymTbl( '>=', greaterthanequal) #jumpgt
#===============================================================================
# Scanner Diagnostics
#===============================================================================
def printToken(tok):
#===============================================================================
" - display the specified token."
if tok.token == idsym:
print "Token = %10s, %-10s adr = %3d" %\
(tokenNames[tok.token], tok.name, tok.address)
elif tok.token == number:
print "Token = %10s %d" % (tokenNames[tok.token], tok.value)
else:
print "Token = %10s" % tokenNames[tok.token]
#==============================?=================================================
def dumpSymTbl():
#===============================================================================
""" Dump all the tokens in the symboltable """
print(" *** Symbol Table ***")
for name in symtbl.keys(): # keys is a list of the names (printable form of tokens)
tok = symtbl[name]
if tok.token == idsym:
printToken(tok)
#===============================================================================
def getch():
#===============================================================================
global line
global charIndex
global linenumber
while True:
if charIndex < len(line): # See if used up current line
ch = line[charIndex] # if not, get character
charIndex = charIndex+1 # & move pointer for next time
else:
#line = srcfile.readline()
#if line == "": line = EOF
#if line == "#": line = notequals
print "--> ",
line = raw_input() +"\n" # read new line, adding \n so it's like f.readline()
charIndex = 0 # & reset character pointer
linenumber = linenumber + 1
continue
if ch == "\n":
ch = " " # A newline is a token separator
if ch == "?":
dumpSymTbl()
continue
return ch
#===============================================================================
def ungetch():
#===============================================================================
""" Unget the next character peeked at when building variables, numbers
and when distinguishing between >= and > ...
"""
global charIndex;
charIndex = charIndex-1;
#===============================================================================
def getoken():
#===============================================================================
""" GETOKEN - Put next token into the global TOKEN """
global token
ch = getch() # skip whitespace
while ch in ["\t", " ", "\n", "#"]:
ch = getch()
# If ch is alphabetic then this is start of reserved word or an identifier
if ch.isalpha(): # Letter therefore it's either identifier or reserved word
name = ""
while ch.isalpha() or ch.isdigit() or ch == "_":
name = name + ch
ch = getch()
ungetch() # let terminator be used next time
token = lookup(name) # See if token's known
if token is None: # if not
token = addToSymTbl(name, idsym) # add as 'idsym'-IDENTIFIER
return # we've set token.token to either id or tokentype of reserved word
#---------------------------------------------------------------------
# If it's numeric return TOKEN=number & token.value = binary value
elif ch.isdigit():
# In the real version, build number and don't forget to end with ungetch()
token = symbol(ch, number, value = int(ch)) # simplistic SINGLE DIGIT Ascii to Binary
return
#---------------------------------------------------------------------
# Single character tokens
elif ch in ["=", "#", "<", ">", "{", "}", "(", ")", "+" , "-", "*", "/", ";","%", "==", EOF]:
token = lookup(ch) # preloaded with appropriate token
else:
print "Unknown character -->%s<- decimal %d" % (ch,ord(ch))
sys.exit(1) # Abort Compilation
#======================================================================
# THE GRAMMAR
# <program> ::= { <id> ; <vars > <stmtlist> }
# <vars> ::= var { <id> ; } % DECLARATIONS
# <stmtlist> ::= <stmt> { ; <stmt> }
# <stmt> ::= print <id>
# <id> = <expr>
# <expr> ::= <factor> { (+ | -) <factor> } % No precedence
# <factor> ::= ID | Number
#======================================================================
# Centralised Parser Error Message handler
#======================================================================
#===============================================================================
def error (msg):
#===============================================================================
print line
print "-" * charIndex,"^"
print("Error on %d - %s\n" % (number, msg))
printToken(token)
print("\n")
#===============================================================================
def emit (memadr, opcode, parameter):
#===============================================================================
"""EMIT CODE - Emit a of code with a Parameter
if first arg is zero - (the memory address), use and incr CODEPTR"""
global codeptr
if (memadr == 0):
memadr = codeptr
codeptr = codeptr+1
print "%6d %-8s %-7s" % (memadr, opcode, parameter)
#======================================================================
# VARIABLE DECLARATIONS
# <vars> ::= V { <id> ; }
#===============================================================================
def vars() :
#===============================================================================
global varptr;
getoken(); #skip VARSYM - already been recognised
while (token.token == idsym):
if token.address != 0:
print("%c already declared\n", token.name);
else:
symtbl[token.name].address = varptr;
varptr = varptr +1
getoken(); #skip past identifier
if token.token == semicolon: getoken() #skip ;
else: error("semicolon expected in declaration")
#======================================================================
# STMTLIST
# <stmtlist> ::= <stmt> { ; <stmt> }
#===============================================================================
def stmtList():
#===============================================================================
stmt()
while (token.token == semicolon):
getoken() #skip ;
stmt()
#======================================================================
# STMT
#===============================================================================
def stmt():
#===============================================================================
""" <stmt> ::= print <expression> | <id> = <expression> | if <expression> | while <expression>
"""
global codeptr
# thisStmtAdr = codeptr # Jump DEMO - not part of Stmt
if token.token == printsym:
printStmt()
elif token.token == idsym:
assignStmt()
elif token.token == ifsym:
ifStmt()
elif token.token == elsesym:
elseStmt()
elif token.token == whilesym:
whileStmt()
elif token.token == readint:
readIntStmt()
elif token.token == readch:
readChStmt()
elif token.token == writeint:
writeIntStmt()
elif token.token == writech:
writeChStmt()
elif token.token == rightbrace:
print("")
else:
error("Expected start of a statement")
# emit (0, "return", thisStmtAdr) # Jump DEMO
#===============================================================================
def printStmt():
#===============================================================================
""" <printStmt> ::= print <expression>"""
getoken() # skip "print"
expression() # on return, expr result (at runtime) will be in ACC
emit(0, "writeint", 202) # Memory address 0 is the ACC
if token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
#===============================================================================
def assignStmt():
#===============================================================================
"""
<id> = <expression>
"""
whichidentifier = token # Remember which ID on Left
getoken() # Get token after identifier
if token.token == assignsym:
getoken()
elif token.token == jumpeq:
getoken()
else:
error("Expected = in assignment statement")
expression()
# Save result into LHS runtime address
#===============================================================================
def ifStmt():
#if-then-else
#===============================================================================
""" <ifStmt> ::= if <expression>"""
getoken() # skip "if"
emit(0, "compare",60)
expression()
stmt()
emit(0, "return",0)
#===============================================================================
def elseStmt():
#if-then-else
#===============================================================================
""" <elseStmt> ::= else <expression>"""
getoken()
emit(0, "store", 888)
stmt()
#===============================================================================
def whileStmt():
#===============================================================================
""" <whileStmt> ::= while (condition)statement"""
getoken() # skip "if"
emit(0, "compare",50)
expression()
stmt()
emit(0, "increment", 1)
emit(0, "jumpi", 14)
#===============================================================================
def readIntStmt():
#===============================================================================
getoken()
expression() # skip "if"
emit(0, "readint",999)
#===============================================================================
def readChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "readch",11)
#===============================================================================
def writeIntStmt():
#===============================================================================
getoken() # skip "if"
expression()
emit(0, "writeint",202)
#===============================================================================
def writeChStmt():
#===============================================================================
getoken() # skip "if"
emit(0, "writech",51)
#===============================================================================
def expression():
#===============================================================================
"""
Leaves result in ACC at runtime
Use addresses 999 & 998 as Temporary variables
<expression> ::= <factor> { (+ | - | * | /) <factor> }
"""
#1st number
factor()
while token.token == plus or token.token == minus or token.token == mpy or token.token == div or token.token == remainder:
op = token # remember +/-
getoken() # skip past +/-
if token.token == leftbracket:getoken()
factor()
if token.token == plus:
getoken()
emit(0, "loadv", token.value)
emit(0, "add", 103)
emit(0, "store", 200)
getoken()
if op.token == mpy:
getoken()
emit(0, "mpy", 104)
emit(0, "store", 201)
if token.token == rightbracket:getoken()
if op.token == plus:
emit(0, "loadv", 999)
emit(0, "add", 999)
emit(0, "store", 5)
elif op.token == minus: # Subtract - have to swap operand order
emit(0, "store", 998)
emit(0, "load" , 999)
emit(0, "subtract", 998) # Leaves result in Acc
emit(0, "store", 6)
if token.token == semicolon: getoken()
elif op.token == div:
emit(0, "div", 102)
emit(0, "store", 202)
getoken()
elif op.token == remainder: #%
emit(0, "store", 998)
emit(0, "load", 999)
emit(0, "mod", 998)
emit(0, "store", 883)
#===============================================================================
def factor():
#===============================================================================
"""
# FACTOR() - leaves result in ACC at runtime
<factor> ::= (+|-) identifier | number
"""
#Numbers
if token.token == idsym:
emit(0, "load", token.address)
getoken()
elif token.token == number:
emit(0, "loadv", token.value)
emit(0, "store", token.value+100)
getoken()
else: error("Start of Factor expected")
#===============================================================================
def program():
#===============================================================================
""" # PROGRAM - Start production of the grammar
# <program> ::= { <id> ; <vars > <stmtlist> }
"""
if token.token == leftbrace: getoken()
else: error(" { expected")
if token.token == idsym: getoken()
else: error("Program name expected")
if token.token == semicolon: getoken()
else: error("Semicolon expected")
if token.token == varsym : vars()
stmtList()
if token.token == printsym: printStmt()
if token.token == semicolon: getoken()
else: error("Semicolon expected")
if token.token == rightbrace:
print("\n#*** Compilation finished ***\n")
else: error(" } expected")
# Compiler main function
#======================================================================
def main():
#======================================================================
global line
global srcfile
global outfile
global charIndex
initSymTbl()
srcfile = open('complex_expression.txt', 'r')
line = srcfile.read() # readline
# for line in open('tiny.txt', 'r'):
# if not line.startswith("#"):
# debugScanner = False
charIndex = 0
debugScanner = False
if debugScanner: # Scanner Test Routine - Read a line and display the tokens
getoken()
while token.token is not None: # Skeleton for testing Scanner
printToken(token)
getoken()
sys.exit(1)
# writefile.close()
else:
getoken() # Parse Program according to the grammar
program() # Call start non-terminal handler
#===============================================================================
# Main Compiler starts here
#===============================================================================
writefile = open('test.txt', 'w')
writefile.write("#Microcompiler.py v0.2")
writefile.close()
"""emit(0, "load", 0)
emit(0, "constant", "'A'")
emit(0, "constant", 10)
emit(0, "constant", 12)
emit(0, "constant", 25)
emit(0, "constant", -10)
"""
emit(0, "load", 0)
main()
srcfile = open('complex_expression.txt', 'r')
lexer = shlex.shlex(srcfile)
for token in lexer:
print "#" + repr(token)
#getoken()
| Python |
Subsets and Splits
SQL Console for ajibawa-2023/Python-Code-Large
Provides a useful breakdown of language distribution in the training data, showing which languages have the most samples and helping identify potential imbalances across different language groups.