--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/Makefile Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,62 @@
+#
+# dashbot analysis tools that operate on dashboard.sqlite
+# from your Firefox profile folder to make sense of the data
+# collected by the Privacy Dashboard after running on the
+# list of top sites as extracted from google's webpages.
+# You need to have installed sqlite3 and its include files
+#
+# Licensed under the Apache License, Version 2.0
+# See http://www.apache.org/licenses/LICENSE-2.0
+#
+# Copyright (c) 2010-2011 Dave Raggett
+#
+
+CC = gcc
+CFLAGS = -g -c -Wall
+OBJECTS = main.o cluster.o graphviz.o gml.o top-sites.o rbtree.o hashtable.o
+LIBS = -l sqlite3 -l m
+
+all: analyst extract
+
+# dependencies on make files
+main.o: analyst.h top_sites.h
+top-sites.o: analyst.h top_sites.h
+cluster.o: analyst.h top_sites.h hashtable.h rbtree.h
+graphviz.o: analyst.h top_sites.h hashtable.h
+gml.o: analyst.h top_sites.h hashtable.h
+rbtree.o: rbtree.h
+hashtable.o: hashtable.h hashtable_private.h
+
+# copy dashboard.sqlite from your firefox profile folder
+# to a new folder and run analyst in the new folder to
+# generate the output files for graphviz etc.
+analyst: $(OBJECTS)
+ $(CC) -o analyst $(OBJECTS) $(LIBS)
+
+# tool for extracting list of top sites from raw text
+# obtained from Google's page on top sites as found at
+# http://www.google.com/adplanner/static/top1000/
+# creates top-sites.c and top-sites.js
+extract: extract.c
+ $(CC) -o extract extract.c
+
+# rule for compiling source files to object files
+
+.SUFFIXES:
+.SUFFIXES: .c .o
+
+.c.o :
+ $(CC) -o $@ $(CFLAGS) $<
+
+# make count gives total line count
+count:
+ wc -l *.c *.h
+
+# purge all temporary files
+clean:
+ rm -f *.o *.so *.h.gch extract analyst
+
+.PHONY: all
+.PHONY: count
+.PHONY: clean
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/analyst.h Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,42 @@
+/*
+ * analyst.h -- Analysis program for dashbot data in SQLite
+ *
+ * Copyright (c) 2011 Dave Raggett
+ *
+ * Licensed 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.
+ */
+
+#ifndef DASHBOT_ANALYST_H
+#define DASHBOT_ANALYST_H
+
+#ifndef __cplusplus
+
+#ifndef WS_BOOL
+#define WS_BOOL
+typedef enum { false, true } bool;
+#define null (void *)0
+#endif
+
+#endif
+
+extern int debug;
+
+extern void graph(sqlite3 *db);
+extern void gml(sqlite3 *db);
+extern size_t study_clusters(sqlite3 *db);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // DASHBOT_ANALYST_H
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/cluster.c Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,778 @@
+/*
+ * cluster.c -- find and rank clusters by size, graph largest
+ *
+ * Copyright (c) 2011 Dave Raggett
+ *
+ * Licensed 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.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <assert.h>
+#include <string.h> // for strlen
+#include <strings.h>
+#include <sqlite3.h>
+
+#include "hashtable.h"
+#include "rbtree.h"
+#include "analyst.h"
+#include "top_sites.h"
+
+// bit flags for nodes for marking visits etc
+#define DASHBOT_VISITED 1
+#define DASHBOT_GRAPHED 2
+
+static struct hashtable *sites = NULL;
+static struct _dashbot_node *all_nodes = NULL;
+static RbTree *clusters = NULL;
+
+typedef struct _dashbot_node {
+ char *host;
+ int flags;
+ RbTree *in;
+ RbTree *out;
+ struct _dashbot_node *next;
+} DashbotNode;
+
+typedef struct _dashbot_node_list {
+ DashbotNode *node;
+ struct _dashbot_node_list *next;
+} DashbotNodeList;
+
+typedef struct _dashbot_arc {
+ DashbotNode *node;
+ int offsite;
+} DashbotArc;
+
+typedef struct _dashbot_cluster {
+ DashbotNode *root;
+ int size; // number of nodes in cluster
+ struct _dashbot_cluster *next; // peers with same size
+} DashbotCluster;
+
+
+// **** list routines for debugging ****
+static void list_link(RbKey key, RbValue value, RbContext context)
+{
+ //DashbotNode *node = (DashbotNode *)key;
+ DashbotArc *arc = (DashbotArc *)value;
+ printf(" -- %s (%d)\n", arc->node->host, arc->offsite);
+}
+
+static void list_node(DashbotNode *node)
+{
+ printf("%s: in %ld, out %ld\n", node->host,
+ rbTreeSize(node->in), rbTreeSize(node->out));
+
+ rbTreeApplyLR(node->in, (RbApplyFn)list_link, (RbContext)null);
+ rbTreeApplyLR(node->out, (RbApplyFn)list_link, (RbContext)null);
+}
+
+static void list_nodes()
+{
+ DashbotNode *node = all_nodes;
+
+ while (node)
+ {
+ list_node(node);
+ node = node->next;
+ }
+}
+
+
+
+static void new_arc(RbNode *node, RbKey key, RbValue value)
+{
+ node->key = key;
+ node->value = (RbValue)value;
+}
+
+static void update_arc(RbNode *node, RbValue value)
+{
+ assert(0);
+ if (node->value)
+ free(node->value);
+
+ node->value = (RbValue)value;
+}
+
+// for freeing data stored in red-black tree node
+static void erase_arc(RbKey key, RbValue value)
+{
+ if (value)
+ free(value);
+}
+
+static int compare_arcs(RbKey key1, RbKey key2)
+{
+ DashbotNode *node1 = (DashbotNode *)key1;
+ DashbotNode *node2 = (DashbotNode *)key2;
+ return strcasecmp(node1->host, node2->host);
+}
+
+static void add_link(DashbotNode *host, DashbotNode *third_pty, int offsite)
+{
+ DashbotArc *arc;
+
+ arc = (DashbotArc *)malloc(sizeof(DashbotArc));
+ assert(arc);
+ arc->node = third_pty;
+ arc->offsite = offsite;
+
+ rbTreeInsertKey(host->out, (RbKey)third_pty, (RbValue)arc);
+
+ arc = (DashbotArc *)malloc(sizeof(DashbotArc));
+ assert(arc);
+ arc->node = host;
+ arc->offsite = offsite;
+
+ rbTreeInsertKey(third_pty->in, (RbKey)host, (RbValue)arc);
+}
+
+static DashbotNode *create_node(char *host)
+{
+ DashbotNode *node = (DashbotNode *)calloc(1, sizeof(DashbotNode));
+ assert(node);
+
+ assert(host);
+ node->host = strdup(host);
+ assert(node->host);
+ node->in = rbTreeNew(new_arc, update_arc, erase_arc, compare_arcs);
+ node->out = rbTreeNew(new_arc, update_arc, erase_arc, compare_arcs);
+ node->next = all_nodes;
+ all_nodes = node;
+ return node;
+}
+
+static void free_node(DashbotNode *node)
+{
+ if (node)
+ {
+ free(node->host);
+ rbTreeFree(node->in);
+ rbTreeFree(node->out);
+ free(node);
+ }
+}
+
+static int free_all_nodes()
+{
+ DashbotNode *next, *node = all_nodes;
+ int count = 0;
+
+ while (node)
+ {
+ next = node->next;
+ free_node(node);
+ ++count;
+ node = next;
+ }
+
+ return count;
+}
+
+static DashbotNode *get_node(char *host)
+{
+ DashbotNode *node = (DashbotNode *)hashtable_search(sites, host);
+
+ if (node == null)
+ {
+ node = create_node(host);
+ assert(hashtable_insert(sites, node->host, node, 2));
+ }
+
+ return node;
+}
+
+int check_missing_sites(sqlite3 *db, char *name)
+{
+ int i, missing = 0;
+ SiteDesc *desc;
+ DashbotNode *node;
+ char *domain;
+ char host[1024];
+ FILE *fp = fopen(name, "w+");
+
+ if (!fp)
+ {
+ fprintf(stderr, "Can't write to file %s\n", name);
+ sqlite3_close(db);
+ exit(1);
+ }
+
+ fprintf(fp, "\nvar missing_sites = [\n");
+
+ for (i = 0; i < NUM_SITES; ++i)
+ {
+ desc = top_sites + i;
+ domain = desc->domain;
+
+ node = (DashbotNode *)hashtable_search(sites, domain);
+
+ if (node)
+ continue;
+
+ strcpy(host, "www.");
+ strcat(host, domain);
+
+ node = (DashbotNode *)hashtable_search(sites, host);
+
+ if (!node)
+ {
+ ++missing;
+ fprintf(fp, " \"%s\",\n", host);
+ }
+ }
+
+ fprintf(fp, "];\n\n");
+ return missing;
+}
+
+// insert host into hashable as node
+static int note_sites(void *not_used, int argc, char **argv, char **azColName)
+{
+ char *host = argv[0];
+ get_node(host);
+
+ return 0;
+}
+
+// should extend node structure to collect
+// other columns from the site_info table
+static void examine_sites(sqlite3 *db)
+{
+ char sql[1024];
+ char *zErrMsg = 0;
+
+ sprintf(sql, "SELECT host FROM site_info");
+
+ int rc = sqlite3_exec(db, sql, note_sites, null, &zErrMsg);
+
+ if( rc != SQLITE_OK )
+ {
+ fprintf(stderr, "SQL error: %s\n", zErrMsg);
+ sqlite3_free(zErrMsg);
+ }
+}
+
+// insert host into hashable as node
+static int note_links(void *not_used, int argc, char **argv, char **azColName)
+{
+ char *page_host = argv[0];
+ char *third_party = argv[1];
+ char *offsite = argv[2];
+ int flag = 0;
+
+ if (page_host && third_party)
+ {
+ DashbotNode *host_node = get_node(page_host);
+ DashbotNode *third_pty_node = get_node(third_party);
+
+ sscanf(offsite, "%d", &flag);
+ add_link(host_node, third_pty_node, flag);
+ }
+ else
+ fprintf(stderr, "Warning: missing domains -- host: %s, 3rd: %s, offset: %s\n", page_host, third_party, offsite);
+
+ return 0;
+}
+
+// should extend node structure to collect
+// other columns from the site_info table
+static void examine_third_parties(sqlite3 *db, bool indirect)
+{
+ char *sql;
+ char *zErrMsg = 0;
+
+ if (indirect)
+ sql = "SELECT page_host,third_party,offsite FROM parties";
+ else
+ sql = "SELECT parent,child,offsite FROM relations";
+
+ int rc = sqlite3_exec(db, sql, note_links, null, &zErrMsg);
+
+ if( rc != SQLITE_OK )
+ {
+ fprintf(stderr, "SQL error: %s\n", zErrMsg);
+ sqlite3_free(zErrMsg);
+ }
+}
+
+static void new_cluster(RbNode *node, RbKey key, RbValue value)
+{
+ node->key = (RbValue)value;
+ node->value = (RbValue)value;
+}
+
+static void update_cluster(RbNode *node, RbValue value)
+{
+ DashbotCluster *cluster1 = (DashbotCluster *)node->value;
+ DashbotCluster *cluster2 = (DashbotCluster *)value;
+
+ cluster2->next = cluster1->next;
+ cluster1->next = cluster2;
+}
+
+// for freeing data stored in red-black tree node
+static void erase_cluster(RbKey key, RbValue value)
+{
+ DashbotCluster *cluster, *next;
+
+ if (value)
+ {
+ cluster = (DashbotCluster *)value;
+
+ while (cluster)
+ {
+ next = cluster->next;
+ free(cluster);
+ cluster = next;
+ }
+ }
+}
+
+static int compare_clusters(RbKey key1, RbKey key2)
+{
+ DashbotCluster *cluster1 = (DashbotCluster *)key1;
+ DashbotCluster *cluster2 = (DashbotCluster *)key2;
+ int count1 = cluster1->size;
+ int count2 = cluster2->size;
+
+ return count1 == count2 ? 0 : (count1 < count2 ? -1 : 1);
+}
+
+static DashbotCluster *create_cluster(DashbotNode *root)
+{
+ DashbotCluster *cluster = (DashbotCluster *)calloc(1, sizeof(DashbotCluster));
+ assert(cluster);
+
+ cluster->root = root;
+ return cluster;
+}
+
+static bool visited_node(DashbotNode *node)
+{
+ return (node->flags & DASHBOT_VISITED) ? true : false;
+}
+
+static void mark_visited(DashbotNode *node)
+{
+ node->flags |= DASHBOT_VISITED;
+}
+
+// forward reference
+static void trace_cluster(DashbotCluster *cluster, DashbotNode *node);
+
+static void trace_arc(RbKey key, RbValue value, RbContext context)
+{
+ DashbotCluster *cluster = (DashbotCluster *)context;
+ DashbotArc *arc = (DashbotArc *)value;
+ trace_cluster(cluster, arc->node);
+}
+
+static void trace_cluster(DashbotCluster *cluster, DashbotNode *node)
+{
+ if (!visited_node(node))
+ {
+ cluster->size++;
+ mark_visited(node);
+
+ rbTreeApplyLR(node->in, (RbApplyFn)trace_arc, (RbContext)cluster);
+ rbTreeApplyLR(node->out, (RbApplyFn)trace_arc, (RbContext)cluster);
+ }
+}
+
+static void visit_cluster(RbKey key, RbValue value, RbContext context)
+{
+ DashbotCluster *cluster = (DashbotCluster *)value, *c;
+ int count = 0;
+
+ for (c = cluster; c; c = c->next)
+ {
+ ++count;
+ }
+
+ printf(" %d: %d (%d entries)\n", cluster->size, count * cluster->size, count);
+}
+
+static void examine_clusters()
+{
+ DashbotNode *node;
+ DashbotCluster *cluster;
+ long int max = 0, count = 0;
+
+ // initialize global variable as red-black tree or sorted clusters
+ clusters = rbTreeNew(new_cluster, update_cluster, erase_cluster, compare_clusters);
+
+ // use top sites as nice nodes for cluster roots
+ // this isn't necessary, but ...
+
+ // now iterate through all nodes in case we missed some clusters
+ for (node = all_nodes; node; node = node->next)
+ {
+ if (visited_node(node))
+ continue;
+
+ cluster = create_cluster(node);
+ trace_cluster(cluster, node);
+
+ ++count;
+
+ if (max < cluster->size)
+ max = cluster->size;
+
+ printf("found cluster size %d root %s\n", cluster->size, cluster->root->host);
+
+ rbTreeInsertKey(clusters, (RbKey)cluster, (RbValue)cluster);
+ }
+
+ printf("found %ld clusters in %ld sizes, max size is %ld\n", count, rbTreeSize(clusters), max);
+ rbTreeApplyRL(clusters, (RbApplyFn)visit_cluster, (RbContext)null);
+}
+
+// local declarations for graphing a cluster
+typedef struct {
+ char *host_id;
+ FILE *fp;
+} GraphContext;
+
+static void graph_node(FILE *fp, DashbotNode *node);
+
+// write at most max bytes including null terminator
+static bool format_node_id(DashbotNode *node, char *id, size_t max)
+{
+ int c;
+ char *p = id, *q = node->host, *r = p + max - 1;
+
+ if (p >= r)
+ return false;
+
+ *p++ = 's';
+ *p++ = '_';
+
+
+ while (p < r && (c = *q++))
+ {
+ *p++ = (c == '.' || c == '-') ? '_' : c;
+ }
+
+ if (p < r)
+ {
+ *p = '\0';
+ return true;
+ }
+
+ return false;
+}
+
+static void graph_arc1(RbKey key, RbValue value, RbContext context)
+{
+ GraphContext *gc = (GraphContext *)context;
+ DashbotArc *arc = (DashbotArc *)value;
+ char node_id[1024];
+
+ format_node_id(arc->node, node_id, 1024);
+
+ if (arc->offsite == 1)
+ fprintf(gc->fp, " %s -> %s [style=dotted];\n", gc->host_id, node_id);
+ else
+ fprintf(gc->fp, " %s -> %s;\n", gc->host_id, node_id);
+}
+
+static void graph_arc2(RbKey key, RbValue value, RbContext context)
+{
+ DashbotArc *arc = (DashbotArc *)value;
+ graph_node((FILE *)context, arc->node);
+}
+
+static void graph_node(FILE *fp, DashbotNode *node)
+{
+
+ if (!(node->flags & DASHBOT_GRAPHED))
+ {
+ char node_id[1024];
+ node->flags |= DASHBOT_GRAPHED;
+ format_node_id(node, node_id, 1024);
+
+ fprintf(fp, " %s [shape=\"ellipse\",label=\"%s\",color=black];\n",
+ node_id, node->host);
+
+ GraphContext gc;
+ gc.host_id = node_id;
+ gc.fp = fp;
+
+ // this outputs the graphviz arcs
+ rbTreeApplyLR(node->out, (RbApplyFn)graph_arc1, (RbContext)&gc);
+
+ // this are used to ensure we trace all nodes in cluster
+ rbTreeApplyLR(node->in, (RbApplyFn)graph_arc2, (RbContext)fp);
+ rbTreeApplyLR(node->out, (RbApplyFn)graph_arc2, (RbContext)fp);
+ }
+}
+
+static bool graph_cluster(DashbotCluster *cluster, char *name)
+{
+ FILE *fp = fopen(name, "w+");
+
+ if (!fp)
+ {
+ fprintf(stderr, "Can't write to file %s\n", name);
+ return false;
+ }
+
+ fprintf(fp, "digraph cluster {\n graph [splines=true,overlap=false]\n");
+
+ graph_node(fp, cluster->root);
+
+ fputs("}\n", fp);
+ fclose(fp);
+ return true;
+}
+
+static void new_link(RbNode *node, RbKey key, RbValue value)
+{
+ node->key = key;
+ node->value = (RbValue)value;
+}
+
+static void update_link(RbNode *node, RbValue value)
+{
+ DashbotNodeList *nl1 = (DashbotNodeList *)node->value;
+ DashbotNodeList *nl2 = (DashbotNodeList *)value;
+
+ nl2->next = nl1->next;
+ nl1->next = nl2;
+}
+
+// for freeing data stored in red-black tree node
+static void erase_link(RbKey key, RbValue value)
+{
+ DashbotNodeList *nl, *next;
+
+ if (value)
+ {
+ nl = (DashbotNodeList *)value;
+
+ while (nl)
+ {
+ next = nl->next;
+ free(nl);
+ nl = next;
+ }
+ }
+}
+
+static int compare_links(RbKey key1, RbKey key2)
+{
+ long int count1 = (long int )key1;
+ long int count2 = (long int)key2;
+ return count1 == count2 ? 0 : (count1 < count2 ? 1 : -1);
+}
+
+typedef struct {
+ sqlite3 *db;
+ FILE *fp;
+} LinkContext;
+
+static void list_links(RbKey key, RbValue value, RbContext context)
+{
+ long int size = (long int)key;
+ DashbotNodeList *item = (DashbotNodeList *)value;
+ LinkContext *info = (LinkContext *)context;
+ char sql[1024];
+ char *zErrMsg = 0;
+ sqlite3_stmt *statement;
+ int count = 0;
+
+ while (item)
+ {
+ ++count;
+ item = item->next;
+ }
+
+ printf(" %ld: (%d)\n", size, count);
+
+ fprintf(info->fp,
+ " <tr>\n"
+ " <th colspan='18'>%ld sites with %d references</th>\n"
+ " </tr>\n", size, count);
+
+ item = (DashbotNodeList *)value;
+
+ // should move select statement outside of loop
+ // with sqlite3_bind and sqlite3_reset inside loop
+
+ while (item)
+ {
+ printf(" %s\n", item->node->host);
+
+ snprintf(sql, 1024, "SELECT * FROM site_info WHERE host = \"%s\"", item->node->host);
+
+ if (sqlite3_prepare_v2(info->db, sql, -1, &statement, NULL) == SQLITE_OK)
+ {
+ int cols = sqlite3_column_count(statement);
+ assert(cols >= 19);
+
+ while (sqlite3_step(statement) == SQLITE_ROW)
+ {
+ int i;
+ char *value;
+
+ fprintf(info->fp, "<tr>\n");
+
+ for (i = 0; i <19; ++i)
+ {
+ if (i == 1 || i == 2 || i == 20)
+ continue;
+
+ value = (char*)sqlite3_column_text(statement, i);
+ fprintf(info->fp, "<td>%s</td>\n", value);
+ }
+
+ fprintf(info->fp, "<tr>\n");
+ }
+
+ sqlite3_finalize(statement);
+ }
+ else
+ {
+ fprintf(stderr, "SQL error: %s\n", zErrMsg);
+ sqlite3_free(zErrMsg);
+ break;
+ }
+
+ item = item->next;
+ }
+}
+
+// create a sorted list of nodes by diminishing
+// number of references to the node as a 3rd party
+static RbTree *sort_third_parties(sqlite3 *db)
+{
+ long int size;
+ DashbotNode *node = all_nodes;
+ RbTree *node_list = rbTreeNew(new_link, update_link, erase_link, compare_links);
+
+ while (node)
+ {
+ size = (int)rbTreeSize(node->in);
+ DashbotNodeList *item = (DashbotNodeList *)calloc(1, sizeof(DashbotNodeList));
+ assert(item);
+ item->node = node;
+
+ rbTreeInsertKey(node_list, (RbKey)size, (RbValue)item);
+ node = node->next;
+ }
+
+ printf("found %ld number of nodes grouped by 3rd party references to them\n",
+ rbTreeSize(node_list));
+
+ char *name = "sites.html";
+
+ FILE *fp = fopen(name, "w+");
+
+ if (fp)
+ {
+ LinkContext info;
+ info.db = db;
+ info.fp = fp;
+
+ fprintf(fp,
+ "<html>\n"
+ " <head>\n"
+ " <title>Third Party Sites</title>\n"
+ " </head>\n"
+ " <body>\n"
+ " <table border='1'>\n"
+ " <caption>Third Party Sites</caption>\n"
+ " <thead>\n"
+ " <tr>\n"
+ " <th>Site</th>\n"
+ " <th>Session Cookies</th>\n"
+ " <th>Lasting Cookies</th>\n"
+ " <th>Flash Cookies</th>\n"
+ " <th>Internal 3rd Parties</th>\n"
+ " <th>External 3rd Parties</th>\n"
+ " <th>Internal 3rd Party Session Cookies</th>\n"
+ " <th>Internal 3rd Party Lasting Cookies</th>\n"
+ " <th>Internal 3rd Party Flash Cookies</th>\n"
+ " <th>External rd Party Session Cookies</th>\n"
+ " <th>External 3rd Party Lasting Cookies</th>\n"
+ " <th>External 3rd Party Flash Cookies</th>\n"
+ " <th>DOM Storage</th>\n"
+ " <th>HTML5 pings</th>\n"
+ " <th>Invisible Images</th>\n"
+ " <th>Suspicious URLs</th>\n"
+ " <th>Geolocation Permission</th>\n"
+ " <th>P3P policy</th>\n"
+ " </tr>\n"
+ " </thead>\n"
+ " <tbody>\n");
+
+ rbTreeApplyLR(node_list, (RbApplyFn)list_links, (RbContext)&info);
+
+ fprintf(fp,
+ " </tbody>\n"
+ " </body>\n"
+ "</html>\n");
+
+ fclose(fp);
+ }
+ else
+ fprintf(stderr, "couldn't open %s for writing\n", name);
+
+ return node_list;
+}
+
+static int compare_strings(void *key1, void *key2)
+{
+ return !strcmp((char *)key1, (char *)key2);
+}
+
+size_t study_clusters(sqlite3 *db)
+{
+ sites = create_hashtable(8192, oat_hash2, compare_strings);
+
+ if (!sites)
+ {
+ fprintf(stderr, "Can't create hash table\n");
+ sqlite3_close(db);
+ exit(1);
+ }
+
+ // first use site_info table to populate node dictionary
+ // to catch websites that don't have any third parties
+ examine_sites(db);
+ check_missing_sites(db, "missing.js");
+
+ // next use parties table to collect all third parties
+ examine_third_parties(db, false);
+
+ // now find and rank clusters
+ examine_clusters();
+
+ // graph largest cluster
+ DashbotCluster *cluster = rbTreeLastValue(clusters);
+ graph_cluster(cluster, "largest.dot");
+
+ RbTree *node_list = sort_third_parties(db);
+
+ rbTreeFree(node_list);
+ rbTreeFree(clusters);
+ hashtable_destroy(sites, 2);
+ int count = free_all_nodes();
+ printf("Found %d sites including 3rd parties\n", count);
+ return 0;
+}
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/extract.c Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,209 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#define NUM_FIELDS 7
+
+typedef enum { JAVASCRIPT, C_LANGUAGE} Mode;
+
+Mode mode = JAVASCRIPT;
+int minimal = 0;
+
+// parse number like 4,900,000,000
+static long int read_number(char *number)
+{
+ char *p, *q;
+ long int num = 0;
+
+ p = q = number;
+
+ while (*q)
+ {
+ if (*q == ',')
+ ++q;
+ else
+ *p++ = *q++;
+ }
+
+ *p = '\0';
+
+ sscanf(number, "%ld", &num);
+ return num;
+}
+
+static char *trim_space(char *str)
+{
+ while (*str == ' ')
+ ++str;
+
+ char *p = str + strlen(str);
+
+ while (p > str && *(--p) == ' ')
+ {
+ *p = '\0';
+ }
+
+ return str;
+}
+
+static void output_line(int line_num, char *line, int length, FILE *fout)
+{
+ long int rank;
+ char *domain;
+ char *category;
+ long int visitors;
+ double percent;
+ long int hits;
+ int ads;
+ int i, j;
+
+ char *field[NUM_FIELDS];
+
+ field[0] = line;
+
+ for (i = j = 1; i < length && j < NUM_FIELDS; ++i)
+ {
+ if (line[i] == '\t')
+ {
+ line[i] = '\0';
+ field[j++] = line + i + 1;
+ }
+ }
+
+ fprintf(fout, "%s", line_num > 1 ? ",\n" : "");
+
+ sscanf(field[0], "%ld", &rank);
+ domain = trim_space(field[1]);
+ category = trim_space(field[2]);
+ visitors = read_number(field[3]);
+ sscanf(field[4], "%lg", &percent);
+ hits = read_number(field[5]);
+ ads = strcmp(field[6], "Yes") ? 0 : 1;
+
+ if (mode == JAVASCRIPT)
+ {
+ if (minimal)
+ fprintf(fout, "\"%s\"", domain);
+ else
+ fprintf(fout, "{\"rank\":%ld, \"domain\":\"%s\", \"category\":\"%s\", "
+ "\"visitors\":%ld, \"percent\":%lg, \"hits\":%ld, \"ads\":%s}",
+ rank, domain, category, visitors, percent, hits, (ads?"true":"false"));
+ }
+ else if (mode == C_LANGUAGE)
+ {
+ fprintf(fout, "{%ld, \"%s\", \"%s\", %ld, %lg, %ld, %s}",
+ rank, domain, category, visitors, percent, hits, (ads?"true":"false"));
+ }
+}
+
+static int read_line(int line_num, FILE *fin, FILE *fout)
+{
+ static char line[8192];
+ char *p = line;
+
+ while (!feof(fin))
+ {
+ int c = getc(fin);
+
+ if (c == '\n')
+ break;
+
+ *p++ = c;
+ }
+
+ *p = '\0';
+
+ if (p > line)
+ {
+ output_line(line_num, line, p - line, fout);
+ return 1;
+ }
+
+ return 0;
+}
+
+int main(int argc, char *argv[])
+{
+ char *prog = argv[0];
+
+ while (argc > 1 && *argv[1] == '-')
+ {
+ if (strcmp(argv[1], "-js") == 0)
+ mode = JAVASCRIPT;
+ else if (strcmp(argv[1], "-c") == 0)
+ mode = C_LANGUAGE;
+ else if (strcmp(argv[1], "--min") == 0)
+ minimal = 1;
+ else
+ {
+ fprintf(stderr, "%s [-js | -c ] [--min] [[srcfile] | [destfile]]\n"
+ " a program to extract top site data to JavaScript or C\n", prog);
+
+ return 1;
+ }
+
+ --argc;
+ ++argv;
+ }
+
+ char *in = (argc > 1 ? argv[1] : "top-sites.txt");
+ char *out = (argc > 2 ? argv[2] :
+ (mode == C_LANGUAGE ? "top-sites.c" : "top-sites.js"));
+
+
+ FILE *fin = fopen(in, "r");
+
+ if (!fin)
+ {
+ fprintf(stderr, "couldn't open %s for reading\n", in);
+ return 1;
+ }
+
+ FILE *fout = fopen(out, "w+");
+
+ if (!fout)
+ {
+ fprintf(stderr, "couldn't open %s for writing\n", out);
+ return 1;
+ }
+
+
+ fprintf(fout, "// top 1000 sites according to google\n\n");
+
+ if (mode == JAVASCRIPT)
+ fprintf(fout, "top_sites = [\n");
+ else if (mode == C_LANGUAGE)
+ {
+ fprintf(fout, "#ifndef __cplusplus\n\n"
+ "#ifndef WS_BOOL\n"
+ "#define WS_BOOL\n"
+ "typedef enum { false, true } bool;\n"
+ "#define null (void *)0\n"
+ "#endif\n\n"
+ "#endif\n\n");
+
+ fprintf(fout, "typedef struct {\n"
+ " long int rank;\n"
+ " char *domain;\n"
+ " char *category;\n"
+ " long int visitors;\n"
+ " double percent;\n"
+ " long int hits;\n"
+ " bool ads;\n} SiteDesc;\n\n"
+ "SiteDesc top_sites[1000] = {\n"
+ );
+ }
+
+ int i = 0;
+
+ while (read_line(++i, fin, fout));
+
+ if (mode == JAVASCRIPT)
+ fprintf(fout, "\n];\n");
+ else if (mode == C_LANGUAGE)
+ fprintf(fout, "\n};\n");
+
+ fclose(fout);
+ fclose(fin);
+ return 0;
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/gml.c Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,142 @@
+
+/*
+ * gml.c -- generate gml file from dashboard data
+ *
+ * Copyright (c) 2011 Dave Raggett
+ *
+ * Licensed 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.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <assert.h>
+#include <string.h> // for strlen
+#include <strings.h>
+#include <sqlite3.h>
+
+#include "hashtable.h"
+#include "analyst.h"
+#include "top_sites.h"
+
+#define GML_FILE "dashboard.gml"
+
+struct hashtable *gml_nodes = NULL;
+
+static long int get_node(FILE *fp, char *host)
+{
+ static long int n = 0;
+ long int id = (long int)hashtable_search(gml_nodes, host);
+
+ if (id == 0)
+ {
+ id = ++n;
+ host = strdup(host);
+ assert(host);
+ assert(hashtable_insert(gml_nodes, host, (void *)id, 0));
+
+ fprintf(fp, " node [ id %ld label \"%s\" ]\n", id, host);
+ }
+
+ return id;
+}
+
+// 1st arg is context passed in 4th arg of sqlite3_exec
+// 2nd arg is number of columns
+// 3rd arg is an array of pointers to column values
+// 4th arg is an array of pointers to column names
+// note: column value may be null so check for null pointer
+static int arcs(void *fp, int argc, char **argv, char **azColName)
+{
+ char *page_host = argv[0];
+ char *third_party = argv[1];
+ char *offsite = argv[2];
+
+ int flag;
+ sscanf(offsite, "%d", &flag);
+
+ long int host_id = get_node((FILE *)fp, page_host);
+ long int third_pty_id = get_node((FILE *)fp, third_party);
+
+ fprintf(fp, " edge [ source %ld target %ld ]\n", host_id, third_pty_id);
+
+ return 0;
+}
+
+static void third_parties(FILE *fp, sqlite3 *db, char *host)
+{
+ char sql[1024];
+ char *zErrMsg = 0;
+
+ sprintf(sql,
+ "SELECT page_host,third_party,offsite FROM parties WHERE page_host = \"www.%s\"",
+ host);
+
+ int rc = sqlite3_exec(db, sql, arcs, fp, &zErrMsg);
+
+ if( rc != SQLITE_OK )
+ {
+ fprintf(stderr, "SQL error: %s\n", zErrMsg);
+ sqlite3_free(zErrMsg);
+ }
+}
+
+static void graph_gml_nodes(FILE *fp, sqlite3 *db)
+{
+ int i;
+ SiteDesc *desc;
+
+ for (i = 0; i < NUM_SITES; ++i)
+ {
+ desc = top_sites + i;
+ get_node(fp, desc->domain);
+ third_parties(fp, db, desc->domain);
+ }
+}
+
+static int compare_strings(void *key1, void *key2)
+{
+ return !strcmp((char *)key1, (char *)key2);
+}
+
+void gml(sqlite3 *db)
+{
+ gml_nodes = create_hashtable(8192, oat_hash2, compare_strings);
+
+ if (!gml_nodes)
+ {
+ fprintf(stderr, "Can't create hash table\n");
+ sqlite3_close(db);
+ exit(1);
+ }
+
+ char *name = GML_FILE;
+ FILE *fp = fopen(name, "w+");
+
+ if (!fp)
+ {
+ fprintf(stderr, "Can't open output file %s\n", name);
+ sqlite3_close(db);
+ exit(1);
+ }
+
+ fprintf(fp, "graph [\n");
+
+ graph_gml_nodes(fp, db);
+ fprintf(fp, "]\n");
+
+ fclose(fp);
+ fprintf(stderr, "written gml graph to %s\n", name);
+ hashtable_destroy(gml_nodes, 0);
+}
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/graphviz.c Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,245 @@
+/*
+ * graphviz.c -- generate graphviz dot file from dashboard data
+ *
+ * Copyright (c) 2011 Dave Raggett
+ *
+ * Licensed 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.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <assert.h>
+#include <string.h> // for strlen
+#include <strings.h>
+#include <sqlite3.h>
+
+#include "hashtable.h"
+#include "analyst.h"
+#include "top_sites.h"
+
+#define GRAPHVIZ_FILE "dashboard.dot"
+
+static struct hashtable *sites = NULL;
+
+static void print_comment_open(FILE *fp)
+{
+ fprintf(fp, "\n/*\n");
+}
+
+static void print_comment_line(FILE *fp, const char *format, ...)
+{
+ va_list args;
+ va_start(args, format);
+
+ fputs(" * ", fp);
+ vfprintf(fp, format, args);
+ putc('\n', fp);
+
+ va_end(args);
+}
+
+static void print_comment_close(FILE *fp)
+{
+ fputs(" */\n\n", fp);
+}
+
+static void print_diagraph_open(FILE *fp, const char *format, ...)
+{
+ va_list args;
+ va_start(args, format);
+
+ fputs("digraph ", fp);
+ vfprintf(fp, format, args);
+ fputs(" {\n", fp);
+
+ va_end(args);
+}
+
+static void print_diagraph_arc(FILE *fp, char *from, char *to, int flag)
+{
+ if (flag)
+ fprintf(fp, " %s -> %s;\n", from, to);
+ else
+ fprintf(fp, " %s -> %s [style=dotted];\n", from, to);
+}
+
+static void print_diagraph_close(FILE *fp)
+{
+ fputs("}\n", fp);
+}
+
+static void declare_node(FILE *fp, char *host, bool visible)
+{
+ if (visible)
+ fprintf(fp, " %s [shape = ellipse]\n", host);
+ else
+ fprintf(fp, " %s [shape = box]\n", host);
+}
+
+static char *escape(char *domain)
+{
+ int c;
+ char *str = (char *)malloc(strlen(domain)+3);
+ assert(str);
+
+ char *p = str, *q = domain;
+
+ *p++ = 's';
+ *p++ = '_';
+
+ while ((c = *q++))
+ {
+ *p++ = (c == '.' || c == '-') ? '_' : c;
+ }
+
+ *p = '\0';
+ return str;
+}
+
+static char *get_node(FILE *fp, char *host)
+{
+ char *id = (char *)hashtable_search(sites, host);
+
+ if (id == null)
+ {
+ id = escape(host);
+ host = strdup(host);
+ assert(host);
+ assert(hashtable_insert(sites, host, id, 1));
+
+ fprintf(fp, " %s [shape=\"ellipse\",label=\"%s\" color=black]\n",
+ id, host);
+ }
+
+ return id;
+}
+
+
+// 1st arg is context passed in 4th arg of sqlite3_exec
+// 2nd arg is number of columns
+// 3rd arg is an array of pointers to column values
+// 4th arg is an array of pointers to column names
+// note: column value may be null so check for null pointer
+static int arcs(void *fp, int argc, char **argv, char **azColName)
+{
+ char *page_host = argv[0];
+ char *third_party = argv[1];
+ char *offsite = argv[2];
+
+ char *host_id = get_node((FILE *)fp, page_host);
+ char *third_pty_id = get_node((FILE *)fp, third_party);
+
+ print_diagraph_arc((FILE *)fp, host_id, third_pty_id, strcmp(offsite, "1"));
+
+ return 0;
+}
+
+
+static void third_parties(FILE *fp, sqlite3 *db, char *host)
+{
+ char sql[1024];
+ char *zErrMsg = null;
+
+ sprintf(sql,
+ "SELECT page_host,third_party,offsite FROM parties WHERE page_host = \"www.%s\"",
+ host);
+
+ int rc = sqlite3_exec(db, sql, arcs, fp, &zErrMsg);
+
+ if( rc != SQLITE_OK )
+ {
+ fprintf(stderr, "SQL error: %s\n", zErrMsg);
+ sqlite3_free(zErrMsg);
+ }
+}
+
+// use direct parent-child relationships
+static void graph_direct(FILE *fp, sqlite3 *db)
+{
+ char *sql = "SELECT parent,child,offsite FROM relations";
+ char *zErrMsg = null;
+
+ int rc = sqlite3_exec(db, sql, arcs, fp, &zErrMsg);
+
+ if( rc != SQLITE_OK )
+ {
+ fprintf(stderr, "SQL error: %s\n", zErrMsg);
+ sqlite3_free(zErrMsg);
+ }
+}
+
+// consider all website links to third parties direct and indirect
+static void graph_sites(FILE *fp, sqlite3 *db, int start, int stop)
+{
+ int i;
+ SiteDesc *desc;
+
+ if (start < 1 || stop > NUM_SITES)
+ {
+ fprintf(stderr, "Out of range (%d to %d)\n", start, stop);
+ sqlite3_close(db);
+ exit(1);
+ }
+
+ for (i = start - 1; i < stop; ++i)
+ {
+ desc = top_sites + i;
+ get_node(fp, desc->domain);
+ third_parties(fp, db, desc->domain);
+ }
+}
+
+static int compare_strings(void *key1, void *key2)
+{
+ return !strcmp((char *)key1, (char *)key2);
+}
+
+void graph(sqlite3 *db)
+{
+ sites = create_hashtable(8192, oat_hash2, compare_strings);
+
+ if (!sites)
+ {
+ fprintf(stderr, "Can't create hash table\n");
+ sqlite3_close(db);
+ exit(1);
+ }
+
+ char *name = GRAPHVIZ_FILE;
+ FILE *fp = fopen(name, "w+");
+
+ if (!fp)
+ {
+ fprintf(stderr, "Can't open output file %s\n", name);
+ sqlite3_close(db);
+ exit(1);
+ }
+
+ print_comment_open(fp);
+ //print_comment_line(fp, "@command = neato");
+ //print_comment_line(fp, "");
+ print_comment_line(fp, "graphiz dot file generated from privacy dashboard data");
+ print_comment_close(fp);
+
+ fprintf(fp, "digraph third_parties {\ngraph [splines=true,overlap=true]\n");
+
+ graph_direct(fp, db);
+ //graph_sites(fp, db, 1, 1000);
+ print_diagraph_close(fp);
+
+ fclose(fp);
+ fprintf(stderr, "written graph to %s\n", name);
+ hashtable_destroy(sites, 1);
+}
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/hashtable.c Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,416 @@
+/* Copyright (C) 2004 Christopher Clark <firstname.lastname@cl.cam.ac.uk> */
+
+#include "hashtable.h"
+#include "hashtable_private.h"
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <math.h>
+
+/*
+Credit for primes table: Aaron Krowne
+ http://br.endernet.org/~akrowne/
+ http://planetmath.org/encyclopedia/GoodHashTablePrimes.html
+*/
+static const unsigned int primes[] = {
+53, 97, 193, 389,
+769, 1543, 3079, 6151,
+12289, 24593, 49157, 98317,
+196613, 393241, 786433, 1572869,
+3145739, 6291469, 12582917, 25165843,
+50331653, 100663319, 201326611, 402653189,
+805306457, 1610612741
+};
+const unsigned int prime_table_length = sizeof(primes)/sizeof(primes[0]);
+const float max_load_factor = 0.65;
+
+/*****************************************************************************/
+struct hashtable *
+create_hashtable(unsigned int minsize,
+ unsigned int (*hashf) (void*),
+ int (*eqf) (void*,void*))
+{
+ struct hashtable *h;
+ unsigned int pindex, size = primes[0];
+ /* Check requested hashtable isn't too large */
+ if (minsize > (1u << 30)) return NULL;
+ /* Enforce size as prime */
+ for (pindex=0; pindex < prime_table_length; pindex++) {
+ if (primes[pindex] > minsize) { size = primes[pindex]; break; }
+ }
+ h = (struct hashtable *)malloc(sizeof(struct hashtable));
+ if (NULL == h) return NULL; /*oom*/
+ h->table = (struct entry **)malloc(sizeof(struct entry*) * size);
+ if (NULL == h->table) { free(h); return NULL; } /*oom*/
+ memset(h->table, 0, size * sizeof(struct entry *));
+ h->tablelength = size;
+ h->primeindex = pindex;
+ h->entrycount = 0;
+ h->hashfn = hashf;
+ h->eqfn = eqf;
+ h->loadlimit = (unsigned int) ceil(size * max_load_factor);
+ return h;
+}
+
+/*****************************************************************************/
+unsigned int
+hash(struct hashtable *h, void *k)
+{
+ /* Aim to protect against poor hash functions by adding logic here
+ * - logic taken from java 1.4 hashtable source */
+ unsigned int i = h->hashfn(k);
+#if 0
+ i += ~(i << 9);
+ i ^= ((i >> 14) | (i << 18)); /* >>> */
+ i += (i << 4);
+ i ^= ((i >> 10) | (i << 22)); /* >>> */
+#endif
+ return i;
+}
+
+/*****************************************************************************/
+static int
+hashtable_expand(struct hashtable *h)
+{
+ /* Double the size of the table to accomodate more entries */
+ struct entry **newtable;
+ struct entry *e;
+ struct entry **pE;
+ unsigned int newsize, i, index;
+ /* Check we're not hitting max capacity */
+ if (h->primeindex == (prime_table_length - 1)) return 0;
+ newsize = primes[++(h->primeindex)];
+
+ newtable = (struct entry **)malloc(sizeof(struct entry*) * newsize);
+ if (NULL != newtable)
+ {
+ memset(newtable, 0, newsize * sizeof(struct entry *));
+ /* This algorithm is not 'stable'. ie. it reverses the list
+ * when it transfers entries between the tables */
+ for (i = 0; i < h->tablelength; i++) {
+ while (NULL != (e = h->table[i])) {
+ h->table[i] = e->next;
+ index = indexFor(newsize,e->h);
+ e->next = newtable[index];
+ newtable[index] = e;
+ }
+ }
+ free(h->table);
+ h->table = newtable;
+ }
+ /* Plan B: realloc instead */
+ else
+ {
+ newtable = (struct entry **)
+ realloc(h->table, newsize * sizeof(struct entry *));
+ if (NULL == newtable) { (h->primeindex)--; return 0; }
+ h->table = newtable;
+ memset(newtable[h->tablelength], 0, newsize - h->tablelength);
+ for (i = 0; i < h->tablelength; i++) {
+ for (pE = &(newtable[i]), e = *pE; e != NULL; e = *pE) {
+ index = indexFor(newsize,e->h);
+ if (index == i)
+ {
+ pE = &(e->next);
+ }
+ else
+ {
+ *pE = e->next;
+ e->next = newtable[index];
+ newtable[index] = e;
+ }
+ }
+ }
+ }
+ h->tablelength = newsize;
+ h->loadlimit = (unsigned int) ceil(newsize * max_load_factor);
+ return -1;
+}
+
+/*****************************************************************************/
+unsigned int
+hashtable_count(struct hashtable *h)
+{
+ return h->entrycount;
+}
+
+/*****************************************************************************/
+int
+hashtable_insert(struct hashtable *h, void *k, void *v, int mode)
+{
+ /* This method allows duplicate keys - but they shouldn't be used */
+ unsigned int hashvalue, index;
+ struct entry *e;
+
+ /* first check for an existing entry */
+ hashvalue = hash(h,k);
+ index = indexFor(h->tablelength,hashvalue);
+ e = h->table[index];
+
+ while (NULL != e)
+ {
+ /* Check hash value to short circuit heavier comparison */
+ if ((hashvalue == e->h) && (h->eqfn(k, e->k)))
+ {
+ /* free key and value according to mode parameter */
+ if (mode == 0)
+ free(e->k);
+ else if (mode == 1)
+ {
+ free(e->k);
+ free(e->v);
+ }
+
+ e->k = k;
+ e->v = v;
+ return -1;
+ }
+
+ e = e->next;
+ }
+
+ /* no such entry so create new one */
+
+ if (++(h->entrycount) > h->loadlimit)
+ {
+ /* Ignore the return value. If expand fails, we should
+ * still try cramming just this value into the existing table
+ * -- we may not have memory for a larger table, but one more
+ * element may be ok. Next time we insert, we'll try expanding again.*/
+ hashtable_expand(h);
+ }
+ e = (struct entry *)malloc(sizeof(struct entry));
+ if (NULL == e) { --(h->entrycount); return 0; } /*oom*/
+ e->h = hashvalue;
+ index = indexFor(h->tablelength,e->h);
+ e->k = k;
+ e->v = v;
+ e->next = h->table[index];
+ h->table[index] = e;
+ return -1;
+}
+
+/*****************************************************************************/
+void * /* returns value associated with key */
+hashtable_search(struct hashtable *h, void *k)
+{
+ struct entry *e;
+ unsigned int hashvalue, index;
+ hashvalue = hash(h,k);
+ index = indexFor(h->tablelength,hashvalue);
+ e = h->table[index];
+ while (NULL != e)
+ {
+ /* Check hash value to short circuit heavier comparison */
+ if ((hashvalue == e->h) && (h->eqfn(k, e->k))) return e->v;
+ e = e->next;
+ }
+ return NULL;
+}
+
+/*****************************************************************************/
+void * /* returns value associated with key */
+hashtable_remove(struct hashtable *h, void *k)
+{
+ /* TODO: consider compacting the table when the load factor drops enough,
+ * or provide a 'compact' method. */
+
+ struct entry *e;
+ struct entry **pE;
+ void *v;
+ unsigned int hashvalue, index;
+
+ hashvalue = hash(h,k);
+ index = indexFor(h->tablelength,hash(h,k));
+ pE = &(h->table[index]);
+ e = *pE;
+ while (NULL != e)
+ {
+ /* Check hash value to short circuit heavier comparison */
+ if ((hashvalue == e->h) && (h->eqfn(k, e->k)))
+ {
+ *pE = e->next;
+ h->entrycount--;
+ v = e->v;
+ freekey(e->k);
+ free(e);
+ return v;
+ }
+ pE = &(e->next);
+ e = e->next;
+ }
+ return NULL;
+}
+
+/*****************************************************************************/
+/* destroy */
+void
+hashtable_destroy(struct hashtable *h, int free_mode)
+{
+ unsigned int i;
+ struct entry *e, *f;
+
+ if (!h) /* nothing to do */
+ return;
+
+ struct entry **table = h->table;
+
+ if (free_mode == 1) /* free keys and values */
+ {
+ for (i = 0; i < h->tablelength; i++)
+ {
+ e = table[i];
+ while (NULL != e)
+ { f = e; e = e->next; freekey(f->k); free(f->v); free(f); }
+ }
+ }
+ else if (free_mode == 2) /* don't free keys or values */
+ {
+ for (i = 0; i < h->tablelength; i++)
+ {
+ e = table[i];
+ while (NULL != e)
+ { f = e; e = e->next; free(f); }
+ }
+ }
+ else /* just free keys */
+ {
+ for (i = 0; i < h->tablelength; i++)
+ {
+ e = table[i];
+ while (NULL != e)
+ { f = e; e = e->next; freekey(f->k); free(f); }
+ }
+ }
+ free(h->table);
+ free(h);
+}
+/*****************************************************************************/
+/* dictionay for a pool of names so that if two names are the same then */
+/* they will have the same pointer value, allowing for fast comparison */
+struct hashtable *names_table = NULL;
+
+// Jenkins One-at-a-Time hash
+unsigned int oat_hash2 (void *key)
+{
+ unsigned char *p = key;
+ unsigned h = 0;
+ int c;
+
+ while ((c = *p++))
+ {
+ h += c;
+ h += ( h << 10 );
+ h ^= ( h >> 6 );
+ }
+
+ h += ( h << 3 );
+ h ^= ( h >> 11 );
+ h += ( h << 15 );
+
+ return h;
+}
+
+char *hashtable_declare_name(char *k)
+{
+ unsigned int hashvalue, index;
+ struct entry *e;
+
+ if (!names_table)
+ {
+ names_table = create_hashtable(16, oat_hash2, NULL);
+ if (!names_table)
+ return NULL;
+ }
+
+ /* first check for an existing entry */
+ hashvalue = hash(names_table,k);
+ index = indexFor(names_table->tablelength,hashvalue);
+ e = names_table->table[index];
+
+ while (NULL != e)
+ {
+ /* Check hash value to short circuit heavier comparison */
+ if ((hashvalue == e->h) && !strcmp((char*)k, (char*)e->k))
+ return (char *)e->k;
+
+ e = e->next;
+ }
+
+ /* no such entry so create new one */
+
+ if (++(names_table->entrycount) > names_table->loadlimit)
+ {
+ /* Ignore the return value. If expand fails, we should
+ * still try cramming just this value into the existing table
+ * -- we may not have memory for a larger table, but one more
+ * element may be ok. Next time we insert, we'll try expanding again.*/
+ hashtable_expand(names_table);
+ }
+ e = (struct entry *)malloc(sizeof(struct entry));
+ if (NULL == e) { --(names_table->entrycount); return 0; } /*oom*/
+ e->h = hashvalue;
+ index = indexFor(names_table->tablelength,e->h);
+ e->k = strdup(k);
+ e->v = e->k;
+ e->next = names_table->table[index];
+ names_table->table[index] = e;
+ return (char *)e->k;
+}
+
+void hashtable_destroy_names()
+{
+ unsigned int i;
+ struct entry *e, *f;
+
+ if (!names_table) /* nothing to do */
+ return;
+
+ struct entry **table = names_table->table;
+
+ for (i = 0; i < names_table->tablelength; i++)
+ {
+ e = table[i];
+ while (NULL != e)
+ { f = e; e = e->next; freekey(f->k); free(f); }
+ }
+
+ free(names_table->table);
+ free(names_table);
+ names_table = NULL;
+}
+
+/*****************************************************************************/
+
+/*
+ * Copyright (c) 2002, Christopher Clark
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * * Neither the name of the original author; nor the names of any contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+ * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/hashtable.h Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,228 @@
+/* Copyright (C) 2002 Christopher Clark <firstname.lastname@cl.cam.ac.uk> */
+/* with extensions to hastable_destroy by Dave Raggett <dsr@w3.org> */
+/* together with dictionary of names */
+
+#ifndef __HASHTABLE_CWC22_H__
+#define __HASHTABLE_CWC22_H__
+
+struct hashtable;
+
+/* Example of use:
+ *
+ * struct hashtable *h;
+ * struct some_key *k;
+ * struct some_value *v;
+ *
+ * static unsigned int hash_from_key_fn( void *k );
+ * static int keys_equal_fn ( void *key1, void *key2 );
+ *
+ * h = create_hashtable(16, hash_from_key_fn, keys_equal_fn);
+ * k = (struct some_key *) malloc(sizeof(struct some_key));
+ * v = (struct some_value *) malloc(sizeof(struct some_value));
+ *
+ * (initialise k and v to suitable values)
+ *
+ * if (! hashtable_insert(h,k,v) )
+ * { exit(-1); }
+ *
+ * if (NULL == (found = hashtable_search(h,k) ))
+ * { printf("not found!"); }
+ *
+ * if (NULL == (found = hashtable_remove(h,k) ))
+ * { printf("Not found\n"); }
+ *
+ */
+
+/* Macros may be used to define type-safe(r) hashtable access functions, with
+ * methods specialized to take known key and value types as parameters.
+ *
+ * Example:
+ *
+ * Insert this at the start of your file:
+ *
+ * DEFINE_HASHTABLE_INSERT(insert_some, struct some_key, struct some_value);
+ * DEFINE_HASHTABLE_SEARCH(search_some, struct some_key, struct some_value);
+ * DEFINE_HASHTABLE_REMOVE(remove_some, struct some_key, struct some_value);
+ *
+ * This defines the functions 'insert_some', 'search_some' and 'remove_some'.
+ * These operate just like hashtable_insert etc., with the same parameters,
+ * but their function signatures have 'struct some_key *' rather than
+ * 'void *', and hence can generate compile time errors if your program is
+ * supplying incorrect data as a key (and similarly for value).
+ *
+ * Note that the hash and key equality functions passed to create_hashtable
+ * still take 'void *' parameters instead of 'some key *'. This shouldn't be
+ * a difficult issue as they're only defined and passed once, and the other
+ * functions will ensure that only valid keys are supplied to them.
+ *
+ * The cost for this checking is increased code size and runtime overhead
+ * - if performance is important, it may be worth switching back to the
+ * unsafe methods once your program has been debugged with the safe methods.
+ * This just requires switching to some simple alternative defines - eg:
+ * #define insert_some hashtable_insert
+ *
+ */
+
+/*****************************************************************************
+ * create_hashtable
+
+ * @name create_hashtable
+ * @param minsize minimum initial size of hashtable
+ * @param hashfunction function for hashing keys
+ * @param key_eq_fn function for determining key equality
+ * @return newly created hashtable or NULL on failure
+ */
+
+struct hashtable *
+create_hashtable(unsigned int minsize,
+ unsigned int (*hashfunction) (void*),
+ int (*key_eq_fn) (void*,void*));
+
+/*****************************************************************************
+ * hashtable_insert
+
+ * @name hashtable_insert
+ * @param h the hashtable to insert into
+ * @param k the key - hashtable claims ownership and will free on removal
+ * @param v the value - does not claim ownership
+ * @param f 0: free keys, 1: keys and values, 2: neither keys nor values
+ * @return non-zero for successful insertion
+ *
+ * This function will cause the table to expand if the insertion would take
+ * the ratio of entries to table size over the maximum load factor.
+ *
+ * This function checks for existing insertions and overwrites them.
+ * The previous entries key and value are freed according to param f.
+ */
+
+int
+hashtable_insert(struct hashtable *h, void *k, void *v, int f);
+
+#define DEFINE_HASHTABLE_INSERT(fnname, keytype, valuetype) \
+int fnname (struct hashtable *h, keytype *k, valuetype *v, int f) \
+{ \
+ return hashtable_insert(h,k,v,f); \
+}
+
+
+/*****************************************************************************
+ * hashtable_search
+
+ * @name hashtable_search
+ * @param h the hashtable to search
+ * @param k the key to search for - does not claim ownership
+ * @return the value associated with the key, or NULL if none found
+ */
+
+void *
+hashtable_search(struct hashtable *h, void *k);
+
+#define DEFINE_HASHTABLE_SEARCH(fnname, keytype, valuetype) \
+valuetype * fnname (struct hashtable *h, keytype *k) \
+{ \
+ return (valuetype *) (hashtable_search(h,k)); \
+}
+
+/*****************************************************************************
+ * hashtable_remove
+
+ * @name hashtable_remove
+ * @param h the hashtable to remove the item from
+ * @param k the key to search for - does not claim ownership
+ * @return the value associated with the key, or NULL if none found
+ */
+
+void * /* returns value */
+hashtable_remove(struct hashtable *h, void *k);
+
+#define DEFINE_HASHTABLE_REMOVE(fnname, keytype, valuetype) \
+valuetype * fnname (struct hashtable *h, keytype *k) \
+{ \
+ return (valuetype *) (hashtable_remove(h,k)); \
+}
+
+
+/*****************************************************************************
+ * hashtable_count
+
+ * @name hashtable_count
+ * @param h the hashtable
+ * @return the number of items stored in the hashtable
+ */
+unsigned int
+hashtable_count(struct hashtable *h);
+
+
+/*****************************************************************************
+ * hashtable_destroy
+
+ * @name hashtable_destroy
+ * @param h the hashtable
+ * @param free_values whether to call 'free' on remaining keys and values
+ * 0: only keys, 1: keys and values, 2: neither keys nor values
+ */
+
+void
+hashtable_destroy(struct hashtable *h, int free_mode);
+
+/*****************************************************************************
+ * hashtable_declare_name
+
+ * @name hashtable_declare_name
+ * @param k a string to be declared as a name
+ *
+ * Returns the name corresponding to k
+ */
+char *hashtable_declare_name(char *k);
+
+/*****************************************************************************
+ * hashtable_destroy_names
+
+ * Destroys the name dictionary
+ */
+
+void hashtable_destroy_names();
+
+/*****************************************************************************
+ * hashtable_destroy_names
+ * @param key search key
+ *
+ * hash function for null terminated strings
+ */
+
+unsigned int oat_hash2 (void *key);
+
+#endif /* __HASHTABLE_CWC22_H__ */
+
+/*
+ * Copyright (c) 2002, Christopher Clark
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * * Neither the name of the original author; nor the names of any contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+ * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/hashtable_private.h Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,85 @@
+/* Copyright (C) 2002, 2004 Christopher Clark <firstname.lastname@cl.cam.ac.uk> */
+
+#ifndef __HASHTABLE_PRIVATE_CWC22_H__
+#define __HASHTABLE_PRIVATE_CWC22_H__
+
+#include "hashtable.h"
+
+/*****************************************************************************/
+struct entry
+{
+ void *k, *v;
+ unsigned int h;
+ struct entry *next;
+};
+
+struct hashtable {
+ unsigned int tablelength;
+ struct entry **table;
+ unsigned int entrycount;
+ unsigned int loadlimit;
+ unsigned int primeindex;
+ unsigned int (*hashfn) (void *k);
+ int (*eqfn) (void *k1, void *k2);
+};
+
+/*****************************************************************************/
+unsigned int
+hash(struct hashtable *h, void *k);
+
+/*****************************************************************************/
+/* indexFor */
+static inline unsigned int
+indexFor(unsigned int tablelength, unsigned int hashvalue) {
+ return (hashvalue % tablelength);
+};
+
+/* Only works if tablelength == 2^N */
+/*static inline unsigned int
+indexFor(unsigned int tablelength, unsigned int hashvalue)
+{
+ return (hashvalue & (tablelength - 1u));
+}
+*/
+
+/*****************************************************************************/
+#define freekey(X) free(X)
+/*define freekey(X) ; */
+
+
+/*****************************************************************************/
+
+#endif /* __HASHTABLE_PRIVATE_CWC22_H__*/
+
+/*
+ * Copyright (c) 2002, Christopher Clark
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * * Neither the name of the original author; nor the names of any contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+ * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/main.c Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,113 @@
+/*
+ * main.c -- Analysis program for dashbot data in SQLite
+ *
+ * Copyright (c) 2011 Dave Raggett
+ *
+ * Licensed 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.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <assert.h>
+#include <string.h> // for strlen
+#include <strings.h>
+#include <sqlite3.h>
+
+#include "analyst.h"
+#include "top_sites.h"
+
+#define DATABASE "dashboard.sqlite"
+
+// intro to SQLite API: http://www.sqlite.org/cintro.html
+
+char *prog_name;
+int debug;
+
+void main_init(int argc, char **argv)
+{
+ prog_name = argv[0];
+ char *p = strrchr(prog_name, '/');
+ if (p)
+ prog_name = ++p;
+}
+// 1st arg is context passed in 4th arg of sqlite3_exec
+// 2nd arg is number of columns
+// 3rd arg is an array of pointers to column values
+// 4th arg is an array of pointers to column names
+// note: column value may be null so check for null pointer
+static int callback(void *NotUsed, int argc, char **argv, char **azColName)
+{
+ int i;
+
+ for(i=0; i<argc; i++)
+ {
+ printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
+ }
+
+ printf("\n");
+ return 0;
+}
+
+static void test(sqlite3 *db)
+{
+ char *zErrMsg = 0;
+ char *sql = "SELECT DISTINCT host FROM site_info WHERE lasting_cookies <> 0";
+
+ int rc = sqlite3_exec(db, sql, callback, null, &zErrMsg);
+
+ if( rc != SQLITE_OK )
+ {
+ fprintf(stderr, "SQL error: %s\n", zErrMsg);
+ sqlite3_free(zErrMsg);
+ }
+}
+
+static void test_top_sites(int index)
+{
+ SiteDesc desc = top_sites[index];
+
+ printf("%d: rank %ld - %s - %s - %ld visitors\n",
+ index, desc.rank, desc.domain, desc.category, desc.visitors);
+}
+
+int main(int argc, char **argv)
+{
+ sqlite3 *db;
+ char *database = DATABASE;
+
+ main_init(argc, argv);
+
+ if( argc!=1 )
+ {
+ fprintf(stderr, "Usage: %s\n a program to analyse privacy dashboard data in SQLite\n", prog_name);
+ exit(1);
+ }
+
+ //test_top_sites(38);
+
+ if(sqlite3_open(database, &db))
+ {
+ fprintf(stderr, "Can't open database %s: %s\n", database, sqlite3_errmsg(db));
+ sqlite3_close(db);
+ exit(1);
+ }
+
+ //test(db);
+ graph(db);
+ gml(db);
+ study_clusters(db);
+
+ sqlite3_close(db);
+ return 0;
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/missing.js Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,12 @@
+
+var missing_sites = [
+ "www.huanqiu.com",
+ "www.ynet.com",
+ "www.tiexue.net",
+ "www.pchome.net",
+ "www.yezizhu.com",
+ "www.yesky.com",
+ "www.vatgia.com",
+ "www.766.com",
+];
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/rbtree.c Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,461 @@
+/*
+ * rbtree.c -- Red Black balanced tree library
+ *
+ * Copyright (c) 2008 Dave Raggett
+ * inspired by code from Julienne Walker
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ */
+
+#include "assert.h"
+#include "rbtree.h"
+
+// Checks the color of a red black node
+static int is_red (RbNode *node)
+{
+ return node != NULL && node->red == 1;
+}
+
+// Performs a single red black rotation in given direction
+// where dir is 0 for left and 1 for right
+// assumes that all nodes are valid for a rotation
+static RbNode *rotate1 (RbNode *node, int dir)
+{
+ RbNode *save = node->link[!dir];
+
+ node->link[!dir] = save->link[dir];
+ save->link[dir] = node;
+
+ node->red = 1;
+ save->red = 0;
+
+ return save;
+}
+
+// Performs a double red black rotation in given direction
+// assumes all nodes are valid for a rotation
+static RbNode *rotate2 (RbNode *node, int dir)
+{
+ node->link[!dir] = rotate1 (node->link[!dir], !dir);
+
+ return rotate1 (node, dir);
+}
+
+// Create and initialize new red black node with a copy of the
+// data. This function does not insert the new node into a tree
+static RbNode *new_node (RbTree *tree, RbKey key, RbValue value)
+{
+ RbNode *rn = (RbNode *)malloc (sizeof *rn);
+
+ assert(rn);
+ rn->red = 1;
+
+ if (tree->newNode)
+ tree->newNode(rn, key, value);
+ else
+ {
+ rn->key = key;
+ rn->value = value;
+ }
+
+ rn->link[0] = rn->link[1] = NULL;
+
+ return rn;
+}
+
+// Search for a copy of the specified
+// node data in a red black tree
+RbValue rbTreeFindKey (RbTree *tree, RbKey key)
+{
+ if (!tree)
+ assert(tree);
+ RbNode *it = tree->root;
+
+ while (it != NULL)
+ {
+ int cmp = tree->compareKeys (it->key, key);
+
+ if (cmp == 0)
+ break;
+
+ // If the tree supports duplicates, they should be
+ // chained to the right subtree for this to work
+ it = it->link[cmp < 0];
+ }
+
+ return it == NULL ? NULL : it->value;
+}
+
+// Insert user-specified key and data into a red
+// black tree and return the new root of the tree
+void rbTreeInsertKey (RbTree *tree, RbKey key, RbValue value)
+{
+ assert(tree);
+
+ if (tree->root == NULL)
+ {
+ // We have an empty tree; attach the
+ // new node directly to the root
+ tree->root = new_node (tree, key, value);
+ }
+ else
+ {
+ RbNode head = {0}; // False tree root
+ RbNode *g, *t; // Grandparent and parent
+ RbNode *p, *q; // Iterator and parent
+ int dir = 0, last = 0, novel = 0;
+
+ // Set up our helpers
+ t = &head;
+ g = p = NULL;
+ q = t->link[1] = tree->root;
+
+ // Search down the tree for a place to insert
+ for (; ;)
+ {
+ novel = 0;
+ if (q == NULL)
+ {
+ // Insert a new node at the first null link
+ p->link[dir] = q = new_node (tree, key, value);
+ novel = 1;
+ }
+ else if (is_red (q->link[0]) && is_red (q->link[1]))
+ {
+ // Simple red violation: color flip
+ q->red = 1;
+ q->link[0]->red = 0;
+ q->link[1]->red = 0;
+ }
+
+ if (is_red (q) && is_red (p))
+ {
+ // Hard red violation: rotations necessary
+ int dir2 = t->link[1] == g;
+
+ if (q == p->link[last])
+ t->link[dir2] = rotate1 (g, !last);
+ else
+ t->link[dir2] = rotate2 (g, !last);
+ }
+
+ // check existing node with same key and
+ // update the value if desired then stop
+ int sign = tree->compareKeys (q->key, key);
+
+ if (sign == 0)
+ {
+ if (!novel && tree->updateNode)
+ tree->updateNode(q, value);
+
+ break;
+ }
+
+ last = dir;
+ dir = sign < 0;
+
+ // Move the helpers down
+ if (g != NULL)
+ t = g;
+
+ g = p, p = q;
+ q = q->link[dir];
+ }
+
+ // Update the root (it may be different)
+ tree->root = head.link[1];
+ }
+
+ // Make the root black for simplified logic
+ tree->root->red = 0;
+}
+
+// Remove a node from a red black tree for given
+// key and return the updated root node
+void rbTreeRemoveKey (RbTree *tree, RbKey key)
+{
+ assert(tree);
+
+ if (tree->root != NULL)
+ {
+ RbNode head = {0}; // False tree root
+ RbNode *q, *p, *g; // Helpers
+ RbNode *f = NULL; // Found item
+ int dir = 1;
+
+ // Set up our helpers
+ q = &head;
+ g = p = NULL;
+ q->link[1] = tree->root;
+
+ // Search and push a red node down
+ // to fix red violations as we go
+
+ while (q->link[dir] != NULL)
+ {
+ int last = dir;
+
+ // Move the helpers down
+ g = p, p = q;
+ q = q->link[dir];
+ dir = tree->compareKeys (q->key, key) < 0;
+
+ // Save the node with matching data and keep
+ // going; we'll do removal tasks at the end
+ if (tree->compareKeys (q->key, key) == 0)
+ f = q;
+
+ // Push the red node down with rotations and color flips
+ if (!is_red (q) && !is_red (q->link[dir]))
+ {
+ if (is_red (q->link[!dir]))
+ p = p->link[last] = rotate1 (q, dir);
+ else if (!is_red (q->link[!dir]))
+ {
+ RbNode *s = p->link[!last];
+
+ if (s != NULL)
+ {
+ if (!is_red (s->link[!last]) && !is_red (s->link[last]))
+ {
+ // Color flip
+ p->red = 0;
+ s->red = 1;
+ q->red = 1;
+ }
+ else
+ {
+ int dir2 = g->link[1] == p;
+
+ if (is_red (s->link[last]))
+ g->link[dir2] = rotate2 (p, last);
+ else if (is_red (s->link[!last]))
+ g->link[dir2] = rotate1 (p, last);
+
+ // Ensure correct coloring
+ q->red = g->link[dir2]->red = 1;
+ g->link[dir2]->link[0]->red = 0;
+ g->link[dir2]->link[1]->red = 0;
+ }
+ }
+ }
+ }
+ }
+
+ // Replace and remove the saved node
+ if (f != NULL)
+ {
+ if (tree->eraseNode)
+ tree->eraseNode (f->key, f->value);
+
+ f->key = q->key;
+ f->value = q->value;
+ p->link[p->link[1] == q] =
+ q->link[q->link[0] == NULL];
+ free (q);
+ }
+
+ // Update the root (it may be different)
+ tree->root = head.link[1];
+
+ // Make the root black for simplified logic
+ if (tree->root != NULL)
+ tree->root->red = 0;
+ }
+}
+
+static RbSize rbSize (RbNode *node)
+{
+ if (node)
+ return rbSize(node->link[0]) + 1 + rbSize(node->link[1]);
+
+ return 0;
+}
+
+// Gets the number of nodes in a red black tree
+RbSize rbTreeSize (RbTree *tree)
+{
+ assert(tree);
+ return rbSize(tree->root);
+}
+
+// true if node exists and has no children
+int rbTreeHasOneEntry (RbTree *tree)
+{
+ assert(tree);
+ return (tree->root && !tree->root->link[0] && !tree->root->link[1]);
+}
+
+// return value of root node
+RbValue rbTreeRootValue(RbTree *tree)
+{
+ assert(tree);
+ RbNode *node = tree->root;
+ return (node ? node->value : NULL);
+}
+
+// return value of first node
+RbValue rbTreeFirstValue(RbTree *tree)
+{
+ assert(tree);
+ RbNode *node = tree->root;
+ RbNode *first;
+
+ if (node)
+ {
+ do
+ {
+ first = node;
+ node = node->link[0];
+ }
+ while (node);
+
+ return first->value;
+ }
+
+ return NULL;
+}
+
+// return value of last node
+RbValue rbTreeLastValue(RbTree *tree)
+{
+ assert(tree);
+ RbNode *node = tree->root;
+ RbNode *last;
+
+ if (node)
+ {
+ do
+ {
+ last = node;
+ node = node->link[1];
+ }
+ while (node);
+
+ return last->value;
+ }
+
+ return NULL;
+}
+
+// traverse tree, left to right, calling use defined func on each node
+static void rbApplyLR(RbNode *node, RbApplyFn func, RbContext context)
+{
+ if (node)
+ {
+ rbApplyLR(node->link[0], func, context);
+ (*func)(node->key, node->value, context);
+ rbApplyLR(node->link[1], func, context);
+ }
+}
+
+void rbTreeApplyLR(RbTree *tree, RbApplyFn func, RbContext context)
+{
+ assert(tree);
+ rbApplyLR(tree->root, func, context);
+}
+
+// traverse tree, right to left, calling use defined func on each node
+static void rbApplyRL(RbNode *node, RbApplyFn func, RbContext context)
+{
+ if (node)
+ {
+ rbApplyRL(node->link[1], func, context);
+ (*func)(node->key, node->value, context);
+ rbApplyRL(node->link[0], func, context);
+ }
+}
+
+void rbTreeApplyRL(RbTree *tree, RbApplyFn func, RbContext context)
+{
+ assert(tree);
+ rbApplyRL(tree->root, func, context);
+}
+
+void rbTreeNewEmbedded(RbTree *tree, RbNewFn newNode, RbUpdateFn updateNode, RbEraseFn eraseNode, RbCmpKeyFn compareKeys)
+{
+ assert(tree);
+ assert(compareKeys);
+
+ tree->newNode = newNode;
+ tree->updateNode = updateNode;
+ tree->eraseNode = eraseNode;
+ tree->compareKeys = compareKeys;
+ tree->root = NULL;
+}
+
+// compareKeys is required, but the others can be passed as NULL
+RbTree *rbTreeNew(RbNewFn newNode, RbUpdateFn updateNode, RbEraseFn eraseNode, RbCmpKeyFn compareKeys)
+{
+ RbTree *tree = malloc(sizeof(RbTree));
+ assert(tree);
+
+ tree->newNode = newNode;
+ tree->updateNode = updateNode;
+ tree->eraseNode = eraseNode;
+ tree->compareKeys = compareKeys;
+ tree->root = NULL;
+ return tree;
+}
+
+void rbTreeFreeEmbedded(RbTree *tree)
+{
+ if (tree)
+ {
+ if (tree->root)
+ {
+ RbNode *it = tree->root;
+ RbNode *save;
+
+ // Rotate away the left links so that
+ // we can treat this like the destruction
+ // of a linked list
+ while (it != NULL)
+ {
+ if (it->link[0] == NULL)
+ {
+ // No left links, just kill the node and move on
+ save = it->link[1];
+
+ if (tree->eraseNode)
+ tree->eraseNode (it->key, it->value);
+
+ free (it);
+ }
+ else // Rotate away the left link and check again
+ {
+ save = it->link[0];
+ it->link[0] = save->link[1];
+ save->link[1] = it;
+ }
+
+ it = save;
+ }
+
+ tree->root = NULL;
+ }
+ }
+}
+
+
+void rbTreeFree(RbTree *tree)
+{
+ if (tree)
+ {
+ rbTreeFreeEmbedded(tree);
+ free(tree);
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/rbtree.h Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,99 @@
+/*
+ * rbtree.h -- Red Black balanced tree library
+ *
+ * Copyright (c) 2008 Dave Raggett
+ * based upon code by Julienne Walker
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ */
+
+#ifndef RBTREE_H
+#define RBTREE_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stddef.h>
+#include <stdlib.h>
+
+typedef void *RbKey; // e.g. memory address of object
+typedef void *RbValue;
+typedef void *RbContext;
+typedef unsigned long RbSize; // long for compatibility with LP64
+
+typedef struct _rbnode
+{
+ int red; // Color (1=red, 0=black)
+ RbKey key; // same size as void *
+ RbValue value; // User-defined content
+ struct _rbnode *link[2]; // Left (0) and right (1) links
+} RbNode;
+
+// create new value in red-black tree node
+typedef void (*RbNewFn) ( RbNode *node, RbKey key, RbValue value );
+
+// for updating existing data in red-black tree node
+typedef void (*RbUpdateFn) ( RbNode *node, RbValue value );
+
+// for freeing data stored in red-black tree node
+typedef void (*RbEraseFn) ( RbKey key, RbValue value );
+
+typedef int (*RbCmpKeyFn) (RbKey key1, RbKey key2);
+
+// user supplied function for apply mechanism
+typedef void (*RbApplyFn)(RbKey key, RbValue value, RbContext context);
+
+typedef struct _rbtree
+{
+ RbNewFn newNode;
+ RbUpdateFn updateNode;
+ RbEraseFn eraseNode;
+ RbCmpKeyFn compareKeys;
+ RbNode *root;
+} RbTree;
+
+// red black tree functions
+RbTree *rbTreeNew(RbNewFn newNode, RbUpdateFn updateNode,
+ RbEraseFn eraseNode, RbCmpKeyFn compareKeys);
+
+void rbTreeNewEmbedded(RbTree *tree, RbNewFn newNode, RbUpdateFn updateNode,
+ RbEraseFn eraseNode, RbCmpKeyFn compareKeys);
+
+void rbTreeFree(RbTree *tree);
+
+void rbTreeFreeEmbedded(RbTree *tree);
+
+
+RbValue rbTreeFindKey ( RbTree *tree, RbKey key );
+void rbTreeInsertKey ( RbTree *tree, RbKey key, RbValue data );
+void rbTreeRemoveKey ( RbTree *tree, RbKey key );
+
+RbSize rbTreeSize ( RbTree *tree ); // number of nodes in tree
+int rbTreeHasOneEntry ( RbTree *tree ); // true of tree has just one node
+
+RbValue rbTreeRootValue(RbTree *tree);
+RbValue rbTreeFirstValue(RbTree *tree);
+RbValue rbTreeLastValue(RbTree *tree);
+
+// calls user defined func on all nodes with given context
+void rbTreeApplyLR(RbTree *tree, RbApplyFn func, RbContext context);
+void rbTreeApplyRL(RbTree *tree, RbApplyFn func, RbContext context);
+
+ #ifdef __cplusplus
+ }
+ #endif
+
#endif // RBTREE_H
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/sites.html Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,21347 @@
+<html>
+ <head>
+ <title>Third Party Sites</title>
+ </head>
+ <body>
+ <table border='1'>
+ <caption>Third Party Sites</caption>
+ <thead>
+ <tr>
+ <th>Site</th>
+ <th>Session Cookies</th>
+ <th>Lasting Cookies</th>
+ <th>Flash Cookies</th>
+ <th>Internal 3rd Parties</th>
+ <th>External 3rd Parties</th>
+ <th>Internal 3rd Party Session Cookies</th>
+ <th>Internal 3rd Party Lasting Cookies</th>
+ <th>Internal 3rd Party Flash Cookies</th>
+ <th>External rd Party Session Cookies</th>
+ <th>External 3rd Party Lasting Cookies</th>
+ <th>External 3rd Party Flash Cookies</th>
+ <th>DOM Storage</th>
+ <th>HTML5 pings</th>
+ <th>Invisible Images</th>
+ <th>Suspicious URLs</th>
+ <th>Geolocation Permission</th>
+ <th>P3P policy</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <th colspan='18'>465 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>152 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>105 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>95 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>89 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>82 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>79 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>78 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>74 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>60 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>54 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>47 sites with 2 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>40 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>39 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>38 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>35 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>31 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>26 sites with 2 references</th>
+ </tr>
+<tr>
+<td>www.google.com</td>
+<td>7</td>
+<td>12</td>
+<td>1</td>
+<td>6</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+ <tr>
+ <th colspan='18'>25 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>24 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>22 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>21 sites with 3 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>20 sites with 2 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>19 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>18 sites with 2 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>17 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>16 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>15 sites with 2 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>14 sites with 4 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>13 sites with 2 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>12 sites with 1 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>11 sites with 4 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>10 sites with 9 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>9 sites with 5 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>8 sites with 11 references</th>
+ </tr>
+<tr>
+<td>www.adobe.com</td>
+<td>3</td>
+<td>4</td>
+<td>1</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+ <tr>
+ <th colspan='18'>7 sites with 17 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>6 sites with 16 references</th>
+ </tr>
+ <tr>
+ <th colspan='18'>5 sites with 34 references</th>
+ </tr>
+<tr>
+<td>twitter.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+ <tr>
+ <th colspan='18'>4 sites with 73 references</th>
+ </tr>
+<tr>
+<td>www.bing.com</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+ <tr>
+ <th colspan='18'>3 sites with 117 references</th>
+ </tr>
+<tr>
+<td>www.pconline.com.cn</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>9</td>
+<td>5</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mercadolibre.com</td>
+<td>2</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+ <tr>
+ <th colspan='18'>2 sites with 408 references</th>
+ </tr>
+<tr>
+<td>www.facebook.com</td>
+<td>7</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yandex.ru</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>4</td>
+<td>10</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>vkontakte.ru</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+ <tr>
+ <th colspan='18'>1 sites with 3994 references</th>
+ </tr>
+<tr>
+<td>www.youtube.com</td>
+<td>2</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>44</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.msn.com</td>
+<td>1</td>
+<td>14</td>
+<td>0</td>
+<td>6</td>
+<td>8</td>
+<td>9</td>
+<td>3</td>
+<td>0</td>
+<td>16</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.baidu.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.taobao.com</td>
+<td>2</td>
+<td>10</td>
+<td>0</td>
+<td>3</td>
+<td>7</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>39</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>wordpress.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.mozilla.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.paypal.com</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rakuten.co.jp</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>login.facebook.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.blogger.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.craigslist.org</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cntv.cn</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xinhuanet.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.infoseek.co.jp</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>3</td>
+<td>12</td>
+<td>0</td>
+<td>12</td>
+<td>0</td>
+<td>9</td>
+<td>23</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cncmax.cn</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.wo.com.cn</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.excite.co.jp</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.java.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.onet.pl</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.t-online.de</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>11</td>
+<td>13</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>3</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.jcpenney.com</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>2</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>39</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bitauto.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>beijing.bitauto.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>ads.us.e-planning.net</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chinanews.com.cn</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.en.rian.ru</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.indeed.com</td>
+<td>4</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.indeed.co.uk</td>
+<td>3</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.groupon.com</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>30</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pcpop.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uk.blackberry.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pcauto.com.cn</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wiktionary.org</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.avira.com</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bloomberg.com</td>
+<td>4</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>28</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cctv.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.huangjinquxian.com</td>
+<td>8</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mtv.com</td>
+<td>6</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>auth.me.com</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>acrobat.com</td>
+<td>5</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.manta.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>25</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.47news.jp</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>udn.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.news.cn</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>10086.cn</td>
+<td>6</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>42</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>57</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pcgames.com.cn</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>38</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.marriott.co.uk</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>mb.softbank.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.smarter.co.jp</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.voucherhub.com</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>browse.deviantart.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>oceanservice.noaa.gov</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.detik.com</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ninemsn.com.au</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chinadaily.com.cn</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.esmas.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+ <tr>
+ <th colspan='18'>0 sites with 1077 references</th>
+ </tr>
+<tr>
+<td>start.ubuntu.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bbc.co.uk</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uk.yahoo.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.yahoo.com</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>login.live.com</td>
+<td>19</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.live.com</td>
+<td>20</td>
+<td>17</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>31</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>sn129w.snt129.mail.live.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>4</td>
+<td>10</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wikipedia.org</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uk.msn.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.microsoft.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>5</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wordpress.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.twitter.com</td>
+<td>1</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.soso.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.youku.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>31</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uk.ask.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.ask.com</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yahoo.co.jp</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.amazon.com</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hao123.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tudou.com</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>4</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ebay.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.apple.com</td>
+<td>8</td>
+<td>6</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fc2.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sogou.com</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.myspace.com</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>2</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ku6.com</td>
+<td>1</td>
+<td>14</td>
+<td>0</td>
+<td>4</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cnet.com</td>
+<td>1</td>
+<td>15</td>
+<td>0</td>
+<td>3</td>
+<td>11</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>en.rakuten.co.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>go.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.about.com</td>
+<td>18</td>
+<td>15</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.go.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hotmail.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>mail.live.com</td>
+<td>19</td>
+<td>15</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.orkut.com</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.goo.ne.jp</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>6</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.orkut.com.br</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.flickr.com</td>
+<td>0</td>
+<td>6</td>
+<td>1</td>
+<td>5</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mail.ru</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>6</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tmall.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>4</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.linkedin.com</td>
+<td>3</td>
+<td>12</td>
+<td>0</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.4shared.com</td>
+<td>3</td>
+<td>12</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.imdb.com</td>
+<td>8</td>
+<td>10</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.aol.co.uk</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.aol.com</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>ameblo.jp</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ameblo.jp</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.amazon.co.jp</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.dailymotion.com</td>
+<td>3</td>
+<td>10</td>
+<td>0</td>
+<td>2</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qq.com</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>9</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sohu.com</td>
+<td>0</td>
+<td>22</td>
+<td>0</td>
+<td>11</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xunlei.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>6</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>safeweb.norton.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.56.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>6</td>
+<td>16</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.360.cn</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sina.com.cn</td>
+<td>1</td>
+<td>10</td>
+<td>0</td>
+<td>3</td>
+<td>7</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ifeng.com</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>19</td>
+<td>5</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.answers.com</td>
+<td>13</td>
+<td>9</td>
+<td>0</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.megaupload.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.4399.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>6</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>london.craigslist.co.uk</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.naver.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>photobucket.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.photobucket.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gougou.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>edition.cnn.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.cnn.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.alibaba.com</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rapidshare.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.skype.com</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gocsgo.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.walmart.com</td>
+<td>9</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nifty.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.2345.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mediafire.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.soku.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.daum.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ehow.com</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tianya.cn</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>5</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hp.com</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>2</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.scribd.com</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>2</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>32</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hi5.com</td>
+<td>3</td>
+<td>8</td>
+<td>0</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.9223.com</td>
+<td>1</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>bit.ly</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.bit.ly</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.7k7k.com</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>6</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>58</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.weather.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hotfile.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>jp.msn.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.jp.msn.com</td>
+<td>1</td>
+<td>15</td>
+<td>0</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ebay.de</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.partypoker.com</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.softonic.com</td>
+<td>3</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.youdao.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.imageshack.us</td>
+<td>2</td>
+<td>13</td>
+<td>0</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.megavideo.com</td>
+<td>1</td>
+<td>3</td>
+<td>1</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zqgame.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.odnoklassniki.ru</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.biglobe.ne.jp</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.target.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.filestube.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.uol.com.br</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>12</td>
+<td>7</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>home.mywebsearch.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.mywebsearch.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.espn.go.com</td>
+<td>4</td>
+<td>9</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.alipay.com</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>badoo.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.badoo.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.avg.com</td>
+<td>6</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.96pk.com</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ebay.co.uk</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.renren.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zol.com.cn</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>4</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.alot.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bankofamerica.com</td>
+<td>9</td>
+<td>7</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.paipai.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>3</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>311</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zynga.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>sourceforge.net</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.sourceforge.net</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nytimes.com</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>5</td>
+<td>13</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>kakaku.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.kakaku.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zedo.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bestbuy.com</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.news.163.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mop.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>11</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.orkut.co.in</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wikimedia.org</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chase.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>vk.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.metacafe.com</td>
+<td>5</td>
+<td>9</td>
+<td>0</td>
+<td>1</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kugou.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qiyi.com</td>
+<td>1</td>
+<td>4</td>
+<td>1</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.dell.com</td>
+<td>6</td>
+<td>4</td>
+<td>0</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>27</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.uuzu.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ledu.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.brothersoft.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.amazon.co.uk</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.amazon.de</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nate.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>narod.yandex.ru</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.narod.ru</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>en.9wee.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.9wee.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.livejournal.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>5</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mapquest.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.globo.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ameba.jp</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.joy.cn</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.depositfiles.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>wikimediafoundation.org</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.wikimediafoundation.org</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>thepiratebay.org</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.thepiratebay.org</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.2ch.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ocn.ne.jp</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cocolog-nifty.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>7</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.free.fr</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mozilla.org</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.netflix.com</td>
+<td>6</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cyworld.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.thefreedictionary.com</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pptv.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>2</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yomiuri.co.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>35</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>163</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.people.com.cn</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.addthis.com</td>
+<td>2</td>
+<td>10</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.taringa.net</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.exblog.jp</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>4</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>20</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.3366.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.so-net.ne.jp</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nicovideo.jp</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.terra.com.br</td>
+<td>4</td>
+<td>9</td>
+<td>0</td>
+<td>4</td>
+<td>8</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wushen.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xici.net</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.reference.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>1</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zing.vn</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>6</td>
+<td>3</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nih.gov</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>okwave.jp</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.okwave.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>mixi.jp</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.mixi.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.orange.fr</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.babylon.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.optmd.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>jugem.jp</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.jugem.jp</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.miniclip.com</td>
+<td>2</td>
+<td>12</td>
+<td>0</td>
+<td>2</td>
+<td>8</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.58.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ikea.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>78</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sakura.ne.jp</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tumblr.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.eastmoney.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>9</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.vimeo.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.skycn.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nowdownloadall.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.booking.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.vancl.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>111</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rakuten.ne.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>ezinearticles.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.ezinearticles.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.slideshare.net</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>allabout.co.jp</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.allabout.co.jp</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bearshare.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.126.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rambler.ru</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>6.cn</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.6.cn</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>67</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.macromedia.com</td>
+<td>3</td>
+<td>5</td>
+<td>1</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hudong.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>7</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.commentcamarche.net</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>23</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>22</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.livedoor.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>6</td>
+<td>8</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fileserve.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.att.com</td>
+<td>6</td>
+<td>8</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cnxad.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.liveperson.net</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.soufun.com</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>9</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.peeplo.co.uk</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.peeplo.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gmarket.co.kr</td>
+<td>5</td>
+<td>1</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chosun.com</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>5</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>67</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.dailymail.co.uk</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>4</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>46</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wellsfargo.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.douban.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>47</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sparkstudios.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.windowslivehelp.com</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.onet.eu</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.mainichi.jp</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>2</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>39</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nhk.or.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.comcast.net</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tripadvisor.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.libero.it</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kaixin001.com</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.alexa.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>en.netlog.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.netlog.com</td>
+<td>3</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.reuters.com</td>
+<td>0</td>
+<td>4</td>
+<td>1</td>
+<td>1</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>58</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.letv.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>8</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>25</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.jiayuan.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>6</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>hubpages.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.hubpages.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>maktoob.yahoo.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.maktoob.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mcafee.com</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>tabelog.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.tabelog.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pomoho.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.web.de</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>2</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.autohome.com.cn</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.china.com</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hexun.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>5</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.japanpost.jp</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nextag.com</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tagged.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>multiply.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.multiply.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.marketgid.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wp.pl</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ieaddons.com</td>
+<td>6</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.softpedia.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>102</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ju51.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>5</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.jiji.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sanspo.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>29</td>
+<td>40</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gmx.net</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>2</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>ebm.cheetahmail.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.overture.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.docin.com</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>allegro.pl</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.allegro.pl</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.foxnews.com</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>5</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>48</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nikkeibp.co.jp</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.39.net</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>5</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.huffingtonpost.com</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>1</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>51</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>22</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wan5d.com</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.naqigs.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.imesh.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yz.szgla.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ups.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.iza.ne.jp</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>allrecipes.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.allrecipes.com</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wikia.com</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rediff.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sponichi.co.jp</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.glispa.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gnavi.co.jp</td>
+<td>2</td>
+<td>4</td>
+<td>1</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.expedia.com</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>23</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sdo.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.verizonwireless.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uk.real.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.real.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.51.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.impressholdings.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.impress.co.jp</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>ja.impressholdings.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>27</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.twitpic.com</td>
+<td>3</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.samsung.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>torrentz.eu</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.torrentz.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.360buy.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>5</td>
+<td>8</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.traviangames.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nikkansports.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.iminent.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>4</td>
+<td>8</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ning.com</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.51wan.com</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>7</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wretch.cc</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.typepad.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bizrate.com</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.auction.co.kr</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>6</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>38</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wordreference.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.duowan.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>7</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.asahi.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>4</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>26</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.dangdang.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>12</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.letitbit.net</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.musica.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>30</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.shoplocal.com</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>3</td>
+<td>31</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>34</td>
+<td>141</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tenpay.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hulu.com</td>
+<td>1</td>
+<td>5</td>
+<td>1</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>42</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.guardian.co.uk</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>2</td>
+<td>7</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nba.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>31</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.verycd.com</td>
+<td>2</td>
+<td>9</td>
+<td>0</td>
+<td>5</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uk.shopping.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.shopping.com</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.funshion.com</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>6</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.virgilio.it</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.360doc.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.118114.cn</td>
+<td>1</td>
+<td>13</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.17173.com</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>5</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.over-blog.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ziddu.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.macys.com</td>
+<td>12</td>
+<td>2</td>
+<td>0</td>
+<td>2</td>
+<td>3</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>3</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sears.com</td>
+<td>16</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.deviantart.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>1</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.duba.net</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.leboncoin.fr</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ganji.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.washingtonpost.com</td>
+<td>2</td>
+<td>10</td>
+<td>0</td>
+<td>5</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>35</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.robtex.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mapion.co.jp</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.in.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ucoz.ru</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.usps.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>isohunt.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.isohunt.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.webry.info</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.oricon.co.jp</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>3</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>34</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.toysrus.com</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>2</td>
+<td>10</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.11st.co.kr</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mt.co.kr</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>5</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.metrolyrics.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.microsofttranslator.com</td>
+<td>4</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.surveymonkey.com</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.monografias.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.dtiblog.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.27.cn</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>4</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chinanews.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.comcast.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.m18.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>3</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>84</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tom.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.indiatimes.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>4</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.squidoo.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rincondelvago.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>30</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>45</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.avast.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.icq.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>tinyurl.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.tinyurl.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>en.usenet.nl</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.usenet.nl</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tinypic.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>3</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kuwo.cn</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>10</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>22</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uk.gamespot.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.gamespot.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.torrentdownloads.net</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.amazon.cn</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.foodnetwork.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>2</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>74</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.baixaki.com.br</td>
+<td>6</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ccb.com.cn</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.liveinternet.ru</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>32</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.liutilities.com</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.plala.or.jp</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hankooki.com</td>
+<td>3</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.01net.com</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hotpepper.jp</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bild.de</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pandora.tv</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.unkar.org</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>cookpad.com</td>
+<td>6</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gap.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nokia.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fedex.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.informer.com</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nfl.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.telegraph.co.uk</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>beemp3.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.capitalone.com</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.opera.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.yelp.com</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.vnet.cn</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.justin.tv</td>
+<td>6</td>
+<td>6</td>
+<td>0</td>
+<td>1</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.aweber.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.atwiki.jp</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>2</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.linternaute.com</td>
+<td>4</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chip.de</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kohls.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pandora.com</td>
+<td>6</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.godaddy.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.vector.co.jp</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.teacup.com</td>
+<td>5</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.overstock.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uk.match.com</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pagesjaunes.fr</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.buzzle.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mercadolivre.com.br</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.sbs.co.kr</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>25</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.last.fm</td>
+<td>6</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.constantcontact.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.incredimail.com</td>
+<td>3</td>
+<td>14</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.veoh.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.shinobi.jp</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gutefrage.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.careerbuilder.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>25</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.telecomitalia.it</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.zimbio.com</td>
+<td>3</td>
+<td>10</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sweetim.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ibm.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>61</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sonico.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.21cn.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>12</td>
+<td>2</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pixnet.net</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.naver.jp</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.intel.com</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wikimapia.org</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>22</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>92</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qidian.com</td>
+<td>6</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.homedepot.com</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>28</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pingan.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.95599.cn</td>
+<td>5</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uk.ign.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>28</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.jalan.net</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>118</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.donga.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.filehippo.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.blackberry.com</td>
+<td>6</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.alisoft.com</td>
+<td>5</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sfr.fr</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.laredoute.fr</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.repubblica.it</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.southwest.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.onlinedown.net</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mylife.com</td>
+<td>5</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yellowpages.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kaskus.us</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.evite.com</td>
+<td>6</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>new.evite.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.m1905.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.duote.com</td>
+<td>3</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.opendns.com</td>
+<td>6</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.webmd.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.itmedia.co.jp</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.oyunlar1.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.iefxz.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yaplog.jp</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gyyx.cn</td>
+<td>5</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.whitepages.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>34</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kuaibo.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.y8.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>digg.com</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.webs.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ourtoolbar.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.115.com</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.otto.de</td>
+<td>1</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.camzap.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.domaintools.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.acer.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.symantec.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>70</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.51job.com</td>
+<td>5</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>23</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.latimes.com</td>
+<td>5</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>33</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>70</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.aufeminin.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mobile.de</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.engadget.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.associatedcontent.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yzz.cn</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.filesonic.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.usatoday.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>39</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.61.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>39</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>vnexpress.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.daily.co.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ct10000.com</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.clubpenguin.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.amazon.fr</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tu.tv</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.speedtest.net</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>armorgames.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>wordpress.org</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ip138.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.interia.pl</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>us.detik.com</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.docstoc.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.costco.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.skyrock.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.logsoku.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cnzz.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.picnik.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fanbox.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ustream.tv</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.formspring.me</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.weather.com.cn</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>rutracker.org</td>
+<td>1</td>
+<td>11</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.suite101.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>39</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.weblio.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wanmei.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.baofeng.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kickasstorrents.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ebuddy.com</td>
+<td>7</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hotels.com</td>
+<td>3</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.imvu.com</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zylom.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cmbchina.com</td>
+<td>5</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rr.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yam.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.junyilm.com</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>25</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fresheye.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pchome.com.tw</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>34</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.asiae.co.kr</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hc360.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.verizon.com</td>
+<td>5</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www22.verizon.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.groupalia.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.114la.com</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yandex.ua</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.argos.co.uk</td>
+<td>11</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tbs.co.jp</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.juegos.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gazeta.pl</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zhaopin.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.elmundo.es</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.4055.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.archive.org</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>accountservices.passport.net</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.runup.cn</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>shop-pro.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>30</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>panasonic.jp</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.usagc.org</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.jrj.com.cn</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.seznam.cz</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.91.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xe.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>qip.ru</td>
+<td>7</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.myvideo.de</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yfrog.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.spiegel.de</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hm.com</td>
+<td>2</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>abcnews.go.com</td>
+<td>2</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.1ting.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.lowes.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zuixiaoyao.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.interpark.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>50</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nikkei.com</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>26</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.corriere.it</td>
+<td>2</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.people.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>52</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wikihow.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.dropbox.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.monster.co.uk</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.partypoker.it</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mynet.com</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ig.com.br</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>dantri.com.vn</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.dianping.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.wunderground.com</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>63</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.it168.com</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.v1.cn</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.freeonlinegames.com</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>22</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.barnesandnoble.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.univision.com</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fixya.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ovi.com</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pixmania.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ea.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pc120.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.me.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sprint.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xbox.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.seoul.co.kr</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pogo.com</td>
+<td>3</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>49</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>27</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cbsnews.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>39</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.samsungmobile.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.utorrent.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.blogcu.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>wn.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.partypoker.fr</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>71</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mufg.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>rutube.ru</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.52pk.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tuenti.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.acrobat.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ticketmaster.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>europa.eu</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.forbes.com</td>
+<td>6</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>26</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>63</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>33</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.foxtab.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.winamp.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ryanair.com</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sanook.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ya.ru</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.break.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.unionsky.cn</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mp3raid.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ccbill.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>ninemsn.com.au</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sony.jp</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.agame.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zappos.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>40</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sapo.pt</td>
+<td>5</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.addictinggames.com</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.thefind.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mercadolibre.com.mx</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>32</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zhcw.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wer-kennt-wen.de</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.abril.com.br</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.computerbild.de</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.windowsmedia.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kx365.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>g.kx365.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.babycenter.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zoosk.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.piriform.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.doctissimo.fr</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sciencedirect.com</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nttdocomo.co.jp</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.china.com.cn</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.atdhe.net</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.radikal.ru</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.livescore.com</td>
+<td>20</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kmart.com</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.citibank.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.123people.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ebay.com.au</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hyves.nl</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>39</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tesco.com</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.carview.co.jp</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chinahr.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>uploading.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.friendster.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>52</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nhaccuatui.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>40</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yoka.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.365ub.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.etsy.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>52</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.khan.co.kr</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>52</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.taleo.net</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.wisegeek.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ana.co.jp</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>goo.gl</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.baixing.com</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kompas.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.2144.cn</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fc2web.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.udn.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.priceminister.com</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.medicinenet.com</td>
+<td>7</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gd118114.cn</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nike.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.timeanddate.com</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.friv.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.irctc.co.in</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>26</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kuronekoyamato.co.jp</td>
+<td>5</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.newegg.com</td>
+<td>6</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.delta.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.worldslastchance.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.immobilienscout24.de</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ytn.co.kr</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xrea.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>livingsocial.com</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.stayfriends.de</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.5d6d.com</td>
+<td>4</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>abc.go.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nasa.gov</td>
+<td>5</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sonystyle.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.boc.cn</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>91</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kapook.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.quepasa.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qunar.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>95</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xingkong.com</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.lego.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.dealtime.com</td>
+<td>2</td>
+<td>16</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.merriam-webster.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cri.cn</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.vietbao.vn</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>125</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.edaily.co.kr</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.blogmura.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.linksynergy.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.partycasino.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nydailynews.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>42</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cdiscount.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.causes.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.elpais.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kapihospital.de</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.52yeyou.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>xuite.net</td>
+<td>5</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.t-mobile.com</td>
+<td>7</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.staples.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kbs.co.kr</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.marca.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>30</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.idealo.de</td>
+<td>1</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.120ask.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tmz.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zshare.net</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mtime.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hinet.net</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.made-in-china.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mycom.co.jp</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.articlesbase.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ca.gov</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rian.ru</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.zaycev.net</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.superpages.com</td>
+<td>5</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.examiner.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>64</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.freakshare.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.888.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.focus.cn</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>btjunkie.org</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.stumbleupon.com</td>
+<td>6</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.priceline.com</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wachovia.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.with2.net</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>32</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rbc.ru</td>
+<td>5</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.victoriassecret.com</td>
+<td>5</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>eu.wiley.com</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bahn.de</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sky.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.springerlink.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.heraldm.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.howstuffworks.com</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.freshwap.net</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cartoonnetwork.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.worldlingo.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.clubic.com</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.classmates.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>35</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tf1.fr</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.videosurf.com</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sonyericsson.com</td>
+<td>5</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bigfishgames.com</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qook.co.kr</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>136</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.usazm.net</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.paran.com</td>
+<td>5</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nationalgeographic.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>54</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.credit-agricole.fr</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.plentyoffish.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.boosj.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qqwangming.org</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chinamobile.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.businessweek.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hani.co.kr</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.idownloadunlimited.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>39</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ocnk.net</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.j-cast.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.urbandictionary.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.top100.cn</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>us.vivanews.com</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.easyjet.com</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ilmeteo.it</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gamebabylon.com</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>472</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hurriyet.com.tr</td>
+<td>5</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.itv.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.iwon.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>32</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.browserchoice.eu</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.aa.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>yahoo-mbga.jp</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bidders.co.jp</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chefkoch.de</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.alimama.com</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sympatico.ca</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.farmville.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.freedownloadscenter.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.readnovel.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.torrentreactor.net</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.national-lottery.co.uk</td>
+<td>10</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cooks.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chinaz.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.aolnews.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.infospace.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.airasia.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>27</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>stackoverflow.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>europe.chinadaily.com.cn</td>
+<td>6</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pronto.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.novoteka.ru</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.imagevenue.com</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pclady.com.cn</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.best-price.com</td>
+<td>4</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wowan365.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gigazine.net</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cbssports.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>54</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mozilla-europe.org</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pcworld.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fotolog.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>33</td>
+<td>77</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ctrip.com</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>34</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.3suisses.fr</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.information.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>en.grepolis.com</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.freechal.com</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.teoma.com</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.izlesene.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.webcrawler.com</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.heroturko.org</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.accuweather.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.uniblue.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.oracle.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.marketgid.info</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.vzarabotke.ru</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fanpop.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mercadolibre.com.ar</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gismeteo.ru</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.orbitz.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>mashable.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xcar.com.cn</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.all-biz.info</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.legacy.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mbaobao.com</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.videobash.com</td>
+<td>6</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>38</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.buy.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.jal.co.jp</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.htc.com</td>
+<td>5</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.neckermann.de</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.turbobit.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>32</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kuwan8.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.travelocity.com</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xing.com</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>4</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.righthealth.com</td>
+<td>2</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>36</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>27</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kp.ru</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.joinsmsn.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.weebly.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>30</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.vesti.ru</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.deezer.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.facemoods.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.play.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>95</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.123greetings.com</td>
+<td>3</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ukr.net</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qire123.com</td>
+<td>2</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www1.hilton.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kaspersky.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.samsclub.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.marriott.com</td>
+<td>5</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kinopoisk.ru</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.lg.com</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>readme.ru</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>rapiddigger.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.istockphoto.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>29</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.weborama.fr</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www2.esmas.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>28</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.a67.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.canalblog.com</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.logitech.com</td>
+<td>4</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wetter.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.51seer.com</td>
+<td>5</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.webshots.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pole-emploi.fr</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.aeriagames.com</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.schuelervz.net</td>
+<td>6</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.local.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>50</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.discovercard.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.shvoong.com</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ft.com</td>
+<td>2</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.time.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.warnerbros.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ntv.co.jp</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>sg.88db.com</td>
+<td>2</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>45</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.allocine.fr</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.thesun.co.uk</td>
+<td>5</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>67</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.walgreens.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.multiupload.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.getpersonas.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.programas-gratis.net</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.uploaded.to</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nexon.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sendspace.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.moonbasa.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.jsoftj.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>78</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wat.tv</td>
+<td>8</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>22</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.shutterfly.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>38</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.etoro.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.direct.gov.uk</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.changyou.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mundoanuncio.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.limewire.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.reverso.net</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.marktplaats.nl</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>aucfan.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>france.meteofrance.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.winzip.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.groupon.jp</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>54</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.songs.pk</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.barbie.com</td>
+<td>5</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fnac.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.apserver.net</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.popularscreensavers.com</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.softbank.jp</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>16</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>thesaurus.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.enet.com.cn</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kooora.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>144</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.news.de</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>144</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qq163.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.kbstar.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>eu.battle.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>82</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qzone.cc</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.uniqlo.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.goal.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>45</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.espncricinfo.com</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>91</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sportsseoul.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.uploadcity.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kijiji.ca</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.uuu9.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fotostrana.ru</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.w3.org</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.46.com</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bohelady.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>32</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.boston.com</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ciao.de</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.virusbuster.jp</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.retailmenot.com</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>myegy.com</td>
+<td>1</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fandango.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mizuhobank.co.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.topshareware.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.freelotto.com</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.coneco.net</td>
+<td>2</td>
+<td>5</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.lenovo.com</td>
+<td>1</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.girlsgogames.com</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.segye.com</td>
+<td>2</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.topix.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.issuu.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mahalo.com</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.caixa.gov.br</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yaodian100.com</td>
+<td>2</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qqgexing.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.main.jp</td>
+<td>3</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gamehouse.com</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>40</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.usbank.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>ponpare.jp</td>
+<td>3</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rtl.de</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.marksandspencer.com</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.virginmedia.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>54</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>baamboo.com</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>nick.co.uk</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.33hy.com</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.seoquake.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.sing365.com</td>
+<td>3</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.dasoertliche.de</td>
+<td>7</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>82</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gamestop.com</td>
+<td>3</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bandoo.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mozdev.org</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.8684.cn</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.unam.mx</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>61</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cool.ne.jp</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bedbathandbeyond.com</td>
+<td>4</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>126</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.lenovo.com.cn</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.epson.jp</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.w3schools.com</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.meinvz.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.asus.com</td>
+<td>5</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>48</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.enfemenino.com</td>
+<td>4</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.chacha.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.lyricsmode.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>46</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.subito.it</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tiscali.it</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.citysearch.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>1</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ioage.com</td>
+<td>5</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.autoscout24.de</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ddmap.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.r7.com</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.trialpay.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>8</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hdfcbank.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.openoffice.org</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wer-weiss-was.de</td>
+<td>2</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.jimdo.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.gamersky.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>searchina.ne.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>techcrunch.com</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tchibo.de</td>
+<td>3</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.lezi.com</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.webfetti.com</td>
+<td>4</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>12</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kayak.co.uk</td>
+<td>5</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>23</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>18</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mthai.com</td>
+<td>1</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.tv.com</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.fidelity.com</td>
+<td>4</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bt.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>116</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yihaodian.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>15</td>
+<td>30</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cooliris.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.teamviewer.com</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bdr130.net</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.popeater.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.newhua.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.newsis.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hangame.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qvc.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.blogbus.com</td>
+<td>1</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ultimate-guitar.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.pipl.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.noaa.gov</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cafe24.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kukinews.com</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<td>(null)</td>
+<tr>
+<tr>
+<td>www.hatena.ne.jp</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>5</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>116</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.cookpad.com</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.beemp3.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.match.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.alice.it</td>
+<td>3</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ign.com</td>
+<td>5</td>
+<td>11</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>17</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.game2.cn</td>
+<td>4</td>
+<td>2</td>
+<td>0</td>
+<td>2</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.digg.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.vnexpress.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.armorgames.com</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wordpress.org</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rutracker.org</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.passport.net</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.shop-pro.jp</td>
+<td>1</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.panasonic.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>30</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.csdn.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.qip.ru</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.abcnews.go.com</td>
+<td>1</td>
+<td>10</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.monster.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.dantri.com.vn</td>
+<td>1</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wn.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rutube.ru</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>26</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.europa.eu</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.uploading.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.bbvod.net</td>
+<td>1</td>
+<td>10</td>
+<td>0</td>
+<td>4</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.livingsocial.com</td>
+<td>2</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.abc.go.com</td>
+<td>3</td>
+<td>11</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.appspot.com</td>
+<td>1</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xuite.net</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.btjunkie.org</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>14</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.wiley.com</td>
+<td>5</td>
+<td>2</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xt918.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.vivanews.com</td>
+<td>3</td>
+<td>15</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.yahoo-mbga.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.stackoverflow.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.vzw.com</td>
+<td>4</td>
+<td>3</td>
+<td>0</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.grepolis.com</td>
+<td>2</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.mashable.com</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.juchang.com</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>4</td>
+<td>13</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>24</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.joins.com</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.hilton.com</td>
+<td>2</td>
+<td>11</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.readme.ru</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>19</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.rapiddigger.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.88db.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>20</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.aucfan.com</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.meteofrance.com</td>
+<td>3</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.thesaurus.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>9</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.battle.net</td>
+<td>2</td>
+<td>5</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.myegy.com</td>
+<td>1</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.ponpare.jp</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.baamboo.com</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>54</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.nick.com</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.deviantart.net</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>1</td>
+<td>21</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>7</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.divx.com</td>
+<td>4</td>
+<td>5</td>
+<td>0</td>
+<td>1</td>
+<td>6</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>30</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.kayak.com</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<tr>
+<tr>
+<td>www.xywy.com</td>
+<td>0</td>
+<td>5</td>
+<td>0</td>
+<td>4</td>
+<td>5</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>1</td>
+<td>0</td>
+<td>0</td>
+<tr>
+ </tbody>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/top-sites.c Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,1006 @@
+// top 1000 sites according to google
+
+#include "top_sites.h"
+
+SiteDesc top_sites[1000] = {
+{1, "facebook.com", "Social Networks", 600000000, 38.4, 750000000000, true},
+{2, "youtube.com", "Online Video", 500000000, 31.9, 84000000000, true},
+{3, "yahoo.com", "Web Portals", 410000000, 26, 70000000000, true},
+{4, "live.com", "Search Engines", 340000000, 21.9, 36000000000, true},
+{5, "wikipedia.org", "Dictionaries & Encyclopedias", 280000000, 18, 7100000000, false},
+{6, "msn.com", "Web Portals", 250000000, 16.1, 13000000000, true},
+{7, "baidu.com", "Search Engines", 230000000, 14.6, 100000000000, true},
+{8, "qq.com", "Web Portals", 210000000, 13.2, 53000000000, true},
+{9, "microsoft.com", "Software", 190000000, 12.2, 3300000000, true},
+{10, "sina.com.cn", "Web Portals", 110000000, 6.9, 6400000000, true},
+{11, "taobao.com", "Classifieds", 110000000, 6.8, 25000000000, true},
+{12, "bing.com", "Search Engines", 110000000, 7, 4100000000, true},
+{13, "adobe.com", "Multimedia Software", 98000000, 6.3, 1100000000, true},
+{14, "wordpress.com", "Blogging Resources & Services", 89000000, 5.7, 1100000000, true},
+{15, "twitter.com", "Email & Messaging", 89000000, 5.7, 5900000000, false},
+{16, "soso.com", "Search Engines", 88000000, 5.6, 2700000000, false},
+{17, "mozilla.com", "Internet Clients & Browsers", 88000000, 5.6, 1600000000, true},
+{18, "youku.com", "Online Video", 88000000, 5.6, 2700000000, true},
+{19, "ask.com", "Search Engines", 88000000, 5.6, 1900000000, true},
+{20, "yahoo.co.jp", "Web Portals", 73000000, 4.7, 30000000000, true},
+{21, "amazon.com", "Shopping", 73000000, 4.7, 6400000000, true},
+{22, "hao123.com", "Web Portals", 67000000, 4.3, 4900000000, false},
+{23, "tudou.com", "Online Video", 67000000, 4.3, 2200000000, true},
+{24, "ebay.com", "Auctions", 66000000, 4.2, 12000000000, true},
+{25, "apple.com", "Mac OS", 66000000, 4.2, 1300000000, true},
+{26, "sohu.com", "Web Portals", 66000000, 4.2, 4000000000, true},
+{27, "fc2.com", "Web Services", 51000000, 3.2, 3000000000, true},
+{28, "xunlei.com", "File Sharing & Hosting", 49000000, 3.2, 1900000000, true},
+{29, "sogou.com", "Search Engines", 46000000, 2.9, 1400000000, true},
+{30, "56.com", "Online Media", 46000000, 2.9, 880000000, true},
+{31, "360.cn", "Antivirus & Malware", 46000000, 2.9, 710000000, false},
+{32, "myspace.com", "", 45000000, 2.9, 4800000000, true},
+{33, "paypal.com", "Merchant Services & Payment Systems", 45000000, 2.9, 2000000000, true},
+{34, "ku6.com", "Online Media", 42000000, 2.7, 670000000, true},
+{35, "cnet.com", "Consumer Electronics", 41000000, 2.6, 550000000, true},
+{36, "rakuten.co.jp", "Shopping Portals & Search Engines", 41000000, 2.6, 4500000000, true},
+{37, "go.com", "Web Portals", 41000000, 2.6, 4000000000, true},
+{38, "about.com", "How-To", 41000000, 2.6, 660000000, true},
+{39, "hotmail.com", "Email & Messaging", 38000000, 2.4, 720000000, true},
+{40, "yandex.ru", "Search Engines", 38000000, 2.4, 10000000000, true},
+{41, "orkut.com", "Social Networks", 38000000, 2.4, 6500000000, true},
+{42, "goo.ne.jp", "Web Portals", 38000000, 2.4, 800000000, true},
+{43, "orkut.com.br", "Social Networks", 38000000, 2.4, 85000000000, true},
+{44, "flickr.com", "Photo & Image Sharing", 38000000, 2.4, 1800000000, true},
+{45, "mail.ru", "Email & Messaging", 37000000, 2.4, 13000000000, true},
+{46, "tmall.com", "Apparel", 37000000, 2.4, 1400000000, true},
+{47, "bbc.co.uk", "World News", 37000000, 2.4, 2700000000, true},
+{48, "linkedin.com", "Social Networks", 37000000, 2.4, 2300000000, true},
+{49, "4shared.com", "File Sharing & Hosting", 35000000, 2.2, 2000000000, true},
+{50, "imdb.com", "Movie Reference", 34000000, 2.2, 1300000000, true},
+{51, "aol.com", "Web Portals", 34000000, 2.2, 4400000000, true},
+{52, "ameblo.jp", "Blogging Resources & Services", 34000000, 2.2, 1700000000, true},
+{53, "amazon.co.jp", "Entertainment Media", 34000000, 2.2, 1300000000, false},
+{54, "dailymotion.com", "Online Video", 34000000, 2.2, 660000000, true},
+{55, "ifeng.com", "Web Portals", 34000000, 2.2, 2700000000, true},
+{56, "blogger.com", "Blogging Resources & Services", 32000000, 2, 1900000000, false},
+{57, "answers.com", "General Reference", 31000000, 2, 280000000, true},
+{58, "megaupload.com", "File Sharing & Hosting", 31000000, 2, 960000000, true},
+{59, "4399.com", "Online Games", 31000000, 2, 2800000000, true},
+{60, "craigslist.org", "Classifieds", 31000000, 2, 15000000000, false},
+{61, "naver.com", "Search Engines", 31000000, 2, 6500000000, true},
+{62, "photobucket.com", "Photo & Video Sharing", 29000000, 1.8, 720000000, true},
+{63, "gougou.com", "Search Engines", 28000000, 1.8, 880000000, true},
+{64, "vkontakte.ru", "Social Networks", 28000000, 1.8, 36000000000, false},
+{65, "cnn.com", "Broadcast & Network News", 28000000, 1.8, 1400000000, true},
+{66, "alibaba.com", "Import & Export", 28000000, 1.8, 1100000000, true},
+{67, "rapidshare.com", "File Sharing & Hosting", 28000000, 1.8, 540000000, true},
+{68, "skype.com", "VOIP & Internet Telephony", 28000000, 1.8, 600000000, true},
+{69, "gocsgo.com", "", 28000000, 1.8, 170000000, false},
+{70, "walmart.com", "Mass Merchants & Department Stores", 26000000, 1.7, 1700000000, true},
+{71, "nifty.com", "Web Portals", 26000000, 1.7, 650000000, true},
+{72, "2345.com", "Web Portals", 26000000, 1.7, 1400000000, true},
+{73, "mediafire.com", "File Sharing & Hosting", 26000000, 1.6, 450000000, true},
+{74, "soku.com", "Online Video", 26000000, 1.7, 730000000, true},
+{75, "daum.net", "Web Portals", 26000000, 1.7, 3300000000, true},
+{76, "ehow.com", "How-To", 26000000, 1.6, 230000000, true},
+{77, "tianya.cn", "Online Communities", 24000000, 1.5, 410000000, true},
+{78, "hp.com", "Hardware", 24000000, 1.5, 720000000, true},
+{79, "scribd.com", "", 24000000, 1.5, 140000000, true},
+{80, "hi5.com", "Social Networks", 23000000, 1.5, 5900000000, true},
+{81, "9223.com", "Directories & Listings", 23000000, 1.5, 950000000, true},
+{82, "bit.ly", "Online Communities", 23000000, 1.5, 230000000, true},
+{83, "7k7k.com", "Casual Games", 23000000, 1.5, 2400000000, true},
+{84, "weather.com", "Weather", 23000000, 1.5, 790000000, true},
+{85, "hotfile.com", "File Sharing & Hosting", 23000000, 1.5, 440000000, false},
+{86, "jp.msn.com", "Newspapers", 23000000, 1.5, 790000000, false},
+{87, "ebay.de", "Auctions", 23000000, 1.5, 7200000000, true},
+{88, "partypoker.com", "", 23000000, 1.5, 190000000, true},
+{89, "softonic.com", "Software", 23000000, 1.5, 450000000, true},
+{90, "youdao.com", "Blogging Resources & Services", 23000000, 1.5, 340000000, true},
+{91, "imageshack.us", "", 23000000, 1.5, 230000000, true},
+{92, "megavideo.com", "Online Video", 22000000, 1.4, 410000000, true},
+{93, "zqgame.com", "Sony PlayStation", 21000000, 1.4, 120000000, false},
+{94, "odnoklassniki.ru", "Social Networks", 21000000, 1.3, 9400000000, true},
+{95, "biglobe.ne.jp", "Web Portals", 21000000, 1.3, 370000000, true},
+{96, "target.com", "Mass Merchants & Department Stores", 21000000, 1.4, 950000000, true},
+{97, "filestube.com", "File Sharing & Hosting", 21000000, 1.4, 300000000, true},
+{98, "uol.com.br", "Web Portals", 21000000, 1.3, 4900000000, true},
+{99, "mywebsearch.com", "Search Engines", 21000000, 1.3, 960000000, true},
+{100, "espn.go.com", "Sports", 21000000, 1.4, 2700000000, false},
+{101, "pconline.com.cn", "Local News", 21000000, 1.3, 370000000, true},
+{102, "alipay.com", "Merchant Services & Payment Systems", 21000000, 1.4, 1300000000, true},
+{103, "badoo.com", "Dating & Personals", 20000000, 1.3, 5300000000, false},
+{104, "avg.com", "Antivirus & Malware", 19000000, 1.2, 260000000, true},
+{105, "96pk.com", "Games", 19000000, 1.2, 190000000, false},
+{106, "ebay.co.uk", "Auctions", 19000000, 1.2, 5800000000, true},
+{107, "renren.com", "Social Networks", 19000000, 1.2, 2800000000, true},
+{108, "zol.com.cn", "Hardware", 19000000, 1.2, 540000000, true},
+{109, "alot.com", "Web Apps & Online Tools", 19000000, 1.2, 650000000, true},
+{110, "bankofamerica.com", "Banking", 19000000, 1.2, 2500000000, true},
+{111, "paipai.com", "Apparel", 19000000, 1.2, 720000000, false},
+{112, "hatena.ne.jp", "Blogging Resources & Services", 19000000, 1.2, 170000000, true},
+{113, "cntv.cn", "TV Networks & Stations", 19000000, 1.2, 500000000, true},
+{114, "zynga.com", "Casual Games", 19000000, 1.2, 3600000000, true},
+{115, "sourceforge.net", "Open Source", 19000000, 1.2, 230000000, true},
+{116, "nytimes.com", "Newspapers", 19000000, 1.2, 650000000, true},
+{117, "kakaku.com", "Price Comparisons", 19000000, 1.2, 890000000, true},
+{118, "xinhuanet.com", "News", 19000000, 1.2, 590000000, true},
+{119, "zedo.com", "Advertising & Marketing", 18000000, 1.1, 160000000, true},
+{120, "news.163.com", "Web Portals", 18000000, 1.1, 400000000, false},
+{121, "bestbuy.com", "Consumer Electronics", 18000000, 1.1, 870000000, true},
+{122, "mop.com", "Roleplaying Games", 18000000, 1.1, 300000000, true},
+{123, "orkut.co.in", "Social Networks", 18000000, 1.1, 1700000000, true},
+{124, "wikimedia.org", "Dictionaries & Encyclopedias", 18000000, 1.1, 140000000, false},
+{125, "chase.com", "Banking", 18000000, 1.1, 2300000000, true},
+{126, "vk.com", "Social Networks", 18000000, 1.1, 1100000000, false},
+{127, "metacafe.com", "Video Sharing", 18000000, 1.1, 340000000, true},
+{128, "kugou.com", "Movies", 18000000, 1.1, 170000000, true},
+{129, "qiyi.com", "Movies", 18000000, 1.1, 450000000, false},
+{130, "dell.com", "Hardware", 18000000, 1.1, 530000000, true},
+{131, "uuzu.com", "Computer & Video Games", 17000000, 1.1, 89000000, false},
+{132, "ledu.com", "Computer & Video Games", 17000000, 1.1, 90000000, false},
+{133, "brothersoft.com", "Freeware & Shareware", 17000000, 1.1, 160000000, true},
+{134, "amazon.co.uk", "Shopping Portals & Search Engines", 17000000, 1.1, 1600000000, false},
+{135, "amazon.de", "Entertainment Media", 17000000, 1.1, 1500000000, false},
+{136, "nate.com", "Web Portals", 17000000, 1.1, 1800000000, true},
+{137, "narod.ru", "Web Hosting & Domain Registration", 16000000, 1, 230000000, true},
+{138, "9wee.com", "Simulation Games", 16000000, 1, 81000000, false},
+{139, "livejournal.com", "Blogging Resources & Services", 16000000, 1, 1100000000, true},
+{140, "mapquest.com", "Maps", 16000000, 1, 280000000, true},
+{141, "globo.com", "Web Portals", 16000000, 1, 3300000000, true},
+{142, "ameba.jp", "Blogging Resources & Services", 16000000, 1, 1700000000, true},
+{143, "joy.cn", "Online Video", 16000000, 1, 190000000, true},
+{144, "depositfiles.com", "File Sharing & Hosting", 16000000, 1, 280000000, true},
+{145, "wikimediafoundation.org", "Dictionaries & Encyclopedias", 16000000, 1, 50000000, false},
+{146, "thepiratebay.org", "File Sharing & Hosting", 16000000, 1, 720000000, true},
+{147, "2ch.net", "Forum & Chat Providers", 16000000, 1, 670000000, true},
+{148, "ocn.ne.jp", "Web Portals", 16000000, 1, 250000000, true},
+{149, "cocolog-nifty.com", "Blogging Resources & Services", 16000000, 1, 160000000, true},
+{150, "free.fr", "ISPs", 16000000, 1, 870000000, true},
+{151, "mozilla.org", "Internet Clients & Browsers", 16000000, 1, 140000000, false},
+{152, "netflix.com", "DVD & Video Rentals", 16000000, 1, 1900000000, true},
+{153, "cyworld.com", "Flash-Based Entertainment", 16000000, 1, 1000000000, false},
+{154, "thefreedictionary.com", "Dictionaries & Encyclopedias", 16000000, 1, 130000000, true},
+{155, "pptv.com", "TV Networks & Stations", 16000000, 1, 540000000, true},
+{156, "yomiuri.co.jp", "Newspapers", 15000000, 0.9, 310000000, true},
+{157, "people.com.cn", "News", 15000000, 0.9, 310000000, true},
+{158, "addthis.com", "Internet Clients & Browsers", 14000000, 0.9, 81000000, false},
+{159, "taringa.net", "Social Networks", 14000000, 0.9, 600000000, true},
+{160, "exblog.jp", "Blogging Resources & Services", 14000000, 0.9, 210000000, true},
+{161, "3366.com", "Arts & Entertainment", 14000000, 0.9, 800000000, false},
+{162, "so-net.ne.jp", "Web Portals", 14000000, 0.9, 170000000, true},
+{163, "nicovideo.jp", "Online Video", 14000000, 0.9, 1700000000, true},
+{164, "terra.com.br", "News", 13000000, 0.8, 1500000000, true},
+{165, "wushen.com", "Fan Fiction", 13000000, 0.8, 110000000, false},
+{166, "infoseek.co.jp", "Web Portals", 13000000, 0.8, 280000000, true},
+{167, "xici.net", "Online Communities", 13000000, 0.9, 230000000, true},
+{168, "reference.com", "Dictionaries & Encyclopedias", 13000000, 0.9, 280000000, true},
+{169, "zing.vn", "Viet Nam", 13000000, 0.8, 1600000000, true},
+{170, "nih.gov", "Health", 13000000, 0.8, 300000000, true},
+{171, "okwave.jp", "Forum & Chat Providers", 13000000, 0.9, 50000000, true},
+{172, "mixi.jp", "Social Networks", 13000000, 0.8, 3000000000, true},
+{173, "cncmax.cn", "Web Portals", 13000000, 0.8, 110000000, true},
+{174, "orange.fr", "Web Portals", 13000000, 0.8, 6400000000, true},
+{175, "babylon.com", "Translation Tools & Resources", 13000000, 0.8, 300000000, true},
+{176, "optmd.com", "Advertising & Marketing", 13000000, 0.9, 66000000, true},
+{177, "jugem.jp", "Blogging Resources & Services", 13000000, 0.8, 120000000, true},
+{178, "miniclip.com", "Online Games", 13000000, 0.8, 540000000, true},
+{179, "58.com", "Apartments & Residential Rentals", 13000000, 0.8, 550000000, true},
+{180, "ikea.com", "Home Furnishings", 13000000, 0.8, 960000000, false},
+{181, "sakura.ne.jp", "Web Hosting & Domain Registration", 13000000, 0.8, 250000000, true},
+{182, "tumblr.com", "Online Journals & Personal Sites", 13000000, 0.8, 1000000000, true},
+{183, "eastmoney.com", "Investing", 12000000, 0.8, 730000000, true},
+{184, "vimeo.com", "", 12000000, 0.8, 130000000, true},
+{185, "skycn.com", "Software", 12000000, 0.8, 110000000, true},
+{186, "nowdownloadall.com", "File Sharing & Hosting", 12000000, 0.8, 72000000, false},
+{187, "booking.com", "Hotels & Accommodations", 12000000, 0.8, 370000000, false},
+{188, "excite.co.jp", "Web Portals", 12000000, 0.8, 230000000, true},
+{189, "vancl.com", "Apparel", 12000000, 0.8, 190000000, false},
+{190, "rakuten.ne.jp", "Shopping Portals & Search Engines", 12000000, 0.8, 130000000, true},
+{191, "ezinearticles.com", "Dating & Personals", 12000000, 0.8, 120000000, true},
+{192, "slideshare.net", "Business Plans & Presentations", 12000000, 0.8, 88000000, true},
+{193, "allabout.co.jp", "General Reference", 12000000, 0.8, 97000000, true},
+{194, "bearshare.com", "Music Streams & Downloads", 12000000, 0.8, 170000000, true},
+{195, "java.com", "Java", 12000000, 0.8, 110000000, true},
+{196, "126.com", "Web Portals", 12000000, 0.8, 330000000, true},
+{197, "rambler.ru", "Web Portals", 12000000, 0.8, 1900000000, true},
+{198, "6.cn", "Online Video", 12000000, 0.8, 140000000, true},
+{199, "macromedia.com", "Multimedia Software", 12000000, 0.8, 55000000, false},
+{200, "hudong.com", "Celebrities & Entertainment News", 12000000, 0.8, 130000000, true},
+{201, "commentcamarche.net", "Technology News", 12000000, 0.8, 230000000, true},
+{202, "livedoor.com", "Web Portals", 12000000, 0.8, 370000000, true},
+{203, "fileserve.com", "File Sharing & Hosting", 12000000, 0.8, 190000000, false},
+{204, "att.com", "Phone Service Providers", 12000000, 0.8, 890000000, true},
+{205, "cnxad.com", "", 11000000, 0.7, 60000000, true},
+{206, "liveperson.net", "Customer Relationship Management (CRM)", 11000000, 0.7, 110000000, false},
+{207, "soufun.com", "Real Estate", 11000000, 0.7, 370000000, true},
+{208, "peeplo.com", "Search Engines", 11000000, 0.7, 73000000, true},
+{209, "gmarket.co.kr", "Shopping", 11000000, 0.7, 450000000, true},
+{210, "chosun.com", "Newspapers", 11000000, 0.7, 210000000, true},
+{211, "dailymail.co.uk", "Newspapers", 11000000, 0.7, 340000000, true},
+{212, "wellsfargo.com", "Banking", 11000000, 0.7, 1400000000, true},
+{213, "douban.com", "Social Networks", 11000000, 0.7, 310000000, true},
+{214, "sparkstudios.com", "Marketing Services", 11000000, 0.7, 60000000, true},
+{215, "windowslivehelp.com", "Email & Messaging", 11000000, 0.7, 130000000, false},
+{216, "onet.pl", "Web Portals", 11000000, 0.7, 3300000000, true},
+{217, "mainichi.jp", "Newspapers", 11000000, 0.7, 98000000, true},
+{218, "nhk.or.jp", "TV Networks & Stations", 11000000, 0.7, 160000000, false},
+{219, "comcast.net", "Web Portals", 11000000, 0.7, 3400000000, true},
+{220, "tripadvisor.com", "Travel", 11000000, 0.7, 310000000, true},
+{221, "libero.it", "Web Portals", 11000000, 0.7, 1400000000, true},
+{222, "kaixin001.com", "Social Networks", 11000000, 0.7, 1400000000, true},
+{223, "alexa.com", "Advertising & Marketing", 11000000, 0.7, 1100000000, true},
+{224, "netlog.com", "Social Networks", 11000000, 0.7, 1400000000, true},
+{225, "reuters.com", "News", 11000000, 0.7, 210000000, true},
+{226, "letv.com", "TV Networks & Stations", 11000000, 0.7, 140000000, true},
+{227, "t-online.de", "Web Portals", 11000000, 0.7, 880000000, true},
+{228, "jiayuan.com", "Dating & Personals", 11000000, 0.7, 650000000, true},
+{229, "hubpages.com", "Investing", 11000000, 0.7, 110000000, true},
+{230, "maktoob.com", "Web Portals", 11000000, 0.7, 370000000, true},
+{231, "mcafee.com", "Antivirus & Malware", 11000000, 0.7, 140000000, true},
+{232, "tabelog.com", "Dining Guides", 11000000, 0.7, 230000000, true},
+{233, "pomoho.com", "Online Video", 11000000, 0.7, 130000000, true},
+{234, "web.de", "Web Portals", 11000000, 0.7, 2100000000, true},
+{235, "autohome.com.cn", "Vehicle Shopping", 11000000, 0.7, 1300000000, true},
+{236, "china.com", "Web Portals", 11000000, 0.7, 800000000, true},
+{237, "hexun.com", "Investing", 10000000, 0.6, 180000000, true},
+{238, "japanpost.jp", "Mail & Package Delivery", 10000000, 0.6, 230000000, false},
+{239, "nextag.com", "Shopping", 10000000, 0.6, 160000000, true},
+{240, "tagged.com", "Social Networks", 10000000, 0.6, 3900000000, true},
+{241, "multiply.com", "Photo & Image Sharing", 10000000, 0.6, 210000000, true},
+{242, "marketgid.com", "Shopping Portals & Search Engines", 10000000, 0.6, 160000000, true},
+{243, "wp.pl", "", 10000000, 0.6, 2300000000, true},
+{244, "ieaddons.com", "Online Goodies", 10000000, 0.6, 55000000, true},
+{245, "softpedia.com", "Software", 10000000, 0.6, 97000000, true},
+{246, "ju51.com", "Lighting", 9900000, 0.6, 67000000, true},
+{247, "jiji.com", "News", 9900000, 0.6, 120000000, true},
+{248, "sanspo.com", "Sports News", 9900000, 0.6, 160000000, true},
+{249, "gmx.net", "Web Portals", 9900000, 0.6, 950000000, true},
+{250, "overture.com", "Advertising & Marketing", 9900000, 0.6, 120000000, true},
+{251, "docin.com", "Advertising & Marketing", 9900000, 0.6, 88000000, true},
+{252, "allegro.pl", "Auctions", 9900000, 0.6, 4400000000, true},
+{253, "foxnews.com", "Broadcast & Network News", 9900000, 0.6, 790000000, true},
+{254, "nikkeibp.co.jp", "Business News", 9900000, 0.6, 140000000, true},
+{255, "39.net", "Health", 9900000, 0.6, 190000000, true},
+{256, "huffingtonpost.com", "News", 9900000, 0.6, 500000000, true},
+{257, "wan5d.com", "Computer & Video Games", 9900000, 0.6, 51000000, false},
+{258, "naqigs.com", "", 9900000, 0.6, 45000000, false},
+{259, "imesh.com", "Music Streams & Downloads", 9900000, 0.6, 130000000, false},
+{260, "yz.szgla.com", "Computer & Video Games", 9900000, 0.6, 46000000, false},
+{261, "ups.com", "Mail & Package Delivery", 9900000, 0.6, 310000000, true},
+{262, "iza.ne.jp", "News", 9900000, 0.6, 88000000, true},
+{263, "allrecipes.com", "Cooking & Recipes", 9900000, 0.6, 370000000, true},
+{264, "wikia.com", "Online Communities", 9900000, 0.6, 410000000, true},
+{265, "rediff.com", "Web Portals", 9900000, 0.6, 1300000000, true},
+{266, "sponichi.co.jp", "Sports News", 9900000, 0.6, 160000000, true},
+{267, "glispa.com", "Search Engine Optimization & Marketing", 9900000, 0.6, 49000000, false},
+{268, "gnavi.co.jp", "Dining Guides", 9800000, 0.6, 210000000, true},
+{269, "expedia.com", "Travel", 9800000, 0.6, 450000000, true},
+{270, "sdo.com", "Online Games", 9800000, 0.6, 170000000, true},
+{271, "verizonwireless.com", "Phone Service Providers", 9800000, 0.6, 800000000, true},
+{272, "real.com", "Media Players", 9800000, 0.6, 80000000, true},
+{273, "51.com", "Social Networks", 9800000, 0.6, 1100000000, true},
+{274, "impress.co.jp", "Computers & Electronics", 9800000, 0.6, 160000000, true},
+{275, "twitpic.com", "Online Communities", 9800000, 0.6, 190000000, true},
+{276, "samsung.com", "Consumer Electronics", 9800000, 0.6, 190000000, true},
+{277, "torrentz.com", "File Sharing & Hosting", 9700000, 0.6, 340000000, true},
+{278, "360buy.com", "E-Commerce Services", 9700000, 0.6, 300000000, true},
+{279, "traviangames.com", "Online Games", 9100000, 0.6, 37000000, true},
+{280, "nikkansports.com", "Sports News", 9100000, 0.6, 130000000, true},
+{281, "iminent.com", "Clip Art & Animated GIFs", 9100000, 0.6, 590000000, true},
+{282, "ning.com", "Web Design & Development", 9100000, 0.6, 310000000, true},
+{283, "51wan.com", "Massive Multiplayer", 9100000, 0.6, 50000000, true},
+{284, "wretch.cc", "Online Journals & Personal Sites", 9100000, 0.6, 2500000000, true},
+{285, "typepad.com", "Blogging Resources & Services", 9100000, 0.6, 120000000, true},
+{286, "bizrate.com", "Apparel", 9100000, 0.6, 120000000, true},
+{287, "auction.co.kr", "Price Comparisons", 9100000, 0.6, 310000000, true},
+{288, "wordreference.com", "", 9000000, 0.6, 250000000, true},
+{289, "duowan.com", "Online Games", 9000000, 0.6, 300000000, true},
+{290, "asahi.com", "News", 9000000, 0.6, 190000000, true},
+{291, "dangdang.com", "Book Retailers", 9000000, 0.6, 280000000, true},
+{292, "letitbit.net", "File Sharing & Hosting", 9000000, 0.6, 190000000, true},
+{293, "musica.com", "Music & Audio", 9000000, 0.6, 250000000, true},
+{294, "shoplocal.com", "Shopping Portals & Search Engines", 9000000, 0.6, 140000000, true},
+{295, "jcpenney.com", "Mass Merchants & Department Stores", 9000000, 0.6, 800000000, true},
+{296, "tenpay.com", "Merchant Services & Payment Systems", 9000000, 0.6, 230000000, false},
+{297, "hulu.com", "Online Video", 9000000, 0.6, 590000000, true},
+{298, "guardian.co.uk", "Newspapers", 9000000, 0.6, 190000000, true},
+{299, "nba.com", "Basketball", 9000000, 0.6, 340000000, true},
+{300, "verycd.com", "File Sharing & Hosting", 9000000, 0.6, 170000000, true},
+{301, "shopping.com", "Price Comparisons", 9000000, 0.6, 88000000, true},
+{302, "funshion.com", "Movies", 9000000, 0.6, 97000000, true},
+{303, "virgilio.it", "Web Portals", 9000000, 0.6, 540000000, true},
+{304, "360doc.com", "Social Sciences", 9000000, 0.6, 88000000, true},
+{305, "118114.cn", "Web Portals", 9000000, 0.6, 81000000, true},
+{306, "17173.com", "Roleplaying Games", 9000000, 0.6, 280000000, true},
+{307, "over-blog.com", "Blogging Resources & Services", 8900000, 0.6, 210000000, true},
+{308, "ziddu.com", "Photo & Video Sharing", 8900000, 0.6, 80000000, true},
+{309, "macys.com", "Mass Merchants & Department Stores", 8900000, 0.6, 870000000, true},
+{310, "sears.com", "Mass Merchants & Department Stores", 8900000, 0.6, 450000000, true},
+{311, "deviantart.com", "Photographic & Digital Arts", 8900000, 0.6, 950000000, true},
+{312, "duba.net", "Antivirus & Malware", 8900000, 0.6, 81000000, true},
+{313, "leboncoin.fr", "Classifieds", 8800000, 0.6, 4900000000, true},
+{314, "ganji.com", "Shopping Portals & Search Engines", 8800000, 0.6, 410000000, true},
+{315, "washingtonpost.com", "Newspapers", 8300000, 0.5, 230000000, true},
+{316, "robtex.com", "", 8300000, 0.5, 41000000, true},
+{317, "mapion.co.jp", "Maps", 8300000, 0.5, 61000000, true},
+{318, "in.com", "Web Portals", 8300000, 0.5, 130000000, true},
+{319, "ucoz.ru", "Web Design & Development", 8300000, 0.5, 190000000, true},
+{320, "usps.com", "Mail & Package Delivery", 8300000, 0.5, 340000000, true},
+{321, "isohunt.com", "Search Engines", 8200000, 0.5, 330000000, true},
+{322, "webry.info", "Military", 8200000, 0.5, 49000000, true},
+{323, "bitauto.com", "Autos & Vehicles", 8200000, 0.5, 540000000, true},
+{324, "oricon.co.jp", "Music & Audio", 8200000, 0.5, 74000000, true},
+{325, "toysrus.com", "Toys", 8200000, 0.5, 660000000, true},
+{326, "11st.co.kr", "Home Financing", 8200000, 0.5, 170000000, true},
+{327, "mt.co.kr", "Investing", 8200000, 0.5, 45000000, true},
+{328, "metrolyrics.com", "Music & Audio", 8200000, 0.5, 73000000, true},
+{329, "microsofttranslator.com", "Translation Tools & Resources", 8200000, 0.5, 110000000, true},
+{330, "surveymonkey.com", "Web Apps & Online Tools", 8200000, 0.5, 170000000, false},
+{331, "monografias.com", "Web Portals", 8200000, 0.5, 80000000, true},
+{332, "dtiblog.com", "Blogging Resources & Services", 8200000, 0.5, 160000000, true},
+{333, "27.cn", "Beauty & Fitness", 8200000, 0.5, 400000000, true},
+{334, "chinanews.com.cn", "News", 8200000, 0.5, 230000000, true},
+{335, "comcast.com", "Service Providers", 8200000, 0.5, 170000000, true},
+{336, "m18.com", "Apparel", 8200000, 0.5, 190000000, false},
+{337, "tom.com", "News", 8200000, 0.5, 370000000, true},
+{338, "indiatimes.com", "Newspapers", 8100000, 0.5, 310000000, true},
+{339, "huanqiu.com", "News", 8100000, 0.5, 370000000, true},
+{340, "squidoo.com", "Web Services", 8100000, 0.5, 96000000, true},
+{341, "rincondelvago.com", "Education", 8100000, 0.5, 80000000, true},
+{342, "avast.com", "", 8100000, 0.5, 74000000, false},
+{343, "icq.com", "Forum & Chat Providers", 8100000, 0.5, 250000000, true},
+{344, "tinyurl.com", "Web Services", 8100000, 0.5, 60000000, true},
+{345, "usenet.nl", "File Sharing & Hosting", 8100000, 0.5, 90000000, false},
+{346, "tinypic.com", "Photo & Video Sharing", 8100000, 0.5, 80000000, true},
+{347, "kuwo.cn", "Game Cheats & Hints", 8000000, 0.5, 97000000, false},
+{348, "gamespot.com", "Computer & Video Games", 7600000, 0.5, 160000000, true},
+{349, "torrentdownloads.net", "File Sharing & Hosting", 7500000, 0.5, 67000000, true},
+{350, "amazon.cn", "Shopping Portals & Search Engines", 7500000, 0.5, 160000000, false},
+{351, "foodnetwork.com", "Cooking & Recipes", 7500000, 0.5, 310000000, true},
+{352, "baixaki.com.br", "Internet & Telecom", 7500000, 0.5, 450000000, true},
+{353, "ccb.com.cn", "Banking", 7500000, 0.5, 190000000, false},
+{354, "liveinternet.ru", "Web Portals", 7500000, 0.5, 380000000, true},
+{355, "liutilities.com", "Software Utilities", 7500000, 0.5, 31000000, false},
+{356, "plala.or.jp", "ISPs", 7500000, 0.5, 74000000, true},
+{357, "hankooki.com", "Business & Industrial", 7400000, 0.5, 61000000, true},
+{358, "01net.com", "Technology News", 7400000, 0.5, 190000000, true},
+{359, "indeed.com", "Jobs", 7400000, 0.5, 410000000, true},
+{360, "groupon.com", "Coupons & Discount Offers", 7400000, 0.5, 160000000, true},
+{361, "hotpepper.jp", "Dining Guides", 7400000, 0.5, 130000000, true},
+{362, "bild.de", "News", 7400000, 0.5, 450000000, true},
+{363, "pandora.tv", "Arts & Entertainment", 7400000, 0.5, 81000000, true},
+{364, "unkar.org", "Forum & Chat Providers", 7400000, 0.5, 21000000, true},
+{365, "cookpad.com", "Cooking & Recipes", 7400000, 0.5, 330000000, true},
+{366, "gap.com", "Apparel", 7400000, 0.5, 590000000, true},
+{367, "nokia.com", "Mobile Phones", 7400000, 0.5, 130000000, true},
+{368, "fedex.com", "Mail & Package Delivery", 7400000, 0.5, 270000000, true},
+{369, "informer.com", "Web Design & Development", 7400000, 0.5, 55000000, true},
+{370, "nfl.com", "American Football", 7400000, 0.5, 590000000, true},
+{371, "telegraph.co.uk", "Newspapers", 7400000, 0.5, 190000000, true},
+{372, "beemp3.com", "Music Streams & Downloads", 7400000, 0.5, 140000000, false},
+{373, "capitalone.com", "Credit Cards", 7400000, 0.5, 550000000, true},
+{374, "opera.com", "Internet Clients & Browsers", 7400000, 0.5, 55000000, true},
+{375, "yelp.com", "Directories & Listings", 7400000, 0.5, 170000000, true},
+{376, "vnet.cn", "Web Portals", 7400000, 0.5, 65000000, true},
+{377, "justin.tv", "Online Video", 7400000, 0.5, 500000000, true},
+{378, "aweber.com", "Forms Guides & Templates", 7400000, 0.5, 130000000, true},
+{379, "atwiki.jp", "Web Hosting & Domain Registration", 7400000, 0.5, 210000000, true},
+{380, "linternaute.com", "Magazines", 7400000, 0.5, 410000000, true},
+{381, "chip.de", "Computers & Electronics", 7400000, 0.5, 160000000, true},
+{382, "kohls.com", "Apparel", 7400000, 0.5, 1100000000, true},
+{383, "pandora.com", "Radio", 7400000, 0.5, 1400000000, true},
+{384, "godaddy.com", "Web Hosting & Domain Registration", 7300000, 0.5, 370000000, true},
+{385, "vector.co.jp", "Internet Clients & Browsers", 7300000, 0.5, 72000000, true},
+{386, "teacup.com", "Forum & Chat Providers", 7300000, 0.5, 88000000, true},
+{387, "overstock.com", "Mass Merchants & Department Stores", 7300000, 0.5, 450000000, true},
+{388, "match.com", "Dating & Personals", 7300000, 0.5, 1300000000, true},
+{389, "pagesjaunes.fr", "Business & Personal Listings", 7300000, 0.5, 310000000, true},
+{390, "buzzle.com", "Web Portals", 6900000, 0.4, 45000000, true},
+{391, "mercadolivre.com.br", "Auctions", 6900000, 0.4, 790000000, true},
+{392, "sbs.co.kr", "Arts & Entertainment", 6900000, 0.4, 56000000, true},
+{393, "last.fm", "Music Streams & Downloads", 6900000, 0.4, 120000000, true},
+{394, "constantcontact.com", "Email & Messaging", 6900000, 0.4, 310000000, true},
+{395, "incredimail.com", "Email & Messaging", 6900000, 0.4, 260000000, true},
+{396, "veoh.com", "Online Video", 6800000, 0.4, 80000000, true},
+{397, "shinobi.jp", "Web Stats & Analytics", 6800000, 0.4, 74000000, true},
+{398, "gutefrage.net", "Educational Resources", 6800000, 0.4, 73000000, true},
+{399, "pcpop.com", "Search Engines", 6800000, 0.4, 130000000, true},
+{400, "careerbuilder.com", "Job Listings", 6800000, 0.4, 370000000, true},
+{401, "alice.it", "News", 6800000, 0.4, 300000000, true},
+{402, "zimbio.com", "Celebrities & Entertainment News", 6800000, 0.4, 120000000, true},
+{403, "sweetim.com", "Clip Art & Animated GIFs", 6800000, 0.4, 160000000, true},
+{404, "ibm.com", "Computers & Electronics", 6800000, 0.4, 210000000, true},
+{405, "sonico.com", "Social Networks", 6800000, 0.4, 490000000, true},
+{406, "21cn.com", "Web Portals", 6800000, 0.4, 59000000, true},
+{407, "pixnet.net", "Online Journals & Personal Sites", 6800000, 0.4, 160000000, true},
+{408, "naver.jp", "Search Engines", 6800000, 0.4, 66000000, true},
+{409, "intel.com", "Chips & Processors", 6800000, 0.4, 88000000, false},
+{410, "wikimapia.org", "Maps", 6800000, 0.4, 230000000, true},
+{411, "qidian.com", "Fan Fiction", 6800000, 0.4, 410000000, true},
+{412, "homedepot.com", "Home Improvement", 6800000, 0.4, 340000000, false},
+{413, "pingan.com", "Insurance", 6800000, 0.4, 45000000, false},
+{414, "95599.cn", "Banking", 6800000, 0.4, 190000000, false},
+{415, "ign.com", "Computer & Video Games", 6800000, 0.4, 190000000, true},
+{416, "jalan.net", "Hotels & Accommodations", 6800000, 0.4, 250000000, true},
+{417, "donga.com", "Newspapers", 6800000, 0.4, 61000000, true},
+{418, "filehippo.com", "File Sharing & Hosting", 6800000, 0.4, 90000000, true},
+{419, "blackberry.com", "Smart Phones", 6800000, 0.4, 190000000, true},
+{420, "alisoft.com", "Internet & Telecom", 6700000, 0.4, 55000000, false},
+{421, "sfr.fr", "Mobile & Wireless", 6700000, 0.4, 1200000000, true},
+{422, "laredoute.fr", "Apparel", 6700000, 0.4, 370000000, true},
+{423, "repubblica.it", "Politics", 6700000, 0.4, 490000000, true},
+{424, "southwest.com", "Air Travel", 6700000, 0.4, 300000000, true},
+{425, "ynet.com", "News", 6700000, 0.4, 340000000, true},
+{426, "onlinedown.net", "Software", 6700000, 0.4, 46000000, true},
+{427, "mylife.com", "People Search", 6700000, 0.4, 110000000, true},
+{428, "game2.cn", "Casual Games", 6700000, 0.4, 37000000, false},
+{429, "yellowpages.com", "Business & Personal Listings", 6700000, 0.4, 120000000, true},
+{430, "kaskus.us", "Indonesia", 6700000, 0.4, 260000000, true},
+{431, "evite.com", "Gifts & Special Event Items", 6700000, 0.4, 250000000, true},
+{432, "m1905.com", "TV Networks & Stations", 6700000, 0.4, 140000000, false},
+{433, "duote.com", "Software", 6700000, 0.4, 74000000, true},
+{434, "opendns.com", "Network Security", 6700000, 0.4, 130000000, true},
+{435, "webmd.com", "Medical Literature & Resources", 6700000, 0.4, 140000000, true},
+{436, "itmedia.co.jp", "Technology News", 6700000, 0.4, 59000000, true},
+{437, "pcauto.com.cn", "Vehicle Shopping", 6700000, 0.4, 490000000, true},
+{438, "oyunlar1.com", "Online Games", 6700000, 0.4, 720000000, true},
+{439, "iefxz.com", "Software Utilities", 6700000, 0.4, 46000000, false},
+{440, "yaplog.jp", "Blogging Resources & Services", 6700000, 0.4, 66000000, true},
+{441, "gyyx.cn", "Online Games", 6700000, 0.4, 66000000, false},
+{442, "whitepages.com", "Search Engines", 6700000, 0.4, 190000000, true},
+{443, "kuaibo.com", "Search Engines", 6700000, 0.4, 160000000, true},
+{444, "y8.com", "Flash-Based Entertainment", 6700000, 0.4, 870000000, true},
+{445, "digg.com", "Online Communities", 6600000, 0.4, 88000000, true},
+{446, "webs.com", "Web Design & Development", 6600000, 0.4, 210000000, true},
+{447, "tiexue.net", "Military", 6200000, 0.4, 170000000, true},
+{448, "ourtoolbar.com", "Web Apps & Online Tools", 6200000, 0.4, 31000000, true},
+{449, "115.com", "Search Engines", 6200000, 0.4, 67000000, true},
+{450, "otto.de", "Mass Merchants & Department Stores", 6200000, 0.4, 450000000, false},
+{451, "camzap.com", "Webcams & Virtual Tours", 6200000, 0.4, 31000000, false},
+{452, "domaintools.com", "Web Hosting & Domain Registration", 6200000, 0.4, 55000000, true},
+{453, "acer.com", "Desktops", 6200000, 0.4, 120000000, false},
+{454, "pchome.net", "Computers & Electronics", 6200000, 0.4, 67000000, true},
+{455, "symantec.com", "Antivirus & Malware", 6200000, 0.4, 67000000, false},
+{456, "51job.com", "Jobs", 6200000, 0.4, 230000000, true},
+{457, "latimes.com", "Newspapers", 6200000, 0.4, 96000000, true},
+{458, "aufeminin.com", "Women's Interests", 6200000, 0.4, 170000000, true},
+{459, "mobile.de", "Vehicle Shopping", 6200000, 0.4, 1300000000, true},
+{460, "engadget.com", "Consumer Electronics", 6200000, 0.4, 72000000, true},
+{461, "associatedcontent.com", "General Reference", 6200000, 0.4, 67000000, true},
+{462, "yezizhu.com", "Online Games", 6200000, 0.4, 67000000, true},
+{463, "filesonic.com", "File Sharing & Hosting", 6200000, 0.4, 73000000, false},
+{464, "wiktionary.org", "Dictionaries & Encyclopedias", 6200000, 0.4, 41000000, false},
+{465, "usatoday.com", "Newspapers", 6200000, 0.4, 210000000, true},
+{466, "61.com", "Children", 6200000, 0.4, 120000000, true},
+{467, "vnexpress.net", "News", 6200000, 0.4, 540000000, true},
+{468, "daily.co.jp", "Newspapers", 6100000, 0.4, 38000000, true},
+{469, "ct10000.com", "Phone Service Providers", 6100000, 0.4, 130000000, true},
+{470, "clubpenguin.com", "Virtual Worlds", 6100000, 0.4, 270000000, false},
+{471, "amazon.fr", "Shopping Portals & Search Engines", 6100000, 0.4, 330000000, false},
+{472, "tu.tv", "Online Video", 6100000, 0.4, 110000000, true},
+{473, "speedtest.net", "Web Apps & Online Tools", 6100000, 0.4, 38000000, true},
+{474, "armorgames.com", "Online Games", 6100000, 0.4, 130000000, true},
+{475, "wordpress.org", "Blogging Resources & Services", 6100000, 0.4, 120000000, false},
+{476, "ip138.com", "Directories & Listings", 6100000, 0.4, 49000000, true},
+{477, "interia.pl", "Web Portals", 6100000, 0.4, 720000000, true},
+{478, "detik.com", "Web Portals", 6100000, 0.4, 67000000, true},
+{479, "docstoc.com", "", 6100000, 0.4, 31000000, true},
+{480, "costco.com", "Mass Merchants & Department Stores", 6100000, 0.4, 280000000, false},
+{481, "skyrock.com", "Social Networks", 6100000, 0.4, 970000000, true},
+{482, "logsoku.com", "Online Communities", 6100000, 0.4, 24000000, true},
+{483, "avira.com", "Antivirus & Malware", 6100000, 0.4, 38000000, false},
+{484, "cnzz.com", "Web Stats & Analytics", 6100000, 0.4, 210000000, true},
+{485, "picnik.com", "Photographic & Digital Arts", 6100000, 0.4, 890000000, true},
+{486, "fanbox.com", "MLM & Business Opportunities", 6100000, 0.4, 42000000, true},
+{487, "ustream.tv", "Online Video", 6100000, 0.4, 81000000, true},
+{488, "formspring.me", "Social Networks", 6100000, 0.4, 710000000, false},
+{489, "weather.com.cn", "Weather", 6100000, 0.4, 60000000, true},
+{490, "rutracker.org", "", 6100000, 0.4, 440000000, true},
+{491, "suite101.com", "Business & Industrial", 6100000, 0.4, 42000000, true},
+{492, "weblio.jp", "Dictionaries & Encyclopedias", 6100000, 0.4, 31000000, true},
+{493, "wanmei.com", "Vision Care", 6000000, 0.4, 89000000, false},
+{494, "baofeng.com", "Media Players", 5700000, 0.4, 34000000, true},
+{495, "kickasstorrents.com", "File Sharing & Hosting", 5700000, 0.4, 170000000, false},
+{496, "ebuddy.com", "Email & Messaging", 5700000, 0.4, 280000000, true},
+{497, "hotels.com", "Hotels & Accommodations", 5700000, 0.4, 130000000, true},
+{498, "imvu.com", "Social Networks", 5700000, 0.4, 190000000, true},
+{499, "zylom.com", "Online Games", 5700000, 0.4, 210000000, true},
+{500, "cmbchina.com", "Banking", 5600000, 0.4, 96000000, true},
+{501, "bloomberg.com", "Commodities & Futures Trading", 5600000, 0.4, 210000000, true},
+{502, "rr.com", "Web Portals", 5600000, 0.4, 720000000, true},
+{503, "yam.com", "Web Portals", 5600000, 0.4, 210000000, true},
+{504, "junyilm.com", "", 5600000, 0.4, 34000000, false},
+{505, "fresheye.com", "Web Portals", 5600000, 0.4, 34000000, true},
+{506, "pchome.com.tw", "Web Portals", 5600000, 0.4, 380000000, true},
+{507, "asiae.co.kr", "Movies", 5600000, 0.4, 61000000, true},
+{508, "hc360.com", "E-Commerce Services", 5600000, 0.4, 110000000, true},
+{509, "verizon.com", "Service Providers", 5600000, 0.4, 800000000, true},
+{510, "groupalia.com", "Hotels & Accommodations", 5600000, 0.4, 50000000, false},
+{511, "114la.com", "Directories & Listings", 5600000, 0.4, 160000000, true},
+{512, "yandex.ua", "Search Engines", 5600000, 0.4, 450000000, true},
+{513, "argos.co.uk", "Mass Merchants & Department Stores", 5600000, 0.4, 370000000, true},
+{514, "tbs.co.jp", "TV Networks & Stations", 5600000, 0.4, 73000000, true},
+{515, "juegos.com", "Online Games", 5600000, 0.4, 410000000, true},
+{516, "gazeta.pl", "Newspapers", 5600000, 0.4, 370000000, true},
+{517, "zhaopin.com", "Job Listings", 5600000, 0.4, 210000000, true},
+{518, "elmundo.es", "Newspapers", 5600000, 0.4, 230000000, true},
+{519, "4055.com", "", 5600000, 0.4, 28000000, true},
+{520, "archive.org", "General Reference", 5600000, 0.4, 120000000, true},
+{521, "passport.net", "Email & Messaging", 5600000, 0.4, 81000000, true},
+{522, "runup.cn", "Computer & Video Games", 5600000, 0.4, 23000000, false},
+{523, "shop-pro.jp", "E-Commerce Services", 5600000, 0.4, 160000000, true},
+{524, "panasonic.jp", "Computers & Electronics", 5600000, 0.4, 89000000, false},
+{525, "cctv.com", "TV & Video", 5600000, 0.4, 41000000, true},
+{526, "usagc.org", "Visa & Immigration", 5600000, 0.4, 31000000, true},
+{527, "jrj.com.cn", "Investing", 5600000, 0.4, 130000000, true},
+{528, "seznam.cz", "Web Portals", 5600000, 0.4, 2100000000, true},
+{529, "yesky.com", "Computers & Electronics", 5600000, 0.4, 67000000, true},
+{530, "csdn.net", "Computers & Electronics", 5600000, 0.4, 79000000, true},
+{531, "91.com", "Flash-Based Entertainment", 5600000, 0.4, 96000000, true},
+{532, "xe.com", "Travel", 5600000, 0.4, 110000000, true},
+{533, "qip.ru", "Web Portals", 5600000, 0.4, 210000000, true},
+{534, "myvideo.de", "Online Video", 5600000, 0.4, 140000000, true},
+{535, "yfrog.com", "", 5600000, 0.4, 81000000, true},
+{536, "spiegel.de", "Newspapers", 5600000, 0.4, 370000000, true},
+{537, "hm.com", "Apparel", 5600000, 0.4, 450000000, false},
+{538, "abcnews.go.com", "Broadcast & Network News", 5600000, 0.4, 120000000, false},
+{539, "1ting.com", "Music & Audio", 5600000, 0.4, 120000000, true},
+{540, "lowes.com", "Home Improvement", 5600000, 0.4, 310000000, true},
+{541, "zuixiaoyao.com", "Face & Body Care", 5600000, 0.4, 38000000, true},
+{542, "interpark.com", "Shopping", 5600000, 0.4, 89000000, false},
+{543, "nikkei.com", "Business News", 5600000, 0.4, 130000000, true},
+{544, "corriere.it", "Newspapers", 5600000, 0.4, 370000000, true},
+{545, "people.com", "Celebrities & Entertainment News", 5600000, 0.4, 600000000, true},
+{546, "wikihow.com", "How-To", 5600000, 0.4, 37000000, true},
+{547, "dropbox.com", "File Sharing & Hosting", 5600000, 0.4, 190000000, false},
+{548, "monster.com", "Jobs", 5500000, 0.4, 260000000, true},
+{549, "partypoker.it", "Games", 5500000, 0.4, 41000000, true},
+{550, "mynet.com", "Web Portals", 5500000, 0.4, 1100000000, true},
+{551, "ig.com.br", "Web Portals", 5500000, 0.4, 970000000, true},
+{552, "dantri.com.vn", "People & Society", 5500000, 0.4, 330000000, true},
+{553, "dianping.com", "Dining Guides", 5500000, 0.4, 72000000, true},
+{554, "it168.com", "Computers & Electronics", 5500000, 0.4, 61000000, true},
+{555, "wunderground.com", "Weather", 5500000, 0.4, 210000000, true},
+{556, "v1.cn", "", 5500000, 0.4, 45000000, true},
+{557, "freeonlinegames.com", "Casual Games", 5500000, 0.4, 120000000, true},
+{558, "huangjinquxian.com", "", 5500000, 0.4, 16000000, false},
+{559, "barnesandnoble.com", "Book Retailers", 5500000, 0.4, 280000000, true},
+{560, "univision.com", "Web Portals", 5500000, 0.4, 280000000, true},
+{561, "fixya.com", "Consumer Affairs & Product Reviews", 5500000, 0.4, 50000000, true},
+{562, "ovi.com", "Mobile Apps & Add-Ons", 5200000, 0.3, 190000000, false},
+{563, "pixmania.com", "Consumer Electronics", 5200000, 0.3, 140000000, true},
+{564, "mtv.com", "Music & Audio", 5200000, 0.3, 97000000, true},
+{565, "ea.com", "Computer & Video Games", 5200000, 0.3, 140000000, true},
+{566, "pc120.com", "Antivirus & Malware", 5200000, 0.3, 38000000, false},
+{567, "me.com", "Mobile Apps & Add-Ons", 5200000, 0.3, 210000000, true},
+{568, "sprint.com", "Mobile & Wireless", 5200000, 0.3, 340000000, true},
+{569, "xbox.com", "Xbox", 5200000, 0.3, 210000000, true},
+{570, "seoul.co.kr", "Law & Government", 5100000, 0.3, 16000000, true},
+{571, "pogo.com", "Casual Games", 5100000, 0.3, 1100000000, true},
+{572, "cbsnews.com", "News", 5100000, 0.3, 89000000, true},
+{573, "samsungmobile.com", "Mobile Phones", 5100000, 0.3, 45000000, true},
+{574, "utorrent.com", "Multimedia Software", 5100000, 0.3, 51000000, false},
+{575, "blogcu.com", "Blogging Resources & Services", 5100000, 0.3, 81000000, true},
+{576, "wn.com", "World News", 5100000, 0.3, 23000000, true},
+{577, "partypoker.fr", "", 5100000, 0.3, 55000000, true},
+{578, "mufg.jp", "Banking", 5100000, 0.3, 170000000, false},
+{579, "rutube.ru", "Video Sharing", 5100000, 0.3, 67000000, true},
+{580, "52pk.com", "Online Games", 5100000, 0.3, 120000000, true},
+{581, "tuenti.com", "Social Networks", 5100000, 0.3, 8400000000, false},
+{582, "acrobat.com", "Business & Productivity Software", 5100000, 0.3, 61000000, true},
+{583, "ticketmaster.com", "Ticket Sales", 5100000, 0.3, 250000000, true},
+{584, "europa.eu", "Multilateral Organizations", 5100000, 0.3, 130000000, false},
+{585, "forbes.com", "Business News", 5100000, 0.3, 130000000, true},
+{586, "manta.com", "Business & Industrial", 5100000, 0.3, 50000000, true},
+{587, "foxtab.com", "Internet Clients & Browsers", 5100000, 0.3, 19000000, true},
+{588, "winamp.com", "Media Players", 5100000, 0.3, 55000000, true},
+{589, "ryanair.com", "Air Travel", 5100000, 0.3, 88000000, true},
+{590, "sanook.com", "Web Portals", 5100000, 0.3, 310000000, true},
+{591, "ya.ru", "Search Engines", 5100000, 0.3, 130000000, true},
+{592, "break.com", "Humor", 5100000, 0.3, 110000000, true},
+{593, "unionsky.cn", "MLM & Business Opportunities", 5100000, 0.3, 37000000, false},
+{594, "mp3raid.com", "Music Streams & Downloads", 5100000, 0.3, 80000000, true},
+{595, "ccbill.com", "Merchant Services & Payment Systems", 5100000, 0.3, 42000000, false},
+{596, "ninemsn.com.au", "Celebrities & Entertainment News", 5100000, 0.3, 370000000, true},
+{597, "sony.jp", "Computers & Electronics", 5100000, 0.3, 80000000, true},
+{598, "agame.com", "Computer & Video Games", 5100000, 0.3, 190000000, true},
+{599, "zappos.com", "Apparel", 5100000, 0.3, 300000000, false},
+{600, "sapo.pt", "Web Portals", 5100000, 0.3, 400000000, true},
+{601, "addictinggames.com", "Online Games", 5100000, 0.3, 210000000, true},
+{602, "thefind.com", "Shopping Portals & Search Engines", 5100000, 0.3, 81000000, true},
+{603, "mercadolibre.com.mx", "Classifieds", 5100000, 0.3, 360000000, true},
+{604, "zhcw.com", "", 5100000, 0.3, 89000000, true},
+{605, "wer-kennt-wen.de", "Social Networks", 5100000, 0.3, 3300000000, true},
+{606, "abril.com.br", "Web Portals", 5100000, 0.3, 300000000, true},
+{607, "computerbild.de", "Computers & Electronics", 5100000, 0.3, 140000000, true},
+{608, "windowsmedia.com", "Music & Audio", 5100000, 0.3, 26000000, true},
+{609, "kx365.com", "", 5100000, 0.3, 18000000, false},
+{610, "babycenter.com", "Baby Care", 5100000, 0.3, 210000000, true},
+{611, "zoosk.com", "Dating & Personals", 5100000, 0.3, 310000000, true},
+{612, "piriform.com", "Software Utilities", 5100000, 0.3, 46000000, true},
+{613, "doctissimo.fr", "Health", 5100000, 0.3, 160000000, true},
+{614, "sciencedirect.com", "Science", 5100000, 0.3, 89000000, true},
+{615, "nttdocomo.co.jp", "Mobile & Wireless", 5100000, 0.3, 120000000, false},
+{616, "china.com.cn", "Internet & Telecom", 5100000, 0.3, 60000000, true},
+{617, "atdhe.net", "Online Video", 5000000, 0.3, 210000000, true},
+{618, "radikal.ru", "Photo & Video Software", 5000000, 0.3, 74000000, true},
+{619, "livescore.com", "Team Sports", 5000000, 0.3, 600000000, true},
+{620, "kmart.com", "Mass Merchants & Department Stores", 5000000, 0.3, 250000000, true},
+{621, "citibank.com", "Finance", 5000000, 0.3, 300000000, true},
+{622, "123people.com", "People Search", 5000000, 0.3, 34000000, true},
+{623, "ebay.com.au", "Auctions", 5000000, 0.3, 1300000000, true},
+{624, "hyves.nl", "Social Networks", 5000000, 0.3, 4000000000, true},
+{625, "tesco.com", "Mass Merchants & Department Stores", 5000000, 0.3, 540000000, true},
+{626, "carview.co.jp", "Autos & Vehicles", 5000000, 0.3, 300000000, true},
+{627, "chinahr.com", "Jobs", 5000000, 0.3, 88000000, false},
+{628, "uploading.com", "File Sharing & Hosting", 5000000, 0.3, 60000000, true},
+{629, "friendster.com", "Social Networks", 5000000, 0.3, 230000000, true},
+{630, "47news.jp", "News", 5000000, 0.3, 25000000, true},
+{631, "nhaccuatui.com", "Viet Nam", 5000000, 0.3, 210000000, true},
+{632, "yoka.com", "Fashion & Style", 5000000, 0.3, 170000000, true},
+{633, "365ub.com", "Online Games", 5000000, 0.3, 28000000, false},
+{634, "etsy.com", "Crafts", 5000000, 0.3, 860000000, false},
+{635, "khan.co.kr", "Movies", 5000000, 0.3, 31000000, true},
+{636, "taleo.net", "Management", 5000000, 0.3, 370000000, true},
+{637, "ana.co.jp", "Air Travel", 4700000, 0.3, 160000000, false},
+{638, "wisegeek.com", "How-To", 4700000, 0.3, 28000000, true},
+{639, "goo.gl", "Web Services", 4700000, 0.3, 26000000, false},
+{640, "baixing.com", "Real Estate", 4700000, 0.3, 330000000, true},
+{641, "kompas.com", "Indonesia", 4700000, 0.3, 90000000, true},
+{642, "vatgia.com", "Shopping", 4700000, 0.3, 61000000, true},
+{643, "bbvod.net", "Movies", 4700000, 0.3, 38000000, true},
+{644, "2144.cn", "Online Games", 4700000, 0.3, 160000000, true},
+{645, "fc2web.com", "Web Hosting & Domain Registration", 4700000, 0.3, 31000000, true},
+{646, "udn.com", "News", 4700000, 0.3, 210000000, true},
+{647, "priceminister.com", "Shopping", 4700000, 0.3, 190000000, true},
+{648, "medicinenet.com", "Health Conditions", 4700000, 0.3, 96000000, true},
+{649, "gd118114.cn", "Web Services", 4700000, 0.3, 26000000, true},
+{650, "nike.com", "Athletic Apparel", 4700000, 0.3, 210000000, true},
+{651, "timeanddate.com", "Time & Calendars", 4700000, 0.3, 42000000, true},
+{652, "friv.com", "Online Games", 4700000, 0.3, 130000000, true},
+{653, "irctc.co.in", "Bus & Rail", 4700000, 0.3, 210000000, false},
+{654, "kuronekoyamato.co.jp", "Mail & Package Delivery", 4700000, 0.3, 66000000, false},
+{655, "newegg.com", "Hardware Components", 4700000, 0.3, 260000000, true},
+{656, "delta.com", "Air Travel", 4700000, 0.3, 370000000, true},
+{657, "worldslastchance.com", "Christianity", 4600000, 0.3, 13000000, true},
+{658, "immobilienscout24.de", "Real Estate Listings", 4600000, 0.3, 550000000, true},
+{659, "ytn.co.kr", "TV & Video", 4600000, 0.3, 16000000, true},
+{660, "xrea.com", "Web Hosting & Domain Registration", 4600000, 0.3, 50000000, true},
+{661, "livingsocial.com", "Coupons & Discount Offers", 4600000, 0.3, 61000000, true},
+{662, "stayfriends.de", "Social Networks", 4600000, 0.3, 190000000, true},
+{663, "5d6d.com", "Movies", 4600000, 0.3, 74000000, true},
+{664, "abc.go.com", "TV Shows & Programs", 4600000, 0.3, 210000000, false},
+{665, "nasa.gov", "Astronomy", 4600000, 0.3, 88000000, false},
+{666, "sonystyle.com", "Consumer Electronics", 4600000, 0.3, 80000000, true},
+{667, "boc.cn", "Currencies & Foreign Exchange", 4600000, 0.3, 120000000, false},
+{668, "kapook.com", "Web Portals", 4600000, 0.3, 96000000, true},
+{669, "quepasa.com", "Latinos & Latin-Americans", 4600000, 0.3, 170000000, true},
+{670, "qunar.com", "Air Travel", 4600000, 0.3, 67000000, true},
+{671, "xingkong.com", "People & Society", 4600000, 0.3, 24000000, false},
+{672, "lego.com", "Toys", 4600000, 0.3, 450000000, false},
+{673, "dealtime.com", "Shopping", 4600000, 0.3, 31000000, true},
+{674, "merriam-webster.com", "Dictionaries & Encyclopedias", 4600000, 0.3, 81000000, true},
+{675, "cri.cn", "News", 4600000, 0.3, 73000000, true},
+{676, "vietbao.vn", "Newspapers", 4600000, 0.3, 50000000, true},
+{677, "edaily.co.kr", "News", 4600000, 0.3, 14000000, true},
+{678, "blogmura.com", "Blogging Resources & Services", 4600000, 0.3, 96000000, true},
+{679, "linksynergy.com", "Affiliate Programs", 4600000, 0.3, 67000000, false},
+{680, "nydailynews.com", "Gossip & Tabloid News", 4600000, 0.3, 66000000, true},
+{681, "partycasino.com", "", 4600000, 0.3, 26000000, true},
+{682, "appspot.com", "Web Apps & Online Tools", 4600000, 0.3, 67000000, true},
+{683, "cdiscount.com", "Consumer Electronics", 4600000, 0.3, 330000000, true},
+{684, "causes.com", "Social Issues & Advocacy", 4600000, 0.3, 37000000, true},
+{685, "elpais.com", "Newspapers", 4600000, 0.3, 210000000, true},
+{686, "kapihospital.de", "Online Games", 4600000, 0.3, 67000000, false},
+{687, "52yeyou.com", "", 4600000, 0.3, 14000000, false},
+{688, "xuite.net", "Blogging Resources & Services", 4600000, 0.3, 87000000, true},
+{689, "t-mobile.com", "Mobile Phones", 4600000, 0.3, 300000000, true},
+{690, "staples.com", "Office Supplies", 4600000, 0.3, 160000000, true},
+{691, "kbs.co.kr", "TV & Video", 4600000, 0.3, 99000000, true},
+{692, "marca.com", "Sports News", 4600000, 0.3, 410000000, true},
+{693, "idealo.de", "Price Comparisons", 4600000, 0.3, 110000000, true},
+{694, "120ask.com", "Health Conditions", 4600000, 0.3, 37000000, true},
+{695, "tmz.com", "Celebrities & Entertainment News", 4600000, 0.3, 250000000, true},
+{696, "zshare.net", "File Sharing & Hosting", 4600000, 0.3, 50000000, true},
+{697, "mtime.com", "Movies", 4600000, 0.3, 82000000, true},
+{698, "hinet.net", "Web Portals", 4600000, 0.3, 210000000, true},
+{699, "made-in-china.com", "Business & Industrial", 4600000, 0.3, 67000000, true},
+{700, "mycom.co.jp", "Technology News", 4600000, 0.3, 26000000, true},
+{701, "articlesbase.com", "Business & Industrial", 4600000, 0.3, 34000000, true},
+{702, "ca.gov", "State & Local Government", 4600000, 0.3, 310000000, true},
+{703, "rian.ru", "Web Portals", 4600000, 0.3, 61000000, true},
+{704, "zaycev.net", "Music Streams & Downloads", 4600000, 0.3, 300000000, true},
+{705, "superpages.com", "Business & Personal Listings", 4600000, 0.3, 51000000, true},
+{706, "examiner.com", "News", 4600000, 0.3, 50000000, true},
+{707, "freakshare.com", "File Sharing & Hosting", 4600000, 0.3, 61000000, true},
+{708, "888.com", "", 4600000, 0.3, 23000000, true},
+{709, "focus.cn", "Dictionaries & Encyclopedias", 4600000, 0.3, 79000000, true},
+{710, "btjunkie.org", "File Sharing & Hosting", 4600000, 0.3, 230000000, true},
+{711, "stumbleupon.com", "Web Apps & Online Tools", 4600000, 0.3, 190000000, true},
+{712, "priceline.com", "Travel", 4600000, 0.3, 230000000, true},
+{713, "wachovia.com", "Banking", 4600000, 0.3, 540000000, true},
+{714, "with2.net", "Blogging Resources & Services", 4600000, 0.3, 81000000, true},
+{715, "rbc.ru", "Business News", 4600000, 0.3, 190000000, true},
+{716, "victoriassecret.com", "Undergarments", 4600000, 0.3, 540000000, true},
+{717, "wiley.com", "Books & Literature", 4600000, 0.3, 81000000, true},
+{718, "bahn.de", "Bus & Rail", 4600000, 0.3, 190000000, true},
+{719, "sky.com", "Web Portals", 4600000, 0.3, 480000000, true},
+{720, "springerlink.com", "Science", 4600000, 0.3, 55000000, true},
+{721, "heraldm.com", "Newspapers", 4600000, 0.3, 9900000, true},
+{722, "xt918.com", "", 4600000, 0.3, 45000000, false},
+{723, "freshwap.net", "Computers & Electronics", 4500000, 0.3, 31000000, true},
+{724, "howstuffworks.com", "How-To", 4500000, 0.3, 66000000, true},
+{725, "cartoonnetwork.com", "Cartoons", 4500000, 0.3, 280000000, true},
+{726, "worldlingo.com", "Foreign Language Resources", 4300000, 0.3, 35000000, true},
+{727, "clubic.com", "Computers & Electronics", 4300000, 0.3, 54000000, true},
+{728, "classmates.com", "Alumni & Reunions", 4300000, 0.3, 130000000, true},
+{729, "tf1.fr", "TV Networks & Stations", 4300000, 0.3, 170000000, true},
+{730, "videosurf.com", "Online Video", 4300000, 0.3, 81000000, false},
+{731, "sonyericsson.com", "Mobile Phones", 4300000, 0.3, 81000000, true},
+{732, "bigfishgames.com", "Computer & Video Games", 4300000, 0.3, 170000000, true},
+{733, "qook.co.kr", "Network Security", 4200000, 0.3, 50000000, true},
+{734, "usazm.net", "", 4200000, 0.3, 18000000, false},
+{735, "news.cn", "Anime & Manga", 4200000, 0.3, 41000000, true},
+{736, "paran.com", "Web Portals", 4200000, 0.3, 130000000, true},
+{737, "nationalgeographic.com", "Magazines", 4200000, 0.3, 89000000, true},
+{738, "credit-agricole.fr", "Banking", 4200000, 0.3, 340000000, true},
+{739, "plentyoffish.com", "Online Communities", 4200000, 0.3, 2500000000, true},
+{740, "boosj.com", "Online Video", 4200000, 0.3, 34000000, true},
+{741, "qqwangming.org", "Online Goodies", 4200000, 0.3, 96000000, true},
+{742, "chinamobile.com", "Service Providers", 4200000, 0.3, 110000000, true},
+{743, "businessweek.com", "Business & Industrial", 4200000, 0.3, 38000000, true},
+{744, "hani.co.kr", "Newspapers", 4200000, 0.3, 19000000, true},
+{745, "idownloadunlimited.com", "Multimedia Software", 4200000, 0.3, 24000000, false},
+{746, "ocnk.net", "Shopping Portals & Search Engines", 4200000, 0.3, 90000000, true},
+{747, "j-cast.com", "Business News", 4200000, 0.3, 23000000, true},
+{748, "urbandictionary.com", "Humor", 4200000, 0.3, 50000000, true},
+{749, "top100.cn", "Music & Audio", 4200000, 0.3, 80000000, true},
+{750, "vivanews.com", "News", 4200000, 0.3, 34000000, true},
+{751, "easyjet.com", "Travel", 4200000, 0.3, 170000000, true},
+{752, "ilmeteo.it", "Weather", 4200000, 0.3, 140000000, true},
+{753, "gamebabylon.com", "Online Games", 4200000, 0.3, 26000000, true},
+{754, "hurriyet.com.tr", "Newspapers", 4200000, 0.3, 720000000, true},
+{755, "itv.com", "TV Networks & Stations", 4200000, 0.3, 140000000, true},
+{756, "iwon.com", "Online Games", 4200000, 0.3, 73000000, true},
+{757, "browserchoice.eu", "Internet Clients & Browsers", 4200000, 0.3, 26000000, false},
+{758, "aa.com", "Air Travel", 4200000, 0.3, 250000000, true},
+{759, "yahoo-mbga.jp", "Online Games", 4200000, 0.3, 250000000, false},
+{760, "bidders.co.jp", "Auctions", 4200000, 0.3, 81000000, true},
+{761, "chefkoch.de", "Cooking & Recipes", 4200000, 0.3, 180000000, true},
+{762, "alimama.com", "Affiliate Programs", 4200000, 0.3, 110000000, true},
+{763, "sympatico.ca", "Web Portals", 4200000, 0.3, 160000000, true},
+{764, "farmville.com", "Simulation Games", 4200000, 0.3, 720000000, true},
+{765, "freedownloadscenter.com", "Freeware & Shareware", 4200000, 0.3, 26000000, true},
+{766, "readnovel.com", "E-Books", 4200000, 0.3, 370000000, true},
+{767, "torrentreactor.net", "File Sharing & Hosting", 4200000, 0.3, 29000000, true},
+{768, "national-lottery.co.uk", "", 4200000, 0.3, 270000000, true},
+{769, "cooks.com", "Cooking & Recipes", 4200000, 0.3, 130000000, true},
+{770, "chinaz.com", "Search Engines", 4200000, 0.3, 160000000, true},
+{771, "aolnews.com", "News", 4200000, 0.3, 61000000, true},
+{772, "infospace.com", "Search Engines", 4200000, 0.3, 110000000, true},
+{773, "airasia.com", "Air Travel", 4200000, 0.3, 230000000, true},
+{774, "stackoverflow.com", "Programming", 4200000, 0.3, 46000000, true},
+{775, "chinadaily.com.cn", "News", 4200000, 0.3, 34000000, true},
+{776, "pronto.com", "Price Comparisons", 4200000, 0.3, 51000000, true},
+{777, "novoteka.ru", "Newspapers", 4200000, 0.3, 72000000, true},
+{778, "imagevenue.com", "Photo & Image Sharing", 4200000, 0.3, 96000000, true},
+{779, "pclady.com.cn", "Fashion & Style", 4200000, 0.3, 110000000, true},
+{780, "best-price.com", "Price Comparisons", 4200000, 0.3, 38000000, true},
+{781, "wowan365.com", "", 4200000, 0.3, 23000000, false},
+{782, "gigazine.net", "Celebrities & Entertainment News", 4200000, 0.3, 31000000, true},
+{783, "cbssports.com", "Sports News", 4200000, 0.3, 720000000, true},
+{784, "mozilla-europe.org", "Internet Clients & Browsers", 4200000, 0.3, 19000000, false},
+{785, "vzw.com", "Service Providers", 4200000, 0.3, 80000000, true},
+{786, "pcworld.com", "Technology News", 4200000, 0.3, 37000000, true},
+{787, "fotolog.com", "Photo & Video Sharing", 4200000, 0.3, 280000000, true},
+{788, "ctrip.com", "Travel", 4200000, 0.3, 89000000, true},
+{789, "3suisses.fr", "Apparel", 4200000, 0.3, 170000000, true},
+{790, "information.com", "Search Engines", 4200000, 0.3, 29000000, true},
+{791, "grepolis.com", "Massive Multiplayer", 4200000, 0.3, 1100000000, false},
+{792, "freechal.com", "Web Portals", 4200000, 0.3, 25000000, true},
+{793, "teoma.com", "Search Engines", 4200000, 0.3, 50000000, true},
+{794, "izlesene.com", "Photo & Video Sharing", 4200000, 0.3, 170000000, true},
+{795, "pcgames.com.cn", "Online Games", 4200000, 0.3, 50000000, true},
+{796, "webcrawler.com", "Search Engines", 4200000, 0.3, 60000000, true},
+{797, "heroturko.org", "File Sharing & Hosting", 4200000, 0.3, 46000000, true},
+{798, "accuweather.com", "Weather", 4200000, 0.3, 190000000, true},
+{799, "uniblue.com", "Software", 4200000, 0.3, 21000000, false},
+{800, "oracle.com", "Data Management", 4200000, 0.3, 120000000, true},
+{801, "marketgid.info", "", 4200000, 0.3, 28000000, false},
+{802, "vzarabotke.ru", "", 4200000, 0.3, 18000000, true},
+{803, "fanpop.com", "TV Shows & Programs", 4100000, 0.3, 67000000, true},
+{804, "mercadolibre.com.ar", "Classifieds", 4100000, 0.3, 440000000, true},
+{805, "gismeteo.ru", "Weather", 4100000, 0.3, 98000000, true},
+{806, "orbitz.com", "Travel", 4100000, 0.3, 210000000, true},
+{807, "mashable.com", "Technology News", 4100000, 0.3, 38000000, true},
+{808, "xcar.com.cn", "Autos & Vehicles", 4100000, 0.3, 230000000, true},
+{809, "legacy.com", "", 4100000, 0.3, 190000000, true},
+{810, "all-biz.info", "Business & Industrial", 4100000, 0.3, 38000000, true},
+{811, "mbaobao.com", "Make-Up & Cosmetics", 4100000, 0.3, 41000000, false},
+{812, "videobash.com", "Humor", 4100000, 0.3, 41000000, true},
+{813, "buy.com", "Shopping", 3900000, 0.2, 80000000, true},
+{814, "jal.co.jp", "Air Travel", 3900000, 0.2, 140000000, true},
+{815, "htc.com", "Mobile Phones", 3900000, 0.2, 79000000, true},
+{816, "neckermann.de", "Hotels & Accommodations", 3900000, 0.2, 170000000, true},
+{817, "turbobit.net", "File Sharing & Hosting", 3900000, 0.2, 51000000, true},
+{818, "kuwan8.com", "Games", 3900000, 0.2, 15000000, false},
+{819, "travelocity.com", "Travel Agencies & Services", 3900000, 0.2, 190000000, true},
+{820, "xing.com", "Career Resources & Planning", 3900000, 0.2, 310000000, true},
+{821, "juchang.com", "Movies", 3900000, 0.2, 74000000, true},
+{822, "righthealth.com", "Medical Literature & Resources", 3900000, 0.2, 37000000, true},
+{823, "kp.ru", "News", 3900000, 0.2, 59000000, true},
+{824, "joins.com", "People & Society", 3900000, 0.2, 37000000, true},
+{825, "weebly.com", "Web Design & Development", 3800000, 0.2, 73000000, true},
+{826, "vesti.ru", "News", 3800000, 0.2, 38000000, true},
+{827, "deezer.com", "Music Streams & Downloads", 3800000, 0.2, 330000000, false},
+{828, "facemoods.com", "Social Network Apps & Add-Ons", 3800000, 0.2, 210000000, true},
+{829, "play.com", "Mass Merchants & Department Stores", 3800000, 0.2, 250000000, true},
+{830, "123greetings.com", "Cards & Greetings", 3800000, 0.2, 66000000, true},
+{831, "ukr.net", "Local News", 3800000, 0.2, 300000000, true},
+{832, "qire123.com", "Online Video", 3800000, 0.2, 96000000, true},
+{833, "hilton.com", "Hotels & Accommodations", 3800000, 0.2, 140000000, true},
+{834, "kaspersky.com", "Antivirus & Malware", 3800000, 0.2, 42000000, true},
+{835, "samsclub.com", "Mass Merchants & Department Stores", 3800000, 0.2, 190000000, true},
+{836, "marriott.com", "Hotels & Accommodations", 3800000, 0.2, 160000000, true},
+{837, "kinopoisk.ru", "Movie Reference", 3800000, 0.2, 130000000, true},
+{838, "lg.com", "Consumer Electronics", 3800000, 0.2, 45000000, false},
+{839, "readme.ru", "News", 3800000, 0.2, 61000000, true},
+{840, "rapiddigger.com", "File Sharing & Hosting", 3800000, 0.2, 31000000, false},
+{841, "istockphoto.com", "Stock Photography", 3800000, 0.2, 210000000, true},
+{842, "weborama.fr", "Web Stats & Analytics", 3800000, 0.2, 34000000, true},
+{843, "esmas.com", "Web Portals", 3800000, 0.2, 110000000, true},
+{844, "a67.com", "Online Video", 3800000, 0.2, 89000000, true},
+{845, "canalblog.com", "", 3800000, 0.2, 96000000, true},
+{846, "logitech.com", "Consumer Electronics", 3800000, 0.2, 67000000, false},
+{847, "wetter.com", "Weather", 3800000, 0.2, 110000000, true},
+{848, "51seer.com", "Robotics", 3800000, 0.2, 55000000, false},
+{849, "webshots.com", "Photo & Video Sharing", 3800000, 0.2, 87000000, true},
+{850, "pole-emploi.fr", "Welfare & Unemployment", 3800000, 0.2, 730000000, false},
+{851, "aeriagames.com", "Online Games", 3800000, 0.2, 46000000, true},
+{852, "schuelervz.net", "Social Networks", 3800000, 0.2, 2300000000, true},
+{853, "local.com", "Business & Personal Listings", 3800000, 0.2, 42000000, true},
+{854, "discovercard.com", "Credit Cards", 3800000, 0.2, 230000000, true},
+{855, "shvoong.com", "Arts & Entertainment", 3800000, 0.2, 21000000, true},
+{856, "ft.com", "Business News", 3800000, 0.2, 61000000, true},
+{857, "time.com", "News", 3800000, 0.2, 73000000, true},
+{858, "warnerbros.com", "Film & TV Industry", 3800000, 0.2, 80000000, true},
+{859, "ntv.co.jp", "TV Networks & Stations", 3800000, 0.2, 38000000, false},
+{860, "88db.com", "Classifieds", 3800000, 0.2, 23000000, true},
+{861, "allocine.fr", "Movie Listings & Theater Showtimes", 3800000, 0.2, 130000000, true},
+{862, "thesun.co.uk", "Newspapers", 3800000, 0.2, 160000000, true},
+{863, "walgreens.com", "Mass Merchants & Department Stores", 3800000, 0.2, 250000000, true},
+{864, "multiupload.com", "File Sharing & Hosting", 3800000, 0.2, 45000000, true},
+{865, "getpersonas.com", "Skins Themes & Wallpapers", 3800000, 0.2, 99000000, false},
+{866, "programas-gratis.net", "Software", 3800000, 0.2, 50000000, true},
+{867, "uploaded.to", "File Sharing & Hosting", 3800000, 0.2, 61000000, true},
+{868, "nexon.com", "Computer & Video Games", 3800000, 0.2, 140000000, false},
+{869, "sendspace.com", "File Sharing & Hosting", 3800000, 0.2, 41000000, true},
+{870, "moonbasa.com", "Undergarments", 3800000, 0.2, 28000000, false},
+{871, "jsoftj.com", "Computers & Electronics", 3800000, 0.2, 50000000, true},
+{872, "wat.tv", "Online Video", 3800000, 0.2, 66000000, true},
+{873, "shutterfly.com", "Photo & Video Services", 3800000, 0.2, 590000000, true},
+{874, "etoro.com", "Currencies & Foreign Exchange", 3800000, 0.2, 17000000, true},
+{875, "direct.gov.uk", "Law & Government", 3800000, 0.2, 370000000, true},
+{876, "changyou.com", "E-Books", 3800000, 0.2, 60000000, false},
+{877, "mundoanuncio.com", "Classifieds", 3800000, 0.2, 160000000, true},
+{878, "limewire.com", "File Sharing & Hosting", 3800000, 0.2, 41000000, false},
+{879, "reverso.net", "Translation Tools & Resources", 3800000, 0.2, 160000000, true},
+{880, "marktplaats.nl", "Classifieds", 3800000, 0.2, 1500000000, true},
+{881, "aucfan.com", "Auctions", 3800000, 0.2, 66000000, true},
+{882, "meteofrance.com", "Weather", 3800000, 0.2, 130000000, true},
+{883, "winzip.com", "Software Utilities", 3800000, 0.2, 26000000, true},
+{884, "groupon.jp", "Coupons & Discount Offers", 3800000, 0.2, 34000000, true},
+{885, "songs.pk", "South Asian Music", 3800000, 0.2, 99000000, true},
+{886, "barbie.com", "Doll Dress-Up & Girl Games", 3800000, 0.2, 280000000, true},
+{887, "fnac.com", "CD & Audio Shopping", 3800000, 0.2, 170000000, true},
+{888, "apserver.net", "Web Hosting & Domain Registration", 3800000, 0.2, 55000000, true},
+{889, "popularscreensavers.com", "Skins Themes & Wallpapers", 3800000, 0.2, 45000000, true},
+{890, "softbank.jp", "Mobile & Wireless", 3800000, 0.2, 82000000, true},
+{891, "thesaurus.com", "Dictionaries & Encyclopedias", 3800000, 0.2, 80000000, true},
+{892, "enet.com.cn", "Photo & Video Software", 3800000, 0.2, 68000000, true},
+{893, "kooora.com", "Sports News", 3800000, 0.2, 410000000, true},
+{894, "news.de", "News", 3800000, 0.2, 28000000, true},
+{895, "qq163.com", "Music Streams & Downloads", 3800000, 0.2, 120000000, true},
+{896, "battle.net", "Online Games", 3800000, 0.2, 190000000, true},
+{897, "kbstar.com", "Credit Cards", 3800000, 0.2, 51000000, true},
+{898, "qzone.cc", "Social Network Apps & Add-Ons", 3800000, 0.2, 96000000, true},
+{899, "uniqlo.com", "Casual Apparel", 3800000, 0.2, 190000000, false},
+{900, "goal.com", "Soccer", 3800000, 0.2, 120000000, true},
+{901, "espncricinfo.com", "Cricket", 3800000, 0.2, 150000000, true},
+{902, "sportsseoul.com", "Sports", 3800000, 0.2, 46000000, true},
+{903, "uploadcity.com", "File Sharing & Hosting", 3800000, 0.2, 28000000, false},
+{904, "kijiji.ca", "Shopping", 3800000, 0.2, 1000000000, true},
+{905, "uuu9.com", "Online Games", 3800000, 0.2, 140000000, true},
+{906, "fotostrana.ru", "Photo & Image Sharing", 3800000, 0.2, 280000000, true},
+{907, "w3.org", "Web Design & Development", 3800000, 0.2, 46000000, true},
+{908, "46.com", "Directories & Listings", 3800000, 0.2, 82000000, true},
+{909, "smarter.co.jp", "Shopping Portals & Search Engines", 3800000, 0.2, 15000000, false},
+{910, "bohelady.com", "Beauty & Fitness", 3800000, 0.2, 80000000, true},
+{911, "boston.com", "Newspapers", 3800000, 0.2, 160000000, true},
+{912, "ciao.de", "Product Reviews", 3800000, 0.2, 38000000, true},
+{913, "virusbuster.jp", "Antivirus & Malware", 3800000, 0.2, 12000000, true},
+{914, "myegy.com", "Online Video", 3800000, 0.2, 280000000, true},
+{915, "retailmenot.com", "Coupons & Discount Offers", 3800000, 0.2, 41000000, true},
+{916, "fandango.com", "Movie Listings & Theater Showtimes", 3800000, 0.2, 130000000, true},
+{917, "mizuhobank.co.jp", "Banking", 3800000, 0.2, 73000000, false},
+{918, "topshareware.com", "Freeware & Shareware", 3800000, 0.2, 21000000, true},
+{919, "freelotto.com", "", 3800000, 0.2, 37000000, true},
+{920, "coneco.net", "Shopping Portals & Search Engines", 3800000, 0.2, 31000000, true},
+{921, "lenovo.com", "Hardware", 3800000, 0.2, 97000000, true},
+{922, "girlsgogames.com", "Flash-Based Entertainment", 3800000, 0.2, 330000000, true},
+{923, "segye.com", "News", 3800000, 0.2, 9800000, true},
+{924, "topix.com", "Local News", 3500000, 0.2, 110000000, true},
+{925, "issuu.com", "Software Utilities", 3500000, 0.2, 28000000, true},
+{926, "mahalo.com", "Coupons & Discount Offers", 3500000, 0.2, 19000000, true},
+{927, "caixa.gov.br", "Banking", 3500000, 0.2, 450000000, false},
+{928, "766.com", "Online Games", 3500000, 0.2, 73000000, true},
+{929, "yaodian100.com", "Holidays & Seasonal Events", 3500000, 0.2, 28000000, true},
+{930, "qqgexing.com", "Social Network Apps & Add-Ons", 3500000, 0.2, 540000000, true},
+{931, "main.jp", "Education", 3500000, 0.2, 26000000, true},
+{932, "gamehouse.com", "Online Games", 3500000, 0.2, 80000000, true},
+{933, "usbank.com", "Banking", 3500000, 0.2, 410000000, false},
+{934, "ponpare.jp", "Coupons & Discount Offers", 3500000, 0.2, 41000000, true},
+{935, "rtl.de", "TV Networks & Stations", 3500000, 0.2, 120000000, true},
+{936, "marksandspencer.com", "Mass Merchants & Department Stores", 3500000, 0.2, 280000000, true},
+{937, "virginmedia.com", "News", 3500000, 0.2, 230000000, true},
+{938, "baamboo.com", "Music & Audio", 3500000, 0.2, 61000000, true},
+{939, "nick.com", "Online Games", 3500000, 0.2, 260000000, true},
+{940, "33hy.com", "", 3500000, 0.2, 12000000, false},
+{941, "seoquake.com", "Internet Clients & Browsers", 3500000, 0.2, 13000000, true},
+{942, "sing365.com", "Song Lyrics & Tabs", 3500000, 0.2, 23000000, true},
+{943, "dasoertliche.de", "Business & Personal Listings", 3500000, 0.2, 61000000, true},
+{944, "gamestop.com", "Computer & Video Games", 3500000, 0.2, 190000000, true},
+{945, "bandoo.com", "Online Goodies", 3500000, 0.2, 16000000, false},
+{946, "mozdev.org", "Web Apps & Online Tools", 3500000, 0.2, 14000000, true},
+{947, "8684.cn", "Traffic & Public Transit", 3500000, 0.2, 41000000, true},
+{948, "unam.mx", "Newspapers", 3500000, 0.2, 82000000, true},
+{949, "cool.ne.jp", "Web Hosting & Domain Registration", 3500000, 0.2, 19000000, true},
+{950, "bedbathandbeyond.com", "Bed & Bath", 3500000, 0.2, 170000000, true},
+{951, "lenovo.com.cn", "Hardware", 3500000, 0.2, 45000000, false},
+{952, "epson.jp", "Printers", 3500000, 0.2, 50000000, true},
+{953, "w3schools.com", "Computer Education", 3500000, 0.2, 55000000, true},
+{954, "meinvz.net", "Social Networks", 3500000, 0.2, 1500000000, true},
+{955, "asus.com", "Hardware", 3500000, 0.2, 66000000, true},
+{956, "enfemenino.com", "Women's Interests", 3500000, 0.2, 56000000, true},
+{957, "chacha.com", "Arts & Entertainment", 3500000, 0.2, 37000000, true},
+{958, "lyricsmode.com", "Song Lyrics & Tabs", 3500000, 0.2, 23000000, true},
+{959, "subito.it", "Classifieds", 3500000, 0.2, 600000000, true},
+{960, "tiscali.it", "ISPs", 3500000, 0.2, 250000000, true},
+{961, "mercadolibre.com", "Auctions", 3500000, 0.2, 98000000, false},
+{962, "citysearch.com", "City & Local Guides", 3500000, 0.2, 35000000, true},
+{963, "deviantart.net", "Photographic & Digital Arts", 3500000, 0.2, 23000000, false},
+{964, "divx.com", "Photo & Video Software", 3500000, 0.2, 26000000, true},
+{965, "ioage.com", "Technical Support", 3500000, 0.2, 28000000, true},
+{966, "autoscout24.de", "Vehicle Shopping", 3500000, 0.2, 400000000, true},
+{967, "ddmap.com", "Search Engines", 3500000, 0.2, 31000000, false},
+{968, "r7.com", "News", 3500000, 0.2, 490000000, true},
+{969, "trialpay.com", "Merchant Services & Payment Systems", 3500000, 0.2, 38000000, true},
+{970, "hdfcbank.com", "Banking", 3500000, 0.2, 130000000, true},
+{971, "openoffice.org", "Business & Productivity Software", 3500000, 0.2, 41000000, false},
+{972, "wer-weiss-was.de", "Internet & Telecom", 3500000, 0.2, 22000000, true},
+{973, "jimdo.com", "Web Design & Development", 3500000, 0.2, 88000000, true},
+{974, "gamersky.com", "Online Games", 3500000, 0.2, 82000000, true},
+{975, "searchina.ne.jp", "News", 3500000, 0.2, 73000000, true},
+{976, "techcrunch.com", "Technology News", 3500000, 0.2, 28000000, true},
+{977, "tchibo.de", "Gifts", 3500000, 0.2, 120000000, false},
+{978, "lezi.com", "Roleplaying Games", 3500000, 0.2, 13000000, false},
+{979, "webfetti.com", "Social Network Apps & Add-Ons", 3500000, 0.2, 61000000, true},
+{980, "kayak.com", "Air Travel", 3500000, 0.2, 110000000, true},
+{981, "mthai.com", "Web Portals", 3500000, 0.2, 120000000, true},
+{982, "tv.com", "TV Shows & Programs", 3500000, 0.2, 55000000, true},
+{983, "fidelity.com", "Retirement & Pension", 3500000, 0.2, 450000000, false},
+{984, "bt.com", "Service Providers", 3500000, 0.2, 140000000, true},
+{985, "yihaodian.com", "Shopping Portals & Search Engines", 3500000, 0.2, 34000000, false},
+{986, "cooliris.com", "Internet Clients & Browsers", 3500000, 0.2, 160000000, true},
+{987, "teamviewer.com", "Software", 3500000, 0.2, 26000000, true},
+{988, "bdr130.net", "Islam", 3500000, 0.2, 25000000, true},
+{989, "popeater.com", "Celebrities & Entertainment News", 3500000, 0.2, 55000000, true},
+{990, "newhua.com", "Software Utilities", 3500000, 0.2, 26000000, true},
+{991, "xywy.com", "Health", 3500000, 0.2, 34000000, true},
+{992, "newsis.com", "", 3500000, 0.2, 9100000, false},
+{993, "hangame.com", "Online Games", 3500000, 0.2, 140000000, true},
+{994, "qvc.com", "Clothing Accessories", 3400000, 0.2, 540000000, false},
+{995, "blogbus.com", "Blogging Resources & Services", 3400000, 0.2, 34000000, true},
+{996, "ultimate-guitar.com", "Online Media", 3400000, 0.2, 140000000, true},
+{997, "pipl.com", "People Search", 3400000, 0.2, 26000000, true},
+{998, "noaa.gov", "Water & Marine Sciences", 3400000, 0.2, 120000000, false},
+{999, "cafe24.com", "Web Hosting & Domain Registration", 3400000, 0.2, 45000000, true},
+{1000, "kukinews.com", "Newspapers", 3400000, 0.2, 11000000, true}
+};
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/top-sites.js Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,1004 @@
+// top 1000 sites according to google
+
+top_sites = [
+{"rank":1, "domain":"facebook.com", "category":"Social Networks", "visitors":600000000, "percent":38.4, "hits":750000000000, "ads":true},
+{"rank":2, "domain":"youtube.com", "category":"Online Video", "visitors":500000000, "percent":31.9, "hits":84000000000, "ads":true},
+{"rank":3, "domain":"yahoo.com", "category":"Web Portals", "visitors":410000000, "percent":26, "hits":70000000000, "ads":true},
+{"rank":4, "domain":"live.com", "category":"Search Engines", "visitors":340000000, "percent":21.9, "hits":36000000000, "ads":true},
+{"rank":5, "domain":"wikipedia.org", "category":"Dictionaries & Encyclopedias", "visitors":280000000, "percent":18, "hits":7100000000, "ads":false},
+{"rank":6, "domain":"msn.com", "category":"Web Portals", "visitors":250000000, "percent":16.1, "hits":13000000000, "ads":true},
+{"rank":7, "domain":"baidu.com", "category":"Search Engines", "visitors":230000000, "percent":14.6, "hits":100000000000, "ads":true},
+{"rank":8, "domain":"qq.com", "category":"Web Portals", "visitors":210000000, "percent":13.2, "hits":53000000000, "ads":true},
+{"rank":9, "domain":"microsoft.com", "category":"Software", "visitors":190000000, "percent":12.2, "hits":3300000000, "ads":true},
+{"rank":10, "domain":"sina.com.cn", "category":"Web Portals", "visitors":110000000, "percent":6.9, "hits":6400000000, "ads":true},
+{"rank":11, "domain":"taobao.com", "category":"Classifieds", "visitors":110000000, "percent":6.8, "hits":25000000000, "ads":true},
+{"rank":12, "domain":"bing.com", "category":"Search Engines", "visitors":110000000, "percent":7, "hits":4100000000, "ads":true},
+{"rank":13, "domain":"adobe.com", "category":"Multimedia Software", "visitors":98000000, "percent":6.3, "hits":1100000000, "ads":true},
+{"rank":14, "domain":"wordpress.com", "category":"Blogging Resources & Services", "visitors":89000000, "percent":5.7, "hits":1100000000, "ads":true},
+{"rank":15, "domain":"twitter.com", "category":"Email & Messaging", "visitors":89000000, "percent":5.7, "hits":5900000000, "ads":false},
+{"rank":16, "domain":"soso.com", "category":"Search Engines", "visitors":88000000, "percent":5.6, "hits":2700000000, "ads":false},
+{"rank":17, "domain":"mozilla.com", "category":"Internet Clients & Browsers", "visitors":88000000, "percent":5.6, "hits":1600000000, "ads":true},
+{"rank":18, "domain":"youku.com", "category":"Online Video", "visitors":88000000, "percent":5.6, "hits":2700000000, "ads":true},
+{"rank":19, "domain":"ask.com", "category":"Search Engines", "visitors":88000000, "percent":5.6, "hits":1900000000, "ads":true},
+{"rank":20, "domain":"yahoo.co.jp", "category":"Web Portals", "visitors":73000000, "percent":4.7, "hits":30000000000, "ads":true},
+{"rank":21, "domain":"amazon.com", "category":"Shopping", "visitors":73000000, "percent":4.7, "hits":6400000000, "ads":true},
+{"rank":22, "domain":"hao123.com", "category":"Web Portals", "visitors":67000000, "percent":4.3, "hits":4900000000, "ads":false},
+{"rank":23, "domain":"tudou.com", "category":"Online Video", "visitors":67000000, "percent":4.3, "hits":2200000000, "ads":true},
+{"rank":24, "domain":"ebay.com", "category":"Auctions", "visitors":66000000, "percent":4.2, "hits":12000000000, "ads":true},
+{"rank":25, "domain":"apple.com", "category":"Mac OS", "visitors":66000000, "percent":4.2, "hits":1300000000, "ads":true},
+{"rank":26, "domain":"sohu.com", "category":"Web Portals", "visitors":66000000, "percent":4.2, "hits":4000000000, "ads":true},
+{"rank":27, "domain":"fc2.com", "category":"Web Services", "visitors":51000000, "percent":3.2, "hits":3000000000, "ads":true},
+{"rank":28, "domain":"xunlei.com", "category":"File Sharing & Hosting", "visitors":49000000, "percent":3.2, "hits":1900000000, "ads":true},
+{"rank":29, "domain":"sogou.com", "category":"Search Engines", "visitors":46000000, "percent":2.9, "hits":1400000000, "ads":true},
+{"rank":30, "domain":"56.com", "category":"Online Media", "visitors":46000000, "percent":2.9, "hits":880000000, "ads":true},
+{"rank":31, "domain":"360.cn", "category":"Antivirus & Malware", "visitors":46000000, "percent":2.9, "hits":710000000, "ads":false},
+{"rank":32, "domain":"myspace.com", "category":"", "visitors":45000000, "percent":2.9, "hits":4800000000, "ads":true},
+{"rank":33, "domain":"paypal.com", "category":"Merchant Services & Payment Systems", "visitors":45000000, "percent":2.9, "hits":2000000000, "ads":true},
+{"rank":34, "domain":"ku6.com", "category":"Online Media", "visitors":42000000, "percent":2.7, "hits":670000000, "ads":true},
+{"rank":35, "domain":"cnet.com", "category":"Consumer Electronics", "visitors":41000000, "percent":2.6, "hits":550000000, "ads":true},
+{"rank":36, "domain":"rakuten.co.jp", "category":"Shopping Portals & Search Engines", "visitors":41000000, "percent":2.6, "hits":4500000000, "ads":true},
+{"rank":37, "domain":"go.com", "category":"Web Portals", "visitors":41000000, "percent":2.6, "hits":4000000000, "ads":true},
+{"rank":38, "domain":"about.com", "category":"How-To", "visitors":41000000, "percent":2.6, "hits":660000000, "ads":true},
+{"rank":39, "domain":"hotmail.com", "category":"Email & Messaging", "visitors":38000000, "percent":2.4, "hits":720000000, "ads":true},
+{"rank":40, "domain":"yandex.ru", "category":"Search Engines", "visitors":38000000, "percent":2.4, "hits":10000000000, "ads":true},
+{"rank":41, "domain":"orkut.com", "category":"Social Networks", "visitors":38000000, "percent":2.4, "hits":6500000000, "ads":true},
+{"rank":42, "domain":"goo.ne.jp", "category":"Web Portals", "visitors":38000000, "percent":2.4, "hits":800000000, "ads":true},
+{"rank":43, "domain":"orkut.com.br", "category":"Social Networks", "visitors":38000000, "percent":2.4, "hits":85000000000, "ads":true},
+{"rank":44, "domain":"flickr.com", "category":"Photo & Image Sharing", "visitors":38000000, "percent":2.4, "hits":1800000000, "ads":true},
+{"rank":45, "domain":"mail.ru", "category":"Email & Messaging", "visitors":37000000, "percent":2.4, "hits":13000000000, "ads":true},
+{"rank":46, "domain":"tmall.com", "category":"Apparel", "visitors":37000000, "percent":2.4, "hits":1400000000, "ads":true},
+{"rank":47, "domain":"bbc.co.uk", "category":"World News", "visitors":37000000, "percent":2.4, "hits":2700000000, "ads":true},
+{"rank":48, "domain":"linkedin.com", "category":"Social Networks", "visitors":37000000, "percent":2.4, "hits":2300000000, "ads":true},
+{"rank":49, "domain":"4shared.com", "category":"File Sharing & Hosting", "visitors":35000000, "percent":2.2, "hits":2000000000, "ads":true},
+{"rank":50, "domain":"imdb.com", "category":"Movie Reference", "visitors":34000000, "percent":2.2, "hits":1300000000, "ads":true},
+{"rank":51, "domain":"aol.com", "category":"Web Portals", "visitors":34000000, "percent":2.2, "hits":4400000000, "ads":true},
+{"rank":52, "domain":"ameblo.jp", "category":"Blogging Resources & Services", "visitors":34000000, "percent":2.2, "hits":1700000000, "ads":true},
+{"rank":53, "domain":"amazon.co.jp", "category":"Entertainment Media", "visitors":34000000, "percent":2.2, "hits":1300000000, "ads":false},
+{"rank":54, "domain":"dailymotion.com", "category":"Online Video", "visitors":34000000, "percent":2.2, "hits":660000000, "ads":true},
+{"rank":55, "domain":"ifeng.com", "category":"Web Portals", "visitors":34000000, "percent":2.2, "hits":2700000000, "ads":true},
+{"rank":56, "domain":"blogger.com", "category":"Blogging Resources & Services", "visitors":32000000, "percent":2, "hits":1900000000, "ads":false},
+{"rank":57, "domain":"answers.com", "category":"General Reference", "visitors":31000000, "percent":2, "hits":280000000, "ads":true},
+{"rank":58, "domain":"megaupload.com", "category":"File Sharing & Hosting", "visitors":31000000, "percent":2, "hits":960000000, "ads":true},
+{"rank":59, "domain":"4399.com", "category":"Online Games", "visitors":31000000, "percent":2, "hits":2800000000, "ads":true},
+{"rank":60, "domain":"craigslist.org", "category":"Classifieds", "visitors":31000000, "percent":2, "hits":15000000000, "ads":false},
+{"rank":61, "domain":"naver.com", "category":"Search Engines", "visitors":31000000, "percent":2, "hits":6500000000, "ads":true},
+{"rank":62, "domain":"photobucket.com", "category":"Photo & Video Sharing", "visitors":29000000, "percent":1.8, "hits":720000000, "ads":true},
+{"rank":63, "domain":"gougou.com", "category":"Search Engines", "visitors":28000000, "percent":1.8, "hits":880000000, "ads":true},
+{"rank":64, "domain":"vkontakte.ru", "category":"Social Networks", "visitors":28000000, "percent":1.8, "hits":36000000000, "ads":false},
+{"rank":65, "domain":"cnn.com", "category":"Broadcast & Network News", "visitors":28000000, "percent":1.8, "hits":1400000000, "ads":true},
+{"rank":66, "domain":"alibaba.com", "category":"Import & Export", "visitors":28000000, "percent":1.8, "hits":1100000000, "ads":true},
+{"rank":67, "domain":"rapidshare.com", "category":"File Sharing & Hosting", "visitors":28000000, "percent":1.8, "hits":540000000, "ads":true},
+{"rank":68, "domain":"skype.com", "category":"VOIP & Internet Telephony", "visitors":28000000, "percent":1.8, "hits":600000000, "ads":true},
+{"rank":69, "domain":"gocsgo.com", "category":"", "visitors":28000000, "percent":1.8, "hits":170000000, "ads":false},
+{"rank":70, "domain":"walmart.com", "category":"Mass Merchants & Department Stores", "visitors":26000000, "percent":1.7, "hits":1700000000, "ads":true},
+{"rank":71, "domain":"nifty.com", "category":"Web Portals", "visitors":26000000, "percent":1.7, "hits":650000000, "ads":true},
+{"rank":72, "domain":"2345.com", "category":"Web Portals", "visitors":26000000, "percent":1.7, "hits":1400000000, "ads":true},
+{"rank":73, "domain":"mediafire.com", "category":"File Sharing & Hosting", "visitors":26000000, "percent":1.6, "hits":450000000, "ads":true},
+{"rank":74, "domain":"soku.com", "category":"Online Video", "visitors":26000000, "percent":1.7, "hits":730000000, "ads":true},
+{"rank":75, "domain":"daum.net", "category":"Web Portals", "visitors":26000000, "percent":1.7, "hits":3300000000, "ads":true},
+{"rank":76, "domain":"ehow.com", "category":"How-To", "visitors":26000000, "percent":1.6, "hits":230000000, "ads":true},
+{"rank":77, "domain":"tianya.cn", "category":"Online Communities", "visitors":24000000, "percent":1.5, "hits":410000000, "ads":true},
+{"rank":78, "domain":"hp.com", "category":"Hardware", "visitors":24000000, "percent":1.5, "hits":720000000, "ads":true},
+{"rank":79, "domain":"scribd.com", "category":"", "visitors":24000000, "percent":1.5, "hits":140000000, "ads":true},
+{"rank":80, "domain":"hi5.com", "category":"Social Networks", "visitors":23000000, "percent":1.5, "hits":5900000000, "ads":true},
+{"rank":81, "domain":"9223.com", "category":"Directories & Listings", "visitors":23000000, "percent":1.5, "hits":950000000, "ads":true},
+{"rank":82, "domain":"bit.ly", "category":"Online Communities", "visitors":23000000, "percent":1.5, "hits":230000000, "ads":true},
+{"rank":83, "domain":"7k7k.com", "category":"Casual Games", "visitors":23000000, "percent":1.5, "hits":2400000000, "ads":true},
+{"rank":84, "domain":"weather.com", "category":"Weather", "visitors":23000000, "percent":1.5, "hits":790000000, "ads":true},
+{"rank":85, "domain":"hotfile.com", "category":"File Sharing & Hosting", "visitors":23000000, "percent":1.5, "hits":440000000, "ads":false},
+{"rank":86, "domain":"jp.msn.com", "category":"Newspapers", "visitors":23000000, "percent":1.5, "hits":790000000, "ads":false},
+{"rank":87, "domain":"ebay.de", "category":"Auctions", "visitors":23000000, "percent":1.5, "hits":7200000000, "ads":true},
+{"rank":88, "domain":"partypoker.com", "category":"", "visitors":23000000, "percent":1.5, "hits":190000000, "ads":true},
+{"rank":89, "domain":"softonic.com", "category":"Software", "visitors":23000000, "percent":1.5, "hits":450000000, "ads":true},
+{"rank":90, "domain":"youdao.com", "category":"Blogging Resources & Services", "visitors":23000000, "percent":1.5, "hits":340000000, "ads":true},
+{"rank":91, "domain":"imageshack.us", "category":"", "visitors":23000000, "percent":1.5, "hits":230000000, "ads":true},
+{"rank":92, "domain":"megavideo.com", "category":"Online Video", "visitors":22000000, "percent":1.4, "hits":410000000, "ads":true},
+{"rank":93, "domain":"zqgame.com", "category":"Sony PlayStation", "visitors":21000000, "percent":1.4, "hits":120000000, "ads":false},
+{"rank":94, "domain":"odnoklassniki.ru", "category":"Social Networks", "visitors":21000000, "percent":1.3, "hits":9400000000, "ads":true},
+{"rank":95, "domain":"biglobe.ne.jp", "category":"Web Portals", "visitors":21000000, "percent":1.3, "hits":370000000, "ads":true},
+{"rank":96, "domain":"target.com", "category":"Mass Merchants & Department Stores", "visitors":21000000, "percent":1.4, "hits":950000000, "ads":true},
+{"rank":97, "domain":"filestube.com", "category":"File Sharing & Hosting", "visitors":21000000, "percent":1.4, "hits":300000000, "ads":true},
+{"rank":98, "domain":"uol.com.br", "category":"Web Portals", "visitors":21000000, "percent":1.3, "hits":4900000000, "ads":true},
+{"rank":99, "domain":"mywebsearch.com", "category":"Search Engines", "visitors":21000000, "percent":1.3, "hits":960000000, "ads":true},
+{"rank":100, "domain":"espn.go.com", "category":"Sports", "visitors":21000000, "percent":1.4, "hits":2700000000, "ads":false},
+{"rank":101, "domain":"pconline.com.cn", "category":"Local News", "visitors":21000000, "percent":1.3, "hits":370000000, "ads":true},
+{"rank":102, "domain":"alipay.com", "category":"Merchant Services & Payment Systems", "visitors":21000000, "percent":1.4, "hits":1300000000, "ads":true},
+{"rank":103, "domain":"badoo.com", "category":"Dating & Personals", "visitors":20000000, "percent":1.3, "hits":5300000000, "ads":false},
+{"rank":104, "domain":"avg.com", "category":"Antivirus & Malware", "visitors":19000000, "percent":1.2, "hits":260000000, "ads":true},
+{"rank":105, "domain":"96pk.com", "category":"Games", "visitors":19000000, "percent":1.2, "hits":190000000, "ads":false},
+{"rank":106, "domain":"ebay.co.uk", "category":"Auctions", "visitors":19000000, "percent":1.2, "hits":5800000000, "ads":true},
+{"rank":107, "domain":"renren.com", "category":"Social Networks", "visitors":19000000, "percent":1.2, "hits":2800000000, "ads":true},
+{"rank":108, "domain":"zol.com.cn", "category":"Hardware", "visitors":19000000, "percent":1.2, "hits":540000000, "ads":true},
+{"rank":109, "domain":"alot.com", "category":"Web Apps & Online Tools", "visitors":19000000, "percent":1.2, "hits":650000000, "ads":true},
+{"rank":110, "domain":"bankofamerica.com", "category":"Banking", "visitors":19000000, "percent":1.2, "hits":2500000000, "ads":true},
+{"rank":111, "domain":"paipai.com", "category":"Apparel", "visitors":19000000, "percent":1.2, "hits":720000000, "ads":false},
+{"rank":112, "domain":"hatena.ne.jp", "category":"Blogging Resources & Services", "visitors":19000000, "percent":1.2, "hits":170000000, "ads":true},
+{"rank":113, "domain":"cntv.cn", "category":"TV Networks & Stations", "visitors":19000000, "percent":1.2, "hits":500000000, "ads":true},
+{"rank":114, "domain":"zynga.com", "category":"Casual Games", "visitors":19000000, "percent":1.2, "hits":3600000000, "ads":true},
+{"rank":115, "domain":"sourceforge.net", "category":"Open Source", "visitors":19000000, "percent":1.2, "hits":230000000, "ads":true},
+{"rank":116, "domain":"nytimes.com", "category":"Newspapers", "visitors":19000000, "percent":1.2, "hits":650000000, "ads":true},
+{"rank":117, "domain":"kakaku.com", "category":"Price Comparisons", "visitors":19000000, "percent":1.2, "hits":890000000, "ads":true},
+{"rank":118, "domain":"xinhuanet.com", "category":"News", "visitors":19000000, "percent":1.2, "hits":590000000, "ads":true},
+{"rank":119, "domain":"zedo.com", "category":"Advertising & Marketing", "visitors":18000000, "percent":1.1, "hits":160000000, "ads":true},
+{"rank":120, "domain":"news.163.com", "category":"Web Portals", "visitors":18000000, "percent":1.1, "hits":400000000, "ads":false},
+{"rank":121, "domain":"bestbuy.com", "category":"Consumer Electronics", "visitors":18000000, "percent":1.1, "hits":870000000, "ads":true},
+{"rank":122, "domain":"mop.com", "category":"Roleplaying Games", "visitors":18000000, "percent":1.1, "hits":300000000, "ads":true},
+{"rank":123, "domain":"orkut.co.in", "category":"Social Networks", "visitors":18000000, "percent":1.1, "hits":1700000000, "ads":true},
+{"rank":124, "domain":"wikimedia.org", "category":"Dictionaries & Encyclopedias", "visitors":18000000, "percent":1.1, "hits":140000000, "ads":false},
+{"rank":125, "domain":"chase.com", "category":"Banking", "visitors":18000000, "percent":1.1, "hits":2300000000, "ads":true},
+{"rank":126, "domain":"vk.com", "category":"Social Networks", "visitors":18000000, "percent":1.1, "hits":1100000000, "ads":false},
+{"rank":127, "domain":"metacafe.com", "category":"Video Sharing", "visitors":18000000, "percent":1.1, "hits":340000000, "ads":true},
+{"rank":128, "domain":"kugou.com", "category":"Movies", "visitors":18000000, "percent":1.1, "hits":170000000, "ads":true},
+{"rank":129, "domain":"qiyi.com", "category":"Movies", "visitors":18000000, "percent":1.1, "hits":450000000, "ads":false},
+{"rank":130, "domain":"dell.com", "category":"Hardware", "visitors":18000000, "percent":1.1, "hits":530000000, "ads":true},
+{"rank":131, "domain":"uuzu.com", "category":"Computer & Video Games", "visitors":17000000, "percent":1.1, "hits":89000000, "ads":false},
+{"rank":132, "domain":"ledu.com", "category":"Computer & Video Games", "visitors":17000000, "percent":1.1, "hits":90000000, "ads":false},
+{"rank":133, "domain":"brothersoft.com", "category":"Freeware & Shareware", "visitors":17000000, "percent":1.1, "hits":160000000, "ads":true},
+{"rank":134, "domain":"amazon.co.uk", "category":"Shopping Portals & Search Engines", "visitors":17000000, "percent":1.1, "hits":1600000000, "ads":false},
+{"rank":135, "domain":"amazon.de", "category":"Entertainment Media", "visitors":17000000, "percent":1.1, "hits":1500000000, "ads":false},
+{"rank":136, "domain":"nate.com", "category":"Web Portals", "visitors":17000000, "percent":1.1, "hits":1800000000, "ads":true},
+{"rank":137, "domain":"narod.ru", "category":"Web Hosting & Domain Registration", "visitors":16000000, "percent":1, "hits":230000000, "ads":true},
+{"rank":138, "domain":"9wee.com", "category":"Simulation Games", "visitors":16000000, "percent":1, "hits":81000000, "ads":false},
+{"rank":139, "domain":"livejournal.com", "category":"Blogging Resources & Services", "visitors":16000000, "percent":1, "hits":1100000000, "ads":true},
+{"rank":140, "domain":"mapquest.com", "category":"Maps", "visitors":16000000, "percent":1, "hits":280000000, "ads":true},
+{"rank":141, "domain":"globo.com", "category":"Web Portals", "visitors":16000000, "percent":1, "hits":3300000000, "ads":true},
+{"rank":142, "domain":"ameba.jp", "category":"Blogging Resources & Services", "visitors":16000000, "percent":1, "hits":1700000000, "ads":true},
+{"rank":143, "domain":"joy.cn", "category":"Online Video", "visitors":16000000, "percent":1, "hits":190000000, "ads":true},
+{"rank":144, "domain":"depositfiles.com", "category":"File Sharing & Hosting", "visitors":16000000, "percent":1, "hits":280000000, "ads":true},
+{"rank":145, "domain":"wikimediafoundation.org", "category":"Dictionaries & Encyclopedias", "visitors":16000000, "percent":1, "hits":50000000, "ads":false},
+{"rank":146, "domain":"thepiratebay.org", "category":"File Sharing & Hosting", "visitors":16000000, "percent":1, "hits":720000000, "ads":true},
+{"rank":147, "domain":"2ch.net", "category":"Forum & Chat Providers", "visitors":16000000, "percent":1, "hits":670000000, "ads":true},
+{"rank":148, "domain":"ocn.ne.jp", "category":"Web Portals", "visitors":16000000, "percent":1, "hits":250000000, "ads":true},
+{"rank":149, "domain":"cocolog-nifty.com", "category":"Blogging Resources & Services", "visitors":16000000, "percent":1, "hits":160000000, "ads":true},
+{"rank":150, "domain":"free.fr", "category":"ISPs", "visitors":16000000, "percent":1, "hits":870000000, "ads":true},
+{"rank":151, "domain":"mozilla.org", "category":"Internet Clients & Browsers", "visitors":16000000, "percent":1, "hits":140000000, "ads":false},
+{"rank":152, "domain":"netflix.com", "category":"DVD & Video Rentals", "visitors":16000000, "percent":1, "hits":1900000000, "ads":true},
+{"rank":153, "domain":"cyworld.com", "category":"Flash-Based Entertainment", "visitors":16000000, "percent":1, "hits":1000000000, "ads":false},
+{"rank":154, "domain":"thefreedictionary.com", "category":"Dictionaries & Encyclopedias", "visitors":16000000, "percent":1, "hits":130000000, "ads":true},
+{"rank":155, "domain":"pptv.com", "category":"TV Networks & Stations", "visitors":16000000, "percent":1, "hits":540000000, "ads":true},
+{"rank":156, "domain":"yomiuri.co.jp", "category":"Newspapers", "visitors":15000000, "percent":0.9, "hits":310000000, "ads":true},
+{"rank":157, "domain":"people.com.cn", "category":"News", "visitors":15000000, "percent":0.9, "hits":310000000, "ads":true},
+{"rank":158, "domain":"addthis.com", "category":"Internet Clients & Browsers", "visitors":14000000, "percent":0.9, "hits":81000000, "ads":false},
+{"rank":159, "domain":"taringa.net", "category":"Social Networks", "visitors":14000000, "percent":0.9, "hits":600000000, "ads":true},
+{"rank":160, "domain":"exblog.jp", "category":"Blogging Resources & Services", "visitors":14000000, "percent":0.9, "hits":210000000, "ads":true},
+{"rank":161, "domain":"3366.com", "category":"Arts & Entertainment", "visitors":14000000, "percent":0.9, "hits":800000000, "ads":false},
+{"rank":162, "domain":"so-net.ne.jp", "category":"Web Portals", "visitors":14000000, "percent":0.9, "hits":170000000, "ads":true},
+{"rank":163, "domain":"nicovideo.jp", "category":"Online Video", "visitors":14000000, "percent":0.9, "hits":1700000000, "ads":true},
+{"rank":164, "domain":"terra.com.br", "category":"News", "visitors":13000000, "percent":0.8, "hits":1500000000, "ads":true},
+{"rank":165, "domain":"wushen.com", "category":"Fan Fiction", "visitors":13000000, "percent":0.8, "hits":110000000, "ads":false},
+{"rank":166, "domain":"infoseek.co.jp", "category":"Web Portals", "visitors":13000000, "percent":0.8, "hits":280000000, "ads":true},
+{"rank":167, "domain":"xici.net", "category":"Online Communities", "visitors":13000000, "percent":0.9, "hits":230000000, "ads":true},
+{"rank":168, "domain":"reference.com", "category":"Dictionaries & Encyclopedias", "visitors":13000000, "percent":0.9, "hits":280000000, "ads":true},
+{"rank":169, "domain":"zing.vn", "category":"Viet Nam", "visitors":13000000, "percent":0.8, "hits":1600000000, "ads":true},
+{"rank":170, "domain":"nih.gov", "category":"Health", "visitors":13000000, "percent":0.8, "hits":300000000, "ads":true},
+{"rank":171, "domain":"okwave.jp", "category":"Forum & Chat Providers", "visitors":13000000, "percent":0.9, "hits":50000000, "ads":true},
+{"rank":172, "domain":"mixi.jp", "category":"Social Networks", "visitors":13000000, "percent":0.8, "hits":3000000000, "ads":true},
+{"rank":173, "domain":"cncmax.cn", "category":"Web Portals", "visitors":13000000, "percent":0.8, "hits":110000000, "ads":true},
+{"rank":174, "domain":"orange.fr", "category":"Web Portals", "visitors":13000000, "percent":0.8, "hits":6400000000, "ads":true},
+{"rank":175, "domain":"babylon.com", "category":"Translation Tools & Resources", "visitors":13000000, "percent":0.8, "hits":300000000, "ads":true},
+{"rank":176, "domain":"optmd.com", "category":"Advertising & Marketing", "visitors":13000000, "percent":0.9, "hits":66000000, "ads":true},
+{"rank":177, "domain":"jugem.jp", "category":"Blogging Resources & Services", "visitors":13000000, "percent":0.8, "hits":120000000, "ads":true},
+{"rank":178, "domain":"miniclip.com", "category":"Online Games", "visitors":13000000, "percent":0.8, "hits":540000000, "ads":true},
+{"rank":179, "domain":"58.com", "category":"Apartments & Residential Rentals", "visitors":13000000, "percent":0.8, "hits":550000000, "ads":true},
+{"rank":180, "domain":"ikea.com", "category":"Home Furnishings", "visitors":13000000, "percent":0.8, "hits":960000000, "ads":false},
+{"rank":181, "domain":"sakura.ne.jp", "category":"Web Hosting & Domain Registration", "visitors":13000000, "percent":0.8, "hits":250000000, "ads":true},
+{"rank":182, "domain":"tumblr.com", "category":"Online Journals & Personal Sites", "visitors":13000000, "percent":0.8, "hits":1000000000, "ads":true},
+{"rank":183, "domain":"eastmoney.com", "category":"Investing", "visitors":12000000, "percent":0.8, "hits":730000000, "ads":true},
+{"rank":184, "domain":"vimeo.com", "category":"", "visitors":12000000, "percent":0.8, "hits":130000000, "ads":true},
+{"rank":185, "domain":"skycn.com", "category":"Software", "visitors":12000000, "percent":0.8, "hits":110000000, "ads":true},
+{"rank":186, "domain":"nowdownloadall.com", "category":"File Sharing & Hosting", "visitors":12000000, "percent":0.8, "hits":72000000, "ads":false},
+{"rank":187, "domain":"booking.com", "category":"Hotels & Accommodations", "visitors":12000000, "percent":0.8, "hits":370000000, "ads":false},
+{"rank":188, "domain":"excite.co.jp", "category":"Web Portals", "visitors":12000000, "percent":0.8, "hits":230000000, "ads":true},
+{"rank":189, "domain":"vancl.com", "category":"Apparel", "visitors":12000000, "percent":0.8, "hits":190000000, "ads":false},
+{"rank":190, "domain":"rakuten.ne.jp", "category":"Shopping Portals & Search Engines", "visitors":12000000, "percent":0.8, "hits":130000000, "ads":true},
+{"rank":191, "domain":"ezinearticles.com", "category":"Dating & Personals", "visitors":12000000, "percent":0.8, "hits":120000000, "ads":true},
+{"rank":192, "domain":"slideshare.net", "category":"Business Plans & Presentations", "visitors":12000000, "percent":0.8, "hits":88000000, "ads":true},
+{"rank":193, "domain":"allabout.co.jp", "category":"General Reference", "visitors":12000000, "percent":0.8, "hits":97000000, "ads":true},
+{"rank":194, "domain":"bearshare.com", "category":"Music Streams & Downloads", "visitors":12000000, "percent":0.8, "hits":170000000, "ads":true},
+{"rank":195, "domain":"java.com", "category":"Java", "visitors":12000000, "percent":0.8, "hits":110000000, "ads":true},
+{"rank":196, "domain":"126.com", "category":"Web Portals", "visitors":12000000, "percent":0.8, "hits":330000000, "ads":true},
+{"rank":197, "domain":"rambler.ru", "category":"Web Portals", "visitors":12000000, "percent":0.8, "hits":1900000000, "ads":true},
+{"rank":198, "domain":"6.cn", "category":"Online Video", "visitors":12000000, "percent":0.8, "hits":140000000, "ads":true},
+{"rank":199, "domain":"macromedia.com", "category":"Multimedia Software", "visitors":12000000, "percent":0.8, "hits":55000000, "ads":false},
+{"rank":200, "domain":"hudong.com", "category":"Celebrities & Entertainment News", "visitors":12000000, "percent":0.8, "hits":130000000, "ads":true},
+{"rank":201, "domain":"commentcamarche.net", "category":"Technology News", "visitors":12000000, "percent":0.8, "hits":230000000, "ads":true},
+{"rank":202, "domain":"livedoor.com", "category":"Web Portals", "visitors":12000000, "percent":0.8, "hits":370000000, "ads":true},
+{"rank":203, "domain":"fileserve.com", "category":"File Sharing & Hosting", "visitors":12000000, "percent":0.8, "hits":190000000, "ads":false},
+{"rank":204, "domain":"att.com", "category":"Phone Service Providers", "visitors":12000000, "percent":0.8, "hits":890000000, "ads":true},
+{"rank":205, "domain":"cnxad.com", "category":"", "visitors":11000000, "percent":0.7, "hits":60000000, "ads":true},
+{"rank":206, "domain":"liveperson.net", "category":"Customer Relationship Management (CRM)", "visitors":11000000, "percent":0.7, "hits":110000000, "ads":false},
+{"rank":207, "domain":"soufun.com", "category":"Real Estate", "visitors":11000000, "percent":0.7, "hits":370000000, "ads":true},
+{"rank":208, "domain":"peeplo.com", "category":"Search Engines", "visitors":11000000, "percent":0.7, "hits":73000000, "ads":true},
+{"rank":209, "domain":"gmarket.co.kr", "category":"Shopping", "visitors":11000000, "percent":0.7, "hits":450000000, "ads":true},
+{"rank":210, "domain":"chosun.com", "category":"Newspapers", "visitors":11000000, "percent":0.7, "hits":210000000, "ads":true},
+{"rank":211, "domain":"dailymail.co.uk", "category":"Newspapers", "visitors":11000000, "percent":0.7, "hits":340000000, "ads":true},
+{"rank":212, "domain":"wellsfargo.com", "category":"Banking", "visitors":11000000, "percent":0.7, "hits":1400000000, "ads":true},
+{"rank":213, "domain":"douban.com", "category":"Social Networks", "visitors":11000000, "percent":0.7, "hits":310000000, "ads":true},
+{"rank":214, "domain":"sparkstudios.com", "category":"Marketing Services", "visitors":11000000, "percent":0.7, "hits":60000000, "ads":true},
+{"rank":215, "domain":"windowslivehelp.com", "category":"Email & Messaging", "visitors":11000000, "percent":0.7, "hits":130000000, "ads":false},
+{"rank":216, "domain":"onet.pl", "category":"Web Portals", "visitors":11000000, "percent":0.7, "hits":3300000000, "ads":true},
+{"rank":217, "domain":"mainichi.jp", "category":"Newspapers", "visitors":11000000, "percent":0.7, "hits":98000000, "ads":true},
+{"rank":218, "domain":"nhk.or.jp", "category":"TV Networks & Stations", "visitors":11000000, "percent":0.7, "hits":160000000, "ads":false},
+{"rank":219, "domain":"comcast.net", "category":"Web Portals", "visitors":11000000, "percent":0.7, "hits":3400000000, "ads":true},
+{"rank":220, "domain":"tripadvisor.com", "category":"Travel", "visitors":11000000, "percent":0.7, "hits":310000000, "ads":true},
+{"rank":221, "domain":"libero.it", "category":"Web Portals", "visitors":11000000, "percent":0.7, "hits":1400000000, "ads":true},
+{"rank":222, "domain":"kaixin001.com", "category":"Social Networks", "visitors":11000000, "percent":0.7, "hits":1400000000, "ads":true},
+{"rank":223, "domain":"alexa.com", "category":"Advertising & Marketing", "visitors":11000000, "percent":0.7, "hits":1100000000, "ads":true},
+{"rank":224, "domain":"netlog.com", "category":"Social Networks", "visitors":11000000, "percent":0.7, "hits":1400000000, "ads":true},
+{"rank":225, "domain":"reuters.com", "category":"News", "visitors":11000000, "percent":0.7, "hits":210000000, "ads":true},
+{"rank":226, "domain":"letv.com", "category":"TV Networks & Stations", "visitors":11000000, "percent":0.7, "hits":140000000, "ads":true},
+{"rank":227, "domain":"t-online.de", "category":"Web Portals", "visitors":11000000, "percent":0.7, "hits":880000000, "ads":true},
+{"rank":228, "domain":"jiayuan.com", "category":"Dating & Personals", "visitors":11000000, "percent":0.7, "hits":650000000, "ads":true},
+{"rank":229, "domain":"hubpages.com", "category":"Investing", "visitors":11000000, "percent":0.7, "hits":110000000, "ads":true},
+{"rank":230, "domain":"maktoob.com", "category":"Web Portals", "visitors":11000000, "percent":0.7, "hits":370000000, "ads":true},
+{"rank":231, "domain":"mcafee.com", "category":"Antivirus & Malware", "visitors":11000000, "percent":0.7, "hits":140000000, "ads":true},
+{"rank":232, "domain":"tabelog.com", "category":"Dining Guides", "visitors":11000000, "percent":0.7, "hits":230000000, "ads":true},
+{"rank":233, "domain":"pomoho.com", "category":"Online Video", "visitors":11000000, "percent":0.7, "hits":130000000, "ads":true},
+{"rank":234, "domain":"web.de", "category":"Web Portals", "visitors":11000000, "percent":0.7, "hits":2100000000, "ads":true},
+{"rank":235, "domain":"autohome.com.cn", "category":"Vehicle Shopping", "visitors":11000000, "percent":0.7, "hits":1300000000, "ads":true},
+{"rank":236, "domain":"china.com", "category":"Web Portals", "visitors":11000000, "percent":0.7, "hits":800000000, "ads":true},
+{"rank":237, "domain":"hexun.com", "category":"Investing", "visitors":10000000, "percent":0.6, "hits":180000000, "ads":true},
+{"rank":238, "domain":"japanpost.jp", "category":"Mail & Package Delivery", "visitors":10000000, "percent":0.6, "hits":230000000, "ads":false},
+{"rank":239, "domain":"nextag.com", "category":"Shopping", "visitors":10000000, "percent":0.6, "hits":160000000, "ads":true},
+{"rank":240, "domain":"tagged.com", "category":"Social Networks", "visitors":10000000, "percent":0.6, "hits":3900000000, "ads":true},
+{"rank":241, "domain":"multiply.com", "category":"Photo & Image Sharing", "visitors":10000000, "percent":0.6, "hits":210000000, "ads":true},
+{"rank":242, "domain":"marketgid.com", "category":"Shopping Portals & Search Engines", "visitors":10000000, "percent":0.6, "hits":160000000, "ads":true},
+{"rank":243, "domain":"wp.pl", "category":"", "visitors":10000000, "percent":0.6, "hits":2300000000, "ads":true},
+{"rank":244, "domain":"ieaddons.com", "category":"Online Goodies", "visitors":10000000, "percent":0.6, "hits":55000000, "ads":true},
+{"rank":245, "domain":"softpedia.com", "category":"Software", "visitors":10000000, "percent":0.6, "hits":97000000, "ads":true},
+{"rank":246, "domain":"ju51.com", "category":"Lighting", "visitors":9900000, "percent":0.6, "hits":67000000, "ads":true},
+{"rank":247, "domain":"jiji.com", "category":"News", "visitors":9900000, "percent":0.6, "hits":120000000, "ads":true},
+{"rank":248, "domain":"sanspo.com", "category":"Sports News", "visitors":9900000, "percent":0.6, "hits":160000000, "ads":true},
+{"rank":249, "domain":"gmx.net", "category":"Web Portals", "visitors":9900000, "percent":0.6, "hits":950000000, "ads":true},
+{"rank":250, "domain":"overture.com", "category":"Advertising & Marketing", "visitors":9900000, "percent":0.6, "hits":120000000, "ads":true},
+{"rank":251, "domain":"docin.com", "category":"Advertising & Marketing", "visitors":9900000, "percent":0.6, "hits":88000000, "ads":true},
+{"rank":252, "domain":"allegro.pl", "category":"Auctions", "visitors":9900000, "percent":0.6, "hits":4400000000, "ads":true},
+{"rank":253, "domain":"foxnews.com", "category":"Broadcast & Network News", "visitors":9900000, "percent":0.6, "hits":790000000, "ads":true},
+{"rank":254, "domain":"nikkeibp.co.jp", "category":"Business News", "visitors":9900000, "percent":0.6, "hits":140000000, "ads":true},
+{"rank":255, "domain":"39.net", "category":"Health", "visitors":9900000, "percent":0.6, "hits":190000000, "ads":true},
+{"rank":256, "domain":"huffingtonpost.com", "category":"News", "visitors":9900000, "percent":0.6, "hits":500000000, "ads":true},
+{"rank":257, "domain":"wan5d.com", "category":"Computer & Video Games", "visitors":9900000, "percent":0.6, "hits":51000000, "ads":false},
+{"rank":258, "domain":"naqigs.com", "category":"", "visitors":9900000, "percent":0.6, "hits":45000000, "ads":false},
+{"rank":259, "domain":"imesh.com", "category":"Music Streams & Downloads", "visitors":9900000, "percent":0.6, "hits":130000000, "ads":false},
+{"rank":260, "domain":"yz.szgla.com", "category":"Computer & Video Games", "visitors":9900000, "percent":0.6, "hits":46000000, "ads":false},
+{"rank":261, "domain":"ups.com", "category":"Mail & Package Delivery", "visitors":9900000, "percent":0.6, "hits":310000000, "ads":true},
+{"rank":262, "domain":"iza.ne.jp", "category":"News", "visitors":9900000, "percent":0.6, "hits":88000000, "ads":true},
+{"rank":263, "domain":"allrecipes.com", "category":"Cooking & Recipes", "visitors":9900000, "percent":0.6, "hits":370000000, "ads":true},
+{"rank":264, "domain":"wikia.com", "category":"Online Communities", "visitors":9900000, "percent":0.6, "hits":410000000, "ads":true},
+{"rank":265, "domain":"rediff.com", "category":"Web Portals", "visitors":9900000, "percent":0.6, "hits":1300000000, "ads":true},
+{"rank":266, "domain":"sponichi.co.jp", "category":"Sports News", "visitors":9900000, "percent":0.6, "hits":160000000, "ads":true},
+{"rank":267, "domain":"glispa.com", "category":"Search Engine Optimization & Marketing", "visitors":9900000, "percent":0.6, "hits":49000000, "ads":false},
+{"rank":268, "domain":"gnavi.co.jp", "category":"Dining Guides", "visitors":9800000, "percent":0.6, "hits":210000000, "ads":true},
+{"rank":269, "domain":"expedia.com", "category":"Travel", "visitors":9800000, "percent":0.6, "hits":450000000, "ads":true},
+{"rank":270, "domain":"sdo.com", "category":"Online Games", "visitors":9800000, "percent":0.6, "hits":170000000, "ads":true},
+{"rank":271, "domain":"verizonwireless.com", "category":"Phone Service Providers", "visitors":9800000, "percent":0.6, "hits":800000000, "ads":true},
+{"rank":272, "domain":"real.com", "category":"Media Players", "visitors":9800000, "percent":0.6, "hits":80000000, "ads":true},
+{"rank":273, "domain":"51.com", "category":"Social Networks", "visitors":9800000, "percent":0.6, "hits":1100000000, "ads":true},
+{"rank":274, "domain":"impress.co.jp", "category":"Computers & Electronics", "visitors":9800000, "percent":0.6, "hits":160000000, "ads":true},
+{"rank":275, "domain":"twitpic.com", "category":"Online Communities", "visitors":9800000, "percent":0.6, "hits":190000000, "ads":true},
+{"rank":276, "domain":"samsung.com", "category":"Consumer Electronics", "visitors":9800000, "percent":0.6, "hits":190000000, "ads":true},
+{"rank":277, "domain":"torrentz.com", "category":"File Sharing & Hosting", "visitors":9700000, "percent":0.6, "hits":340000000, "ads":true},
+{"rank":278, "domain":"360buy.com", "category":"E-Commerce Services", "visitors":9700000, "percent":0.6, "hits":300000000, "ads":true},
+{"rank":279, "domain":"traviangames.com", "category":"Online Games", "visitors":9100000, "percent":0.6, "hits":37000000, "ads":true},
+{"rank":280, "domain":"nikkansports.com", "category":"Sports News", "visitors":9100000, "percent":0.6, "hits":130000000, "ads":true},
+{"rank":281, "domain":"iminent.com", "category":"Clip Art & Animated GIFs", "visitors":9100000, "percent":0.6, "hits":590000000, "ads":true},
+{"rank":282, "domain":"ning.com", "category":"Web Design & Development", "visitors":9100000, "percent":0.6, "hits":310000000, "ads":true},
+{"rank":283, "domain":"51wan.com", "category":"Massive Multiplayer", "visitors":9100000, "percent":0.6, "hits":50000000, "ads":true},
+{"rank":284, "domain":"wretch.cc", "category":"Online Journals & Personal Sites", "visitors":9100000, "percent":0.6, "hits":2500000000, "ads":true},
+{"rank":285, "domain":"typepad.com", "category":"Blogging Resources & Services", "visitors":9100000, "percent":0.6, "hits":120000000, "ads":true},
+{"rank":286, "domain":"bizrate.com", "category":"Apparel", "visitors":9100000, "percent":0.6, "hits":120000000, "ads":true},
+{"rank":287, "domain":"auction.co.kr", "category":"Price Comparisons", "visitors":9100000, "percent":0.6, "hits":310000000, "ads":true},
+{"rank":288, "domain":"wordreference.com", "category":"", "visitors":9000000, "percent":0.6, "hits":250000000, "ads":true},
+{"rank":289, "domain":"duowan.com", "category":"Online Games", "visitors":9000000, "percent":0.6, "hits":300000000, "ads":true},
+{"rank":290, "domain":"asahi.com", "category":"News", "visitors":9000000, "percent":0.6, "hits":190000000, "ads":true},
+{"rank":291, "domain":"dangdang.com", "category":"Book Retailers", "visitors":9000000, "percent":0.6, "hits":280000000, "ads":true},
+{"rank":292, "domain":"letitbit.net", "category":"File Sharing & Hosting", "visitors":9000000, "percent":0.6, "hits":190000000, "ads":true},
+{"rank":293, "domain":"musica.com", "category":"Music & Audio", "visitors":9000000, "percent":0.6, "hits":250000000, "ads":true},
+{"rank":294, "domain":"shoplocal.com", "category":"Shopping Portals & Search Engines", "visitors":9000000, "percent":0.6, "hits":140000000, "ads":true},
+{"rank":295, "domain":"jcpenney.com", "category":"Mass Merchants & Department Stores", "visitors":9000000, "percent":0.6, "hits":800000000, "ads":true},
+{"rank":296, "domain":"tenpay.com", "category":"Merchant Services & Payment Systems", "visitors":9000000, "percent":0.6, "hits":230000000, "ads":false},
+{"rank":297, "domain":"hulu.com", "category":"Online Video", "visitors":9000000, "percent":0.6, "hits":590000000, "ads":true},
+{"rank":298, "domain":"guardian.co.uk", "category":"Newspapers", "visitors":9000000, "percent":0.6, "hits":190000000, "ads":true},
+{"rank":299, "domain":"nba.com", "category":"Basketball", "visitors":9000000, "percent":0.6, "hits":340000000, "ads":true},
+{"rank":300, "domain":"verycd.com", "category":"File Sharing & Hosting", "visitors":9000000, "percent":0.6, "hits":170000000, "ads":true},
+{"rank":301, "domain":"shopping.com", "category":"Price Comparisons", "visitors":9000000, "percent":0.6, "hits":88000000, "ads":true},
+{"rank":302, "domain":"funshion.com", "category":"Movies", "visitors":9000000, "percent":0.6, "hits":97000000, "ads":true},
+{"rank":303, "domain":"virgilio.it", "category":"Web Portals", "visitors":9000000, "percent":0.6, "hits":540000000, "ads":true},
+{"rank":304, "domain":"360doc.com", "category":"Social Sciences", "visitors":9000000, "percent":0.6, "hits":88000000, "ads":true},
+{"rank":305, "domain":"118114.cn", "category":"Web Portals", "visitors":9000000, "percent":0.6, "hits":81000000, "ads":true},
+{"rank":306, "domain":"17173.com", "category":"Roleplaying Games", "visitors":9000000, "percent":0.6, "hits":280000000, "ads":true},
+{"rank":307, "domain":"over-blog.com", "category":"Blogging Resources & Services", "visitors":8900000, "percent":0.6, "hits":210000000, "ads":true},
+{"rank":308, "domain":"ziddu.com", "category":"Photo & Video Sharing", "visitors":8900000, "percent":0.6, "hits":80000000, "ads":true},
+{"rank":309, "domain":"macys.com", "category":"Mass Merchants & Department Stores", "visitors":8900000, "percent":0.6, "hits":870000000, "ads":true},
+{"rank":310, "domain":"sears.com", "category":"Mass Merchants & Department Stores", "visitors":8900000, "percent":0.6, "hits":450000000, "ads":true},
+{"rank":311, "domain":"deviantart.com", "category":"Photographic & Digital Arts", "visitors":8900000, "percent":0.6, "hits":950000000, "ads":true},
+{"rank":312, "domain":"duba.net", "category":"Antivirus & Malware", "visitors":8900000, "percent":0.6, "hits":81000000, "ads":true},
+{"rank":313, "domain":"leboncoin.fr", "category":"Classifieds", "visitors":8800000, "percent":0.6, "hits":4900000000, "ads":true},
+{"rank":314, "domain":"ganji.com", "category":"Shopping Portals & Search Engines", "visitors":8800000, "percent":0.6, "hits":410000000, "ads":true},
+{"rank":315, "domain":"washingtonpost.com", "category":"Newspapers", "visitors":8300000, "percent":0.5, "hits":230000000, "ads":true},
+{"rank":316, "domain":"robtex.com", "category":"", "visitors":8300000, "percent":0.5, "hits":41000000, "ads":true},
+{"rank":317, "domain":"mapion.co.jp", "category":"Maps", "visitors":8300000, "percent":0.5, "hits":61000000, "ads":true},
+{"rank":318, "domain":"in.com", "category":"Web Portals", "visitors":8300000, "percent":0.5, "hits":130000000, "ads":true},
+{"rank":319, "domain":"ucoz.ru", "category":"Web Design & Development", "visitors":8300000, "percent":0.5, "hits":190000000, "ads":true},
+{"rank":320, "domain":"usps.com", "category":"Mail & Package Delivery", "visitors":8300000, "percent":0.5, "hits":340000000, "ads":true},
+{"rank":321, "domain":"isohunt.com", "category":"Search Engines", "visitors":8200000, "percent":0.5, "hits":330000000, "ads":true},
+{"rank":322, "domain":"webry.info", "category":"Military", "visitors":8200000, "percent":0.5, "hits":49000000, "ads":true},
+{"rank":323, "domain":"bitauto.com", "category":"Autos & Vehicles", "visitors":8200000, "percent":0.5, "hits":540000000, "ads":true},
+{"rank":324, "domain":"oricon.co.jp", "category":"Music & Audio", "visitors":8200000, "percent":0.5, "hits":74000000, "ads":true},
+{"rank":325, "domain":"toysrus.com", "category":"Toys", "visitors":8200000, "percent":0.5, "hits":660000000, "ads":true},
+{"rank":326, "domain":"11st.co.kr", "category":"Home Financing", "visitors":8200000, "percent":0.5, "hits":170000000, "ads":true},
+{"rank":327, "domain":"mt.co.kr", "category":"Investing", "visitors":8200000, "percent":0.5, "hits":45000000, "ads":true},
+{"rank":328, "domain":"metrolyrics.com", "category":"Music & Audio", "visitors":8200000, "percent":0.5, "hits":73000000, "ads":true},
+{"rank":329, "domain":"microsofttranslator.com", "category":"Translation Tools & Resources", "visitors":8200000, "percent":0.5, "hits":110000000, "ads":true},
+{"rank":330, "domain":"surveymonkey.com", "category":"Web Apps & Online Tools", "visitors":8200000, "percent":0.5, "hits":170000000, "ads":false},
+{"rank":331, "domain":"monografias.com", "category":"Web Portals", "visitors":8200000, "percent":0.5, "hits":80000000, "ads":true},
+{"rank":332, "domain":"dtiblog.com", "category":"Blogging Resources & Services", "visitors":8200000, "percent":0.5, "hits":160000000, "ads":true},
+{"rank":333, "domain":"27.cn", "category":"Beauty & Fitness", "visitors":8200000, "percent":0.5, "hits":400000000, "ads":true},
+{"rank":334, "domain":"chinanews.com.cn", "category":"News", "visitors":8200000, "percent":0.5, "hits":230000000, "ads":true},
+{"rank":335, "domain":"comcast.com", "category":"Service Providers", "visitors":8200000, "percent":0.5, "hits":170000000, "ads":true},
+{"rank":336, "domain":"m18.com", "category":"Apparel", "visitors":8200000, "percent":0.5, "hits":190000000, "ads":false},
+{"rank":337, "domain":"tom.com", "category":"News", "visitors":8200000, "percent":0.5, "hits":370000000, "ads":true},
+{"rank":338, "domain":"indiatimes.com", "category":"Newspapers", "visitors":8100000, "percent":0.5, "hits":310000000, "ads":true},
+{"rank":339, "domain":"huanqiu.com", "category":"News", "visitors":8100000, "percent":0.5, "hits":370000000, "ads":true},
+{"rank":340, "domain":"squidoo.com", "category":"Web Services", "visitors":8100000, "percent":0.5, "hits":96000000, "ads":true},
+{"rank":341, "domain":"rincondelvago.com", "category":"Education", "visitors":8100000, "percent":0.5, "hits":80000000, "ads":true},
+{"rank":342, "domain":"avast.com", "category":"", "visitors":8100000, "percent":0.5, "hits":74000000, "ads":false},
+{"rank":343, "domain":"icq.com", "category":"Forum & Chat Providers", "visitors":8100000, "percent":0.5, "hits":250000000, "ads":true},
+{"rank":344, "domain":"tinyurl.com", "category":"Web Services", "visitors":8100000, "percent":0.5, "hits":60000000, "ads":true},
+{"rank":345, "domain":"usenet.nl", "category":"File Sharing & Hosting", "visitors":8100000, "percent":0.5, "hits":90000000, "ads":false},
+{"rank":346, "domain":"tinypic.com", "category":"Photo & Video Sharing", "visitors":8100000, "percent":0.5, "hits":80000000, "ads":true},
+{"rank":347, "domain":"kuwo.cn", "category":"Game Cheats & Hints", "visitors":8000000, "percent":0.5, "hits":97000000, "ads":false},
+{"rank":348, "domain":"gamespot.com", "category":"Computer & Video Games", "visitors":7600000, "percent":0.5, "hits":160000000, "ads":true},
+{"rank":349, "domain":"torrentdownloads.net", "category":"File Sharing & Hosting", "visitors":7500000, "percent":0.5, "hits":67000000, "ads":true},
+{"rank":350, "domain":"amazon.cn", "category":"Shopping Portals & Search Engines", "visitors":7500000, "percent":0.5, "hits":160000000, "ads":false},
+{"rank":351, "domain":"foodnetwork.com", "category":"Cooking & Recipes", "visitors":7500000, "percent":0.5, "hits":310000000, "ads":true},
+{"rank":352, "domain":"baixaki.com.br", "category":"Internet & Telecom", "visitors":7500000, "percent":0.5, "hits":450000000, "ads":true},
+{"rank":353, "domain":"ccb.com.cn", "category":"Banking", "visitors":7500000, "percent":0.5, "hits":190000000, "ads":false},
+{"rank":354, "domain":"liveinternet.ru", "category":"Web Portals", "visitors":7500000, "percent":0.5, "hits":380000000, "ads":true},
+{"rank":355, "domain":"liutilities.com", "category":"Software Utilities", "visitors":7500000, "percent":0.5, "hits":31000000, "ads":false},
+{"rank":356, "domain":"plala.or.jp", "category":"ISPs", "visitors":7500000, "percent":0.5, "hits":74000000, "ads":true},
+{"rank":357, "domain":"hankooki.com", "category":"Business & Industrial", "visitors":7400000, "percent":0.5, "hits":61000000, "ads":true},
+{"rank":358, "domain":"01net.com", "category":"Technology News", "visitors":7400000, "percent":0.5, "hits":190000000, "ads":true},
+{"rank":359, "domain":"indeed.com", "category":"Jobs", "visitors":7400000, "percent":0.5, "hits":410000000, "ads":true},
+{"rank":360, "domain":"groupon.com", "category":"Coupons & Discount Offers", "visitors":7400000, "percent":0.5, "hits":160000000, "ads":true},
+{"rank":361, "domain":"hotpepper.jp", "category":"Dining Guides", "visitors":7400000, "percent":0.5, "hits":130000000, "ads":true},
+{"rank":362, "domain":"bild.de", "category":"News", "visitors":7400000, "percent":0.5, "hits":450000000, "ads":true},
+{"rank":363, "domain":"pandora.tv", "category":"Arts & Entertainment", "visitors":7400000, "percent":0.5, "hits":81000000, "ads":true},
+{"rank":364, "domain":"unkar.org", "category":"Forum & Chat Providers", "visitors":7400000, "percent":0.5, "hits":21000000, "ads":true},
+{"rank":365, "domain":"cookpad.com", "category":"Cooking & Recipes", "visitors":7400000, "percent":0.5, "hits":330000000, "ads":true},
+{"rank":366, "domain":"gap.com", "category":"Apparel", "visitors":7400000, "percent":0.5, "hits":590000000, "ads":true},
+{"rank":367, "domain":"nokia.com", "category":"Mobile Phones", "visitors":7400000, "percent":0.5, "hits":130000000, "ads":true},
+{"rank":368, "domain":"fedex.com", "category":"Mail & Package Delivery", "visitors":7400000, "percent":0.5, "hits":270000000, "ads":true},
+{"rank":369, "domain":"informer.com", "category":"Web Design & Development", "visitors":7400000, "percent":0.5, "hits":55000000, "ads":true},
+{"rank":370, "domain":"nfl.com", "category":"American Football", "visitors":7400000, "percent":0.5, "hits":590000000, "ads":true},
+{"rank":371, "domain":"telegraph.co.uk", "category":"Newspapers", "visitors":7400000, "percent":0.5, "hits":190000000, "ads":true},
+{"rank":372, "domain":"beemp3.com", "category":"Music Streams & Downloads", "visitors":7400000, "percent":0.5, "hits":140000000, "ads":false},
+{"rank":373, "domain":"capitalone.com", "category":"Credit Cards", "visitors":7400000, "percent":0.5, "hits":550000000, "ads":true},
+{"rank":374, "domain":"opera.com", "category":"Internet Clients & Browsers", "visitors":7400000, "percent":0.5, "hits":55000000, "ads":true},
+{"rank":375, "domain":"yelp.com", "category":"Directories & Listings", "visitors":7400000, "percent":0.5, "hits":170000000, "ads":true},
+{"rank":376, "domain":"vnet.cn", "category":"Web Portals", "visitors":7400000, "percent":0.5, "hits":65000000, "ads":true},
+{"rank":377, "domain":"justin.tv", "category":"Online Video", "visitors":7400000, "percent":0.5, "hits":500000000, "ads":true},
+{"rank":378, "domain":"aweber.com", "category":"Forms Guides & Templates", "visitors":7400000, "percent":0.5, "hits":130000000, "ads":true},
+{"rank":379, "domain":"atwiki.jp", "category":"Web Hosting & Domain Registration", "visitors":7400000, "percent":0.5, "hits":210000000, "ads":true},
+{"rank":380, "domain":"linternaute.com", "category":"Magazines", "visitors":7400000, "percent":0.5, "hits":410000000, "ads":true},
+{"rank":381, "domain":"chip.de", "category":"Computers & Electronics", "visitors":7400000, "percent":0.5, "hits":160000000, "ads":true},
+{"rank":382, "domain":"kohls.com", "category":"Apparel", "visitors":7400000, "percent":0.5, "hits":1100000000, "ads":true},
+{"rank":383, "domain":"pandora.com", "category":"Radio", "visitors":7400000, "percent":0.5, "hits":1400000000, "ads":true},
+{"rank":384, "domain":"godaddy.com", "category":"Web Hosting & Domain Registration", "visitors":7300000, "percent":0.5, "hits":370000000, "ads":true},
+{"rank":385, "domain":"vector.co.jp", "category":"Internet Clients & Browsers", "visitors":7300000, "percent":0.5, "hits":72000000, "ads":true},
+{"rank":386, "domain":"teacup.com", "category":"Forum & Chat Providers", "visitors":7300000, "percent":0.5, "hits":88000000, "ads":true},
+{"rank":387, "domain":"overstock.com", "category":"Mass Merchants & Department Stores", "visitors":7300000, "percent":0.5, "hits":450000000, "ads":true},
+{"rank":388, "domain":"match.com", "category":"Dating & Personals", "visitors":7300000, "percent":0.5, "hits":1300000000, "ads":true},
+{"rank":389, "domain":"pagesjaunes.fr", "category":"Business & Personal Listings", "visitors":7300000, "percent":0.5, "hits":310000000, "ads":true},
+{"rank":390, "domain":"buzzle.com", "category":"Web Portals", "visitors":6900000, "percent":0.4, "hits":45000000, "ads":true},
+{"rank":391, "domain":"mercadolivre.com.br", "category":"Auctions", "visitors":6900000, "percent":0.4, "hits":790000000, "ads":true},
+{"rank":392, "domain":"sbs.co.kr", "category":"Arts & Entertainment", "visitors":6900000, "percent":0.4, "hits":56000000, "ads":true},
+{"rank":393, "domain":"last.fm", "category":"Music Streams & Downloads", "visitors":6900000, "percent":0.4, "hits":120000000, "ads":true},
+{"rank":394, "domain":"constantcontact.com", "category":"Email & Messaging", "visitors":6900000, "percent":0.4, "hits":310000000, "ads":true},
+{"rank":395, "domain":"incredimail.com", "category":"Email & Messaging", "visitors":6900000, "percent":0.4, "hits":260000000, "ads":true},
+{"rank":396, "domain":"veoh.com", "category":"Online Video", "visitors":6800000, "percent":0.4, "hits":80000000, "ads":true},
+{"rank":397, "domain":"shinobi.jp", "category":"Web Stats & Analytics", "visitors":6800000, "percent":0.4, "hits":74000000, "ads":true},
+{"rank":398, "domain":"gutefrage.net", "category":"Educational Resources", "visitors":6800000, "percent":0.4, "hits":73000000, "ads":true},
+{"rank":399, "domain":"pcpop.com", "category":"Search Engines", "visitors":6800000, "percent":0.4, "hits":130000000, "ads":true},
+{"rank":400, "domain":"careerbuilder.com", "category":"Job Listings", "visitors":6800000, "percent":0.4, "hits":370000000, "ads":true},
+{"rank":401, "domain":"alice.it", "category":"News", "visitors":6800000, "percent":0.4, "hits":300000000, "ads":true},
+{"rank":402, "domain":"zimbio.com", "category":"Celebrities & Entertainment News", "visitors":6800000, "percent":0.4, "hits":120000000, "ads":true},
+{"rank":403, "domain":"sweetim.com", "category":"Clip Art & Animated GIFs", "visitors":6800000, "percent":0.4, "hits":160000000, "ads":true},
+{"rank":404, "domain":"ibm.com", "category":"Computers & Electronics", "visitors":6800000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":405, "domain":"sonico.com", "category":"Social Networks", "visitors":6800000, "percent":0.4, "hits":490000000, "ads":true},
+{"rank":406, "domain":"21cn.com", "category":"Web Portals", "visitors":6800000, "percent":0.4, "hits":59000000, "ads":true},
+{"rank":407, "domain":"pixnet.net", "category":"Online Journals & Personal Sites", "visitors":6800000, "percent":0.4, "hits":160000000, "ads":true},
+{"rank":408, "domain":"naver.jp", "category":"Search Engines", "visitors":6800000, "percent":0.4, "hits":66000000, "ads":true},
+{"rank":409, "domain":"intel.com", "category":"Chips & Processors", "visitors":6800000, "percent":0.4, "hits":88000000, "ads":false},
+{"rank":410, "domain":"wikimapia.org", "category":"Maps", "visitors":6800000, "percent":0.4, "hits":230000000, "ads":true},
+{"rank":411, "domain":"qidian.com", "category":"Fan Fiction", "visitors":6800000, "percent":0.4, "hits":410000000, "ads":true},
+{"rank":412, "domain":"homedepot.com", "category":"Home Improvement", "visitors":6800000, "percent":0.4, "hits":340000000, "ads":false},
+{"rank":413, "domain":"pingan.com", "category":"Insurance", "visitors":6800000, "percent":0.4, "hits":45000000, "ads":false},
+{"rank":414, "domain":"95599.cn", "category":"Banking", "visitors":6800000, "percent":0.4, "hits":190000000, "ads":false},
+{"rank":415, "domain":"ign.com", "category":"Computer & Video Games", "visitors":6800000, "percent":0.4, "hits":190000000, "ads":true},
+{"rank":416, "domain":"jalan.net", "category":"Hotels & Accommodations", "visitors":6800000, "percent":0.4, "hits":250000000, "ads":true},
+{"rank":417, "domain":"donga.com", "category":"Newspapers", "visitors":6800000, "percent":0.4, "hits":61000000, "ads":true},
+{"rank":418, "domain":"filehippo.com", "category":"File Sharing & Hosting", "visitors":6800000, "percent":0.4, "hits":90000000, "ads":true},
+{"rank":419, "domain":"blackberry.com", "category":"Smart Phones", "visitors":6800000, "percent":0.4, "hits":190000000, "ads":true},
+{"rank":420, "domain":"alisoft.com", "category":"Internet & Telecom", "visitors":6700000, "percent":0.4, "hits":55000000, "ads":false},
+{"rank":421, "domain":"sfr.fr", "category":"Mobile & Wireless", "visitors":6700000, "percent":0.4, "hits":1200000000, "ads":true},
+{"rank":422, "domain":"laredoute.fr", "category":"Apparel", "visitors":6700000, "percent":0.4, "hits":370000000, "ads":true},
+{"rank":423, "domain":"repubblica.it", "category":"Politics", "visitors":6700000, "percent":0.4, "hits":490000000, "ads":true},
+{"rank":424, "domain":"southwest.com", "category":"Air Travel", "visitors":6700000, "percent":0.4, "hits":300000000, "ads":true},
+{"rank":425, "domain":"ynet.com", "category":"News", "visitors":6700000, "percent":0.4, "hits":340000000, "ads":true},
+{"rank":426, "domain":"onlinedown.net", "category":"Software", "visitors":6700000, "percent":0.4, "hits":46000000, "ads":true},
+{"rank":427, "domain":"mylife.com", "category":"People Search", "visitors":6700000, "percent":0.4, "hits":110000000, "ads":true},
+{"rank":428, "domain":"game2.cn", "category":"Casual Games", "visitors":6700000, "percent":0.4, "hits":37000000, "ads":false},
+{"rank":429, "domain":"yellowpages.com", "category":"Business & Personal Listings", "visitors":6700000, "percent":0.4, "hits":120000000, "ads":true},
+{"rank":430, "domain":"kaskus.us", "category":"Indonesia", "visitors":6700000, "percent":0.4, "hits":260000000, "ads":true},
+{"rank":431, "domain":"evite.com", "category":"Gifts & Special Event Items", "visitors":6700000, "percent":0.4, "hits":250000000, "ads":true},
+{"rank":432, "domain":"m1905.com", "category":"TV Networks & Stations", "visitors":6700000, "percent":0.4, "hits":140000000, "ads":false},
+{"rank":433, "domain":"duote.com", "category":"Software", "visitors":6700000, "percent":0.4, "hits":74000000, "ads":true},
+{"rank":434, "domain":"opendns.com", "category":"Network Security", "visitors":6700000, "percent":0.4, "hits":130000000, "ads":true},
+{"rank":435, "domain":"webmd.com", "category":"Medical Literature & Resources", "visitors":6700000, "percent":0.4, "hits":140000000, "ads":true},
+{"rank":436, "domain":"itmedia.co.jp", "category":"Technology News", "visitors":6700000, "percent":0.4, "hits":59000000, "ads":true},
+{"rank":437, "domain":"pcauto.com.cn", "category":"Vehicle Shopping", "visitors":6700000, "percent":0.4, "hits":490000000, "ads":true},
+{"rank":438, "domain":"oyunlar1.com", "category":"Online Games", "visitors":6700000, "percent":0.4, "hits":720000000, "ads":true},
+{"rank":439, "domain":"iefxz.com", "category":"Software Utilities", "visitors":6700000, "percent":0.4, "hits":46000000, "ads":false},
+{"rank":440, "domain":"yaplog.jp", "category":"Blogging Resources & Services", "visitors":6700000, "percent":0.4, "hits":66000000, "ads":true},
+{"rank":441, "domain":"gyyx.cn", "category":"Online Games", "visitors":6700000, "percent":0.4, "hits":66000000, "ads":false},
+{"rank":442, "domain":"whitepages.com", "category":"Search Engines", "visitors":6700000, "percent":0.4, "hits":190000000, "ads":true},
+{"rank":443, "domain":"kuaibo.com", "category":"Search Engines", "visitors":6700000, "percent":0.4, "hits":160000000, "ads":true},
+{"rank":444, "domain":"y8.com", "category":"Flash-Based Entertainment", "visitors":6700000, "percent":0.4, "hits":870000000, "ads":true},
+{"rank":445, "domain":"digg.com", "category":"Online Communities", "visitors":6600000, "percent":0.4, "hits":88000000, "ads":true},
+{"rank":446, "domain":"webs.com", "category":"Web Design & Development", "visitors":6600000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":447, "domain":"tiexue.net", "category":"Military", "visitors":6200000, "percent":0.4, "hits":170000000, "ads":true},
+{"rank":448, "domain":"ourtoolbar.com", "category":"Web Apps & Online Tools", "visitors":6200000, "percent":0.4, "hits":31000000, "ads":true},
+{"rank":449, "domain":"115.com", "category":"Search Engines", "visitors":6200000, "percent":0.4, "hits":67000000, "ads":true},
+{"rank":450, "domain":"otto.de", "category":"Mass Merchants & Department Stores", "visitors":6200000, "percent":0.4, "hits":450000000, "ads":false},
+{"rank":451, "domain":"camzap.com", "category":"Webcams & Virtual Tours", "visitors":6200000, "percent":0.4, "hits":31000000, "ads":false},
+{"rank":452, "domain":"domaintools.com", "category":"Web Hosting & Domain Registration", "visitors":6200000, "percent":0.4, "hits":55000000, "ads":true},
+{"rank":453, "domain":"acer.com", "category":"Desktops", "visitors":6200000, "percent":0.4, "hits":120000000, "ads":false},
+{"rank":454, "domain":"pchome.net", "category":"Computers & Electronics", "visitors":6200000, "percent":0.4, "hits":67000000, "ads":true},
+{"rank":455, "domain":"symantec.com", "category":"Antivirus & Malware", "visitors":6200000, "percent":0.4, "hits":67000000, "ads":false},
+{"rank":456, "domain":"51job.com", "category":"Jobs", "visitors":6200000, "percent":0.4, "hits":230000000, "ads":true},
+{"rank":457, "domain":"latimes.com", "category":"Newspapers", "visitors":6200000, "percent":0.4, "hits":96000000, "ads":true},
+{"rank":458, "domain":"aufeminin.com", "category":"Women's Interests", "visitors":6200000, "percent":0.4, "hits":170000000, "ads":true},
+{"rank":459, "domain":"mobile.de", "category":"Vehicle Shopping", "visitors":6200000, "percent":0.4, "hits":1300000000, "ads":true},
+{"rank":460, "domain":"engadget.com", "category":"Consumer Electronics", "visitors":6200000, "percent":0.4, "hits":72000000, "ads":true},
+{"rank":461, "domain":"associatedcontent.com", "category":"General Reference", "visitors":6200000, "percent":0.4, "hits":67000000, "ads":true},
+{"rank":462, "domain":"yezizhu.com", "category":"Online Games", "visitors":6200000, "percent":0.4, "hits":67000000, "ads":true},
+{"rank":463, "domain":"filesonic.com", "category":"File Sharing & Hosting", "visitors":6200000, "percent":0.4, "hits":73000000, "ads":false},
+{"rank":464, "domain":"wiktionary.org", "category":"Dictionaries & Encyclopedias", "visitors":6200000, "percent":0.4, "hits":41000000, "ads":false},
+{"rank":465, "domain":"usatoday.com", "category":"Newspapers", "visitors":6200000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":466, "domain":"61.com", "category":"Children", "visitors":6200000, "percent":0.4, "hits":120000000, "ads":true},
+{"rank":467, "domain":"vnexpress.net", "category":"News", "visitors":6200000, "percent":0.4, "hits":540000000, "ads":true},
+{"rank":468, "domain":"daily.co.jp", "category":"Newspapers", "visitors":6100000, "percent":0.4, "hits":38000000, "ads":true},
+{"rank":469, "domain":"ct10000.com", "category":"Phone Service Providers", "visitors":6100000, "percent":0.4, "hits":130000000, "ads":true},
+{"rank":470, "domain":"clubpenguin.com", "category":"Virtual Worlds", "visitors":6100000, "percent":0.4, "hits":270000000, "ads":false},
+{"rank":471, "domain":"amazon.fr", "category":"Shopping Portals & Search Engines", "visitors":6100000, "percent":0.4, "hits":330000000, "ads":false},
+{"rank":472, "domain":"tu.tv", "category":"Online Video", "visitors":6100000, "percent":0.4, "hits":110000000, "ads":true},
+{"rank":473, "domain":"speedtest.net", "category":"Web Apps & Online Tools", "visitors":6100000, "percent":0.4, "hits":38000000, "ads":true},
+{"rank":474, "domain":"armorgames.com", "category":"Online Games", "visitors":6100000, "percent":0.4, "hits":130000000, "ads":true},
+{"rank":475, "domain":"wordpress.org", "category":"Blogging Resources & Services", "visitors":6100000, "percent":0.4, "hits":120000000, "ads":false},
+{"rank":476, "domain":"ip138.com", "category":"Directories & Listings", "visitors":6100000, "percent":0.4, "hits":49000000, "ads":true},
+{"rank":477, "domain":"interia.pl", "category":"Web Portals", "visitors":6100000, "percent":0.4, "hits":720000000, "ads":true},
+{"rank":478, "domain":"detik.com", "category":"Web Portals", "visitors":6100000, "percent":0.4, "hits":67000000, "ads":true},
+{"rank":479, "domain":"docstoc.com", "category":"", "visitors":6100000, "percent":0.4, "hits":31000000, "ads":true},
+{"rank":480, "domain":"costco.com", "category":"Mass Merchants & Department Stores", "visitors":6100000, "percent":0.4, "hits":280000000, "ads":false},
+{"rank":481, "domain":"skyrock.com", "category":"Social Networks", "visitors":6100000, "percent":0.4, "hits":970000000, "ads":true},
+{"rank":482, "domain":"logsoku.com", "category":"Online Communities", "visitors":6100000, "percent":0.4, "hits":24000000, "ads":true},
+{"rank":483, "domain":"avira.com", "category":"Antivirus & Malware", "visitors":6100000, "percent":0.4, "hits":38000000, "ads":false},
+{"rank":484, "domain":"cnzz.com", "category":"Web Stats & Analytics", "visitors":6100000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":485, "domain":"picnik.com", "category":"Photographic & Digital Arts", "visitors":6100000, "percent":0.4, "hits":890000000, "ads":true},
+{"rank":486, "domain":"fanbox.com", "category":"MLM & Business Opportunities", "visitors":6100000, "percent":0.4, "hits":42000000, "ads":true},
+{"rank":487, "domain":"ustream.tv", "category":"Online Video", "visitors":6100000, "percent":0.4, "hits":81000000, "ads":true},
+{"rank":488, "domain":"formspring.me", "category":"Social Networks", "visitors":6100000, "percent":0.4, "hits":710000000, "ads":false},
+{"rank":489, "domain":"weather.com.cn", "category":"Weather", "visitors":6100000, "percent":0.4, "hits":60000000, "ads":true},
+{"rank":490, "domain":"rutracker.org", "category":"", "visitors":6100000, "percent":0.4, "hits":440000000, "ads":true},
+{"rank":491, "domain":"suite101.com", "category":"Business & Industrial", "visitors":6100000, "percent":0.4, "hits":42000000, "ads":true},
+{"rank":492, "domain":"weblio.jp", "category":"Dictionaries & Encyclopedias", "visitors":6100000, "percent":0.4, "hits":31000000, "ads":true},
+{"rank":493, "domain":"wanmei.com", "category":"Vision Care", "visitors":6000000, "percent":0.4, "hits":89000000, "ads":false},
+{"rank":494, "domain":"baofeng.com", "category":"Media Players", "visitors":5700000, "percent":0.4, "hits":34000000, "ads":true},
+{"rank":495, "domain":"kickasstorrents.com", "category":"File Sharing & Hosting", "visitors":5700000, "percent":0.4, "hits":170000000, "ads":false},
+{"rank":496, "domain":"ebuddy.com", "category":"Email & Messaging", "visitors":5700000, "percent":0.4, "hits":280000000, "ads":true},
+{"rank":497, "domain":"hotels.com", "category":"Hotels & Accommodations", "visitors":5700000, "percent":0.4, "hits":130000000, "ads":true},
+{"rank":498, "domain":"imvu.com", "category":"Social Networks", "visitors":5700000, "percent":0.4, "hits":190000000, "ads":true},
+{"rank":499, "domain":"zylom.com", "category":"Online Games", "visitors":5700000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":500, "domain":"cmbchina.com", "category":"Banking", "visitors":5600000, "percent":0.4, "hits":96000000, "ads":true},
+{"rank":501, "domain":"bloomberg.com", "category":"Commodities & Futures Trading", "visitors":5600000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":502, "domain":"rr.com", "category":"Web Portals", "visitors":5600000, "percent":0.4, "hits":720000000, "ads":true},
+{"rank":503, "domain":"yam.com", "category":"Web Portals", "visitors":5600000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":504, "domain":"junyilm.com", "category":"", "visitors":5600000, "percent":0.4, "hits":34000000, "ads":false},
+{"rank":505, "domain":"fresheye.com", "category":"Web Portals", "visitors":5600000, "percent":0.4, "hits":34000000, "ads":true},
+{"rank":506, "domain":"pchome.com.tw", "category":"Web Portals", "visitors":5600000, "percent":0.4, "hits":380000000, "ads":true},
+{"rank":507, "domain":"asiae.co.kr", "category":"Movies", "visitors":5600000, "percent":0.4, "hits":61000000, "ads":true},
+{"rank":508, "domain":"hc360.com", "category":"E-Commerce Services", "visitors":5600000, "percent":0.4, "hits":110000000, "ads":true},
+{"rank":509, "domain":"verizon.com", "category":"Service Providers", "visitors":5600000, "percent":0.4, "hits":800000000, "ads":true},
+{"rank":510, "domain":"groupalia.com", "category":"Hotels & Accommodations", "visitors":5600000, "percent":0.4, "hits":50000000, "ads":false},
+{"rank":511, "domain":"114la.com", "category":"Directories & Listings", "visitors":5600000, "percent":0.4, "hits":160000000, "ads":true},
+{"rank":512, "domain":"yandex.ua", "category":"Search Engines", "visitors":5600000, "percent":0.4, "hits":450000000, "ads":true},
+{"rank":513, "domain":"argos.co.uk", "category":"Mass Merchants & Department Stores", "visitors":5600000, "percent":0.4, "hits":370000000, "ads":true},
+{"rank":514, "domain":"tbs.co.jp", "category":"TV Networks & Stations", "visitors":5600000, "percent":0.4, "hits":73000000, "ads":true},
+{"rank":515, "domain":"juegos.com", "category":"Online Games", "visitors":5600000, "percent":0.4, "hits":410000000, "ads":true},
+{"rank":516, "domain":"gazeta.pl", "category":"Newspapers", "visitors":5600000, "percent":0.4, "hits":370000000, "ads":true},
+{"rank":517, "domain":"zhaopin.com", "category":"Job Listings", "visitors":5600000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":518, "domain":"elmundo.es", "category":"Newspapers", "visitors":5600000, "percent":0.4, "hits":230000000, "ads":true},
+{"rank":519, "domain":"4055.com", "category":"", "visitors":5600000, "percent":0.4, "hits":28000000, "ads":true},
+{"rank":520, "domain":"archive.org", "category":"General Reference", "visitors":5600000, "percent":0.4, "hits":120000000, "ads":true},
+{"rank":521, "domain":"passport.net", "category":"Email & Messaging", "visitors":5600000, "percent":0.4, "hits":81000000, "ads":true},
+{"rank":522, "domain":"runup.cn", "category":"Computer & Video Games", "visitors":5600000, "percent":0.4, "hits":23000000, "ads":false},
+{"rank":523, "domain":"shop-pro.jp", "category":"E-Commerce Services", "visitors":5600000, "percent":0.4, "hits":160000000, "ads":true},
+{"rank":524, "domain":"panasonic.jp", "category":"Computers & Electronics", "visitors":5600000, "percent":0.4, "hits":89000000, "ads":false},
+{"rank":525, "domain":"cctv.com", "category":"TV & Video", "visitors":5600000, "percent":0.4, "hits":41000000, "ads":true},
+{"rank":526, "domain":"usagc.org", "category":"Visa & Immigration", "visitors":5600000, "percent":0.4, "hits":31000000, "ads":true},
+{"rank":527, "domain":"jrj.com.cn", "category":"Investing", "visitors":5600000, "percent":0.4, "hits":130000000, "ads":true},
+{"rank":528, "domain":"seznam.cz", "category":"Web Portals", "visitors":5600000, "percent":0.4, "hits":2100000000, "ads":true},
+{"rank":529, "domain":"yesky.com", "category":"Computers & Electronics", "visitors":5600000, "percent":0.4, "hits":67000000, "ads":true},
+{"rank":530, "domain":"csdn.net", "category":"Computers & Electronics", "visitors":5600000, "percent":0.4, "hits":79000000, "ads":true},
+{"rank":531, "domain":"91.com", "category":"Flash-Based Entertainment", "visitors":5600000, "percent":0.4, "hits":96000000, "ads":true},
+{"rank":532, "domain":"xe.com", "category":"Travel", "visitors":5600000, "percent":0.4, "hits":110000000, "ads":true},
+{"rank":533, "domain":"qip.ru", "category":"Web Portals", "visitors":5600000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":534, "domain":"myvideo.de", "category":"Online Video", "visitors":5600000, "percent":0.4, "hits":140000000, "ads":true},
+{"rank":535, "domain":"yfrog.com", "category":"", "visitors":5600000, "percent":0.4, "hits":81000000, "ads":true},
+{"rank":536, "domain":"spiegel.de", "category":"Newspapers", "visitors":5600000, "percent":0.4, "hits":370000000, "ads":true},
+{"rank":537, "domain":"hm.com", "category":"Apparel", "visitors":5600000, "percent":0.4, "hits":450000000, "ads":false},
+{"rank":538, "domain":"abcnews.go.com", "category":"Broadcast & Network News", "visitors":5600000, "percent":0.4, "hits":120000000, "ads":false},
+{"rank":539, "domain":"1ting.com", "category":"Music & Audio", "visitors":5600000, "percent":0.4, "hits":120000000, "ads":true},
+{"rank":540, "domain":"lowes.com", "category":"Home Improvement", "visitors":5600000, "percent":0.4, "hits":310000000, "ads":true},
+{"rank":541, "domain":"zuixiaoyao.com", "category":"Face & Body Care", "visitors":5600000, "percent":0.4, "hits":38000000, "ads":true},
+{"rank":542, "domain":"interpark.com", "category":"Shopping", "visitors":5600000, "percent":0.4, "hits":89000000, "ads":false},
+{"rank":543, "domain":"nikkei.com", "category":"Business News", "visitors":5600000, "percent":0.4, "hits":130000000, "ads":true},
+{"rank":544, "domain":"corriere.it", "category":"Newspapers", "visitors":5600000, "percent":0.4, "hits":370000000, "ads":true},
+{"rank":545, "domain":"people.com", "category":"Celebrities & Entertainment News", "visitors":5600000, "percent":0.4, "hits":600000000, "ads":true},
+{"rank":546, "domain":"wikihow.com", "category":"How-To", "visitors":5600000, "percent":0.4, "hits":37000000, "ads":true},
+{"rank":547, "domain":"dropbox.com", "category":"File Sharing & Hosting", "visitors":5600000, "percent":0.4, "hits":190000000, "ads":false},
+{"rank":548, "domain":"monster.com", "category":"Jobs", "visitors":5500000, "percent":0.4, "hits":260000000, "ads":true},
+{"rank":549, "domain":"partypoker.it", "category":"Games", "visitors":5500000, "percent":0.4, "hits":41000000, "ads":true},
+{"rank":550, "domain":"mynet.com", "category":"Web Portals", "visitors":5500000, "percent":0.4, "hits":1100000000, "ads":true},
+{"rank":551, "domain":"ig.com.br", "category":"Web Portals", "visitors":5500000, "percent":0.4, "hits":970000000, "ads":true},
+{"rank":552, "domain":"dantri.com.vn", "category":"People & Society", "visitors":5500000, "percent":0.4, "hits":330000000, "ads":true},
+{"rank":553, "domain":"dianping.com", "category":"Dining Guides", "visitors":5500000, "percent":0.4, "hits":72000000, "ads":true},
+{"rank":554, "domain":"it168.com", "category":"Computers & Electronics", "visitors":5500000, "percent":0.4, "hits":61000000, "ads":true},
+{"rank":555, "domain":"wunderground.com", "category":"Weather", "visitors":5500000, "percent":0.4, "hits":210000000, "ads":true},
+{"rank":556, "domain":"v1.cn", "category":"", "visitors":5500000, "percent":0.4, "hits":45000000, "ads":true},
+{"rank":557, "domain":"freeonlinegames.com", "category":"Casual Games", "visitors":5500000, "percent":0.4, "hits":120000000, "ads":true},
+{"rank":558, "domain":"huangjinquxian.com", "category":"", "visitors":5500000, "percent":0.4, "hits":16000000, "ads":false},
+{"rank":559, "domain":"barnesandnoble.com", "category":"Book Retailers", "visitors":5500000, "percent":0.4, "hits":280000000, "ads":true},
+{"rank":560, "domain":"univision.com", "category":"Web Portals", "visitors":5500000, "percent":0.4, "hits":280000000, "ads":true},
+{"rank":561, "domain":"fixya.com", "category":"Consumer Affairs & Product Reviews", "visitors":5500000, "percent":0.4, "hits":50000000, "ads":true},
+{"rank":562, "domain":"ovi.com", "category":"Mobile Apps & Add-Ons", "visitors":5200000, "percent":0.3, "hits":190000000, "ads":false},
+{"rank":563, "domain":"pixmania.com", "category":"Consumer Electronics", "visitors":5200000, "percent":0.3, "hits":140000000, "ads":true},
+{"rank":564, "domain":"mtv.com", "category":"Music & Audio", "visitors":5200000, "percent":0.3, "hits":97000000, "ads":true},
+{"rank":565, "domain":"ea.com", "category":"Computer & Video Games", "visitors":5200000, "percent":0.3, "hits":140000000, "ads":true},
+{"rank":566, "domain":"pc120.com", "category":"Antivirus & Malware", "visitors":5200000, "percent":0.3, "hits":38000000, "ads":false},
+{"rank":567, "domain":"me.com", "category":"Mobile Apps & Add-Ons", "visitors":5200000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":568, "domain":"sprint.com", "category":"Mobile & Wireless", "visitors":5200000, "percent":0.3, "hits":340000000, "ads":true},
+{"rank":569, "domain":"xbox.com", "category":"Xbox", "visitors":5200000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":570, "domain":"seoul.co.kr", "category":"Law & Government", "visitors":5100000, "percent":0.3, "hits":16000000, "ads":true},
+{"rank":571, "domain":"pogo.com", "category":"Casual Games", "visitors":5100000, "percent":0.3, "hits":1100000000, "ads":true},
+{"rank":572, "domain":"cbsnews.com", "category":"News", "visitors":5100000, "percent":0.3, "hits":89000000, "ads":true},
+{"rank":573, "domain":"samsungmobile.com", "category":"Mobile Phones", "visitors":5100000, "percent":0.3, "hits":45000000, "ads":true},
+{"rank":574, "domain":"utorrent.com", "category":"Multimedia Software", "visitors":5100000, "percent":0.3, "hits":51000000, "ads":false},
+{"rank":575, "domain":"blogcu.com", "category":"Blogging Resources & Services", "visitors":5100000, "percent":0.3, "hits":81000000, "ads":true},
+{"rank":576, "domain":"wn.com", "category":"World News", "visitors":5100000, "percent":0.3, "hits":23000000, "ads":true},
+{"rank":577, "domain":"partypoker.fr", "category":"", "visitors":5100000, "percent":0.3, "hits":55000000, "ads":true},
+{"rank":578, "domain":"mufg.jp", "category":"Banking", "visitors":5100000, "percent":0.3, "hits":170000000, "ads":false},
+{"rank":579, "domain":"rutube.ru", "category":"Video Sharing", "visitors":5100000, "percent":0.3, "hits":67000000, "ads":true},
+{"rank":580, "domain":"52pk.com", "category":"Online Games", "visitors":5100000, "percent":0.3, "hits":120000000, "ads":true},
+{"rank":581, "domain":"tuenti.com", "category":"Social Networks", "visitors":5100000, "percent":0.3, "hits":8400000000, "ads":false},
+{"rank":582, "domain":"acrobat.com", "category":"Business & Productivity Software", "visitors":5100000, "percent":0.3, "hits":61000000, "ads":true},
+{"rank":583, "domain":"ticketmaster.com", "category":"Ticket Sales", "visitors":5100000, "percent":0.3, "hits":250000000, "ads":true},
+{"rank":584, "domain":"europa.eu", "category":"Multilateral Organizations", "visitors":5100000, "percent":0.3, "hits":130000000, "ads":false},
+{"rank":585, "domain":"forbes.com", "category":"Business News", "visitors":5100000, "percent":0.3, "hits":130000000, "ads":true},
+{"rank":586, "domain":"manta.com", "category":"Business & Industrial", "visitors":5100000, "percent":0.3, "hits":50000000, "ads":true},
+{"rank":587, "domain":"foxtab.com", "category":"Internet Clients & Browsers", "visitors":5100000, "percent":0.3, "hits":19000000, "ads":true},
+{"rank":588, "domain":"winamp.com", "category":"Media Players", "visitors":5100000, "percent":0.3, "hits":55000000, "ads":true},
+{"rank":589, "domain":"ryanair.com", "category":"Air Travel", "visitors":5100000, "percent":0.3, "hits":88000000, "ads":true},
+{"rank":590, "domain":"sanook.com", "category":"Web Portals", "visitors":5100000, "percent":0.3, "hits":310000000, "ads":true},
+{"rank":591, "domain":"ya.ru", "category":"Search Engines", "visitors":5100000, "percent":0.3, "hits":130000000, "ads":true},
+{"rank":592, "domain":"break.com", "category":"Humor", "visitors":5100000, "percent":0.3, "hits":110000000, "ads":true},
+{"rank":593, "domain":"unionsky.cn", "category":"MLM & Business Opportunities", "visitors":5100000, "percent":0.3, "hits":37000000, "ads":false},
+{"rank":594, "domain":"mp3raid.com", "category":"Music Streams & Downloads", "visitors":5100000, "percent":0.3, "hits":80000000, "ads":true},
+{"rank":595, "domain":"ccbill.com", "category":"Merchant Services & Payment Systems", "visitors":5100000, "percent":0.3, "hits":42000000, "ads":false},
+{"rank":596, "domain":"ninemsn.com.au", "category":"Celebrities & Entertainment News", "visitors":5100000, "percent":0.3, "hits":370000000, "ads":true},
+{"rank":597, "domain":"sony.jp", "category":"Computers & Electronics", "visitors":5100000, "percent":0.3, "hits":80000000, "ads":true},
+{"rank":598, "domain":"agame.com", "category":"Computer & Video Games", "visitors":5100000, "percent":0.3, "hits":190000000, "ads":true},
+{"rank":599, "domain":"zappos.com", "category":"Apparel", "visitors":5100000, "percent":0.3, "hits":300000000, "ads":false},
+{"rank":600, "domain":"sapo.pt", "category":"Web Portals", "visitors":5100000, "percent":0.3, "hits":400000000, "ads":true},
+{"rank":601, "domain":"addictinggames.com", "category":"Online Games", "visitors":5100000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":602, "domain":"thefind.com", "category":"Shopping Portals & Search Engines", "visitors":5100000, "percent":0.3, "hits":81000000, "ads":true},
+{"rank":603, "domain":"mercadolibre.com.mx", "category":"Classifieds", "visitors":5100000, "percent":0.3, "hits":360000000, "ads":true},
+{"rank":604, "domain":"zhcw.com", "category":"", "visitors":5100000, "percent":0.3, "hits":89000000, "ads":true},
+{"rank":605, "domain":"wer-kennt-wen.de", "category":"Social Networks", "visitors":5100000, "percent":0.3, "hits":3300000000, "ads":true},
+{"rank":606, "domain":"abril.com.br", "category":"Web Portals", "visitors":5100000, "percent":0.3, "hits":300000000, "ads":true},
+{"rank":607, "domain":"computerbild.de", "category":"Computers & Electronics", "visitors":5100000, "percent":0.3, "hits":140000000, "ads":true},
+{"rank":608, "domain":"windowsmedia.com", "category":"Music & Audio", "visitors":5100000, "percent":0.3, "hits":26000000, "ads":true},
+{"rank":609, "domain":"kx365.com", "category":"", "visitors":5100000, "percent":0.3, "hits":18000000, "ads":false},
+{"rank":610, "domain":"babycenter.com", "category":"Baby Care", "visitors":5100000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":611, "domain":"zoosk.com", "category":"Dating & Personals", "visitors":5100000, "percent":0.3, "hits":310000000, "ads":true},
+{"rank":612, "domain":"piriform.com", "category":"Software Utilities", "visitors":5100000, "percent":0.3, "hits":46000000, "ads":true},
+{"rank":613, "domain":"doctissimo.fr", "category":"Health", "visitors":5100000, "percent":0.3, "hits":160000000, "ads":true},
+{"rank":614, "domain":"sciencedirect.com", "category":"Science", "visitors":5100000, "percent":0.3, "hits":89000000, "ads":true},
+{"rank":615, "domain":"nttdocomo.co.jp", "category":"Mobile & Wireless", "visitors":5100000, "percent":0.3, "hits":120000000, "ads":false},
+{"rank":616, "domain":"china.com.cn", "category":"Internet & Telecom", "visitors":5100000, "percent":0.3, "hits":60000000, "ads":true},
+{"rank":617, "domain":"atdhe.net", "category":"Online Video", "visitors":5000000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":618, "domain":"radikal.ru", "category":"Photo & Video Software", "visitors":5000000, "percent":0.3, "hits":74000000, "ads":true},
+{"rank":619, "domain":"livescore.com", "category":"Team Sports", "visitors":5000000, "percent":0.3, "hits":600000000, "ads":true},
+{"rank":620, "domain":"kmart.com", "category":"Mass Merchants & Department Stores", "visitors":5000000, "percent":0.3, "hits":250000000, "ads":true},
+{"rank":621, "domain":"citibank.com", "category":"Finance", "visitors":5000000, "percent":0.3, "hits":300000000, "ads":true},
+{"rank":622, "domain":"123people.com", "category":"People Search", "visitors":5000000, "percent":0.3, "hits":34000000, "ads":true},
+{"rank":623, "domain":"ebay.com.au", "category":"Auctions", "visitors":5000000, "percent":0.3, "hits":1300000000, "ads":true},
+{"rank":624, "domain":"hyves.nl", "category":"Social Networks", "visitors":5000000, "percent":0.3, "hits":4000000000, "ads":true},
+{"rank":625, "domain":"tesco.com", "category":"Mass Merchants & Department Stores", "visitors":5000000, "percent":0.3, "hits":540000000, "ads":true},
+{"rank":626, "domain":"carview.co.jp", "category":"Autos & Vehicles", "visitors":5000000, "percent":0.3, "hits":300000000, "ads":true},
+{"rank":627, "domain":"chinahr.com", "category":"Jobs", "visitors":5000000, "percent":0.3, "hits":88000000, "ads":false},
+{"rank":628, "domain":"uploading.com", "category":"File Sharing & Hosting", "visitors":5000000, "percent":0.3, "hits":60000000, "ads":true},
+{"rank":629, "domain":"friendster.com", "category":"Social Networks", "visitors":5000000, "percent":0.3, "hits":230000000, "ads":true},
+{"rank":630, "domain":"47news.jp", "category":"News", "visitors":5000000, "percent":0.3, "hits":25000000, "ads":true},
+{"rank":631, "domain":"nhaccuatui.com", "category":"Viet Nam", "visitors":5000000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":632, "domain":"yoka.com", "category":"Fashion & Style", "visitors":5000000, "percent":0.3, "hits":170000000, "ads":true},
+{"rank":633, "domain":"365ub.com", "category":"Online Games", "visitors":5000000, "percent":0.3, "hits":28000000, "ads":false},
+{"rank":634, "domain":"etsy.com", "category":"Crafts", "visitors":5000000, "percent":0.3, "hits":860000000, "ads":false},
+{"rank":635, "domain":"khan.co.kr", "category":"Movies", "visitors":5000000, "percent":0.3, "hits":31000000, "ads":true},
+{"rank":636, "domain":"taleo.net", "category":"Management", "visitors":5000000, "percent":0.3, "hits":370000000, "ads":true},
+{"rank":637, "domain":"ana.co.jp", "category":"Air Travel", "visitors":4700000, "percent":0.3, "hits":160000000, "ads":false},
+{"rank":638, "domain":"wisegeek.com", "category":"How-To", "visitors":4700000, "percent":0.3, "hits":28000000, "ads":true},
+{"rank":639, "domain":"goo.gl", "category":"Web Services", "visitors":4700000, "percent":0.3, "hits":26000000, "ads":false},
+{"rank":640, "domain":"baixing.com", "category":"Real Estate", "visitors":4700000, "percent":0.3, "hits":330000000, "ads":true},
+{"rank":641, "domain":"kompas.com", "category":"Indonesia", "visitors":4700000, "percent":0.3, "hits":90000000, "ads":true},
+{"rank":642, "domain":"vatgia.com", "category":"Shopping", "visitors":4700000, "percent":0.3, "hits":61000000, "ads":true},
+{"rank":643, "domain":"bbvod.net", "category":"Movies", "visitors":4700000, "percent":0.3, "hits":38000000, "ads":true},
+{"rank":644, "domain":"2144.cn", "category":"Online Games", "visitors":4700000, "percent":0.3, "hits":160000000, "ads":true},
+{"rank":645, "domain":"fc2web.com", "category":"Web Hosting & Domain Registration", "visitors":4700000, "percent":0.3, "hits":31000000, "ads":true},
+{"rank":646, "domain":"udn.com", "category":"News", "visitors":4700000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":647, "domain":"priceminister.com", "category":"Shopping", "visitors":4700000, "percent":0.3, "hits":190000000, "ads":true},
+{"rank":648, "domain":"medicinenet.com", "category":"Health Conditions", "visitors":4700000, "percent":0.3, "hits":96000000, "ads":true},
+{"rank":649, "domain":"gd118114.cn", "category":"Web Services", "visitors":4700000, "percent":0.3, "hits":26000000, "ads":true},
+{"rank":650, "domain":"nike.com", "category":"Athletic Apparel", "visitors":4700000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":651, "domain":"timeanddate.com", "category":"Time & Calendars", "visitors":4700000, "percent":0.3, "hits":42000000, "ads":true},
+{"rank":652, "domain":"friv.com", "category":"Online Games", "visitors":4700000, "percent":0.3, "hits":130000000, "ads":true},
+{"rank":653, "domain":"irctc.co.in", "category":"Bus & Rail", "visitors":4700000, "percent":0.3, "hits":210000000, "ads":false},
+{"rank":654, "domain":"kuronekoyamato.co.jp", "category":"Mail & Package Delivery", "visitors":4700000, "percent":0.3, "hits":66000000, "ads":false},
+{"rank":655, "domain":"newegg.com", "category":"Hardware Components", "visitors":4700000, "percent":0.3, "hits":260000000, "ads":true},
+{"rank":656, "domain":"delta.com", "category":"Air Travel", "visitors":4700000, "percent":0.3, "hits":370000000, "ads":true},
+{"rank":657, "domain":"worldslastchance.com", "category":"Christianity", "visitors":4600000, "percent":0.3, "hits":13000000, "ads":true},
+{"rank":658, "domain":"immobilienscout24.de", "category":"Real Estate Listings", "visitors":4600000, "percent":0.3, "hits":550000000, "ads":true},
+{"rank":659, "domain":"ytn.co.kr", "category":"TV & Video", "visitors":4600000, "percent":0.3, "hits":16000000, "ads":true},
+{"rank":660, "domain":"xrea.com", "category":"Web Hosting & Domain Registration", "visitors":4600000, "percent":0.3, "hits":50000000, "ads":true},
+{"rank":661, "domain":"livingsocial.com", "category":"Coupons & Discount Offers", "visitors":4600000, "percent":0.3, "hits":61000000, "ads":true},
+{"rank":662, "domain":"stayfriends.de", "category":"Social Networks", "visitors":4600000, "percent":0.3, "hits":190000000, "ads":true},
+{"rank":663, "domain":"5d6d.com", "category":"Movies", "visitors":4600000, "percent":0.3, "hits":74000000, "ads":true},
+{"rank":664, "domain":"abc.go.com", "category":"TV Shows & Programs", "visitors":4600000, "percent":0.3, "hits":210000000, "ads":false},
+{"rank":665, "domain":"nasa.gov", "category":"Astronomy", "visitors":4600000, "percent":0.3, "hits":88000000, "ads":false},
+{"rank":666, "domain":"sonystyle.com", "category":"Consumer Electronics", "visitors":4600000, "percent":0.3, "hits":80000000, "ads":true},
+{"rank":667, "domain":"boc.cn", "category":"Currencies & Foreign Exchange", "visitors":4600000, "percent":0.3, "hits":120000000, "ads":false},
+{"rank":668, "domain":"kapook.com", "category":"Web Portals", "visitors":4600000, "percent":0.3, "hits":96000000, "ads":true},
+{"rank":669, "domain":"quepasa.com", "category":"Latinos & Latin-Americans", "visitors":4600000, "percent":0.3, "hits":170000000, "ads":true},
+{"rank":670, "domain":"qunar.com", "category":"Air Travel", "visitors":4600000, "percent":0.3, "hits":67000000, "ads":true},
+{"rank":671, "domain":"xingkong.com", "category":"People & Society", "visitors":4600000, "percent":0.3, "hits":24000000, "ads":false},
+{"rank":672, "domain":"lego.com", "category":"Toys", "visitors":4600000, "percent":0.3, "hits":450000000, "ads":false},
+{"rank":673, "domain":"dealtime.com", "category":"Shopping", "visitors":4600000, "percent":0.3, "hits":31000000, "ads":true},
+{"rank":674, "domain":"merriam-webster.com", "category":"Dictionaries & Encyclopedias", "visitors":4600000, "percent":0.3, "hits":81000000, "ads":true},
+{"rank":675, "domain":"cri.cn", "category":"News", "visitors":4600000, "percent":0.3, "hits":73000000, "ads":true},
+{"rank":676, "domain":"vietbao.vn", "category":"Newspapers", "visitors":4600000, "percent":0.3, "hits":50000000, "ads":true},
+{"rank":677, "domain":"edaily.co.kr", "category":"News", "visitors":4600000, "percent":0.3, "hits":14000000, "ads":true},
+{"rank":678, "domain":"blogmura.com", "category":"Blogging Resources & Services", "visitors":4600000, "percent":0.3, "hits":96000000, "ads":true},
+{"rank":679, "domain":"linksynergy.com", "category":"Affiliate Programs", "visitors":4600000, "percent":0.3, "hits":67000000, "ads":false},
+{"rank":680, "domain":"nydailynews.com", "category":"Gossip & Tabloid News", "visitors":4600000, "percent":0.3, "hits":66000000, "ads":true},
+{"rank":681, "domain":"partycasino.com", "category":"", "visitors":4600000, "percent":0.3, "hits":26000000, "ads":true},
+{"rank":682, "domain":"appspot.com", "category":"Web Apps & Online Tools", "visitors":4600000, "percent":0.3, "hits":67000000, "ads":true},
+{"rank":683, "domain":"cdiscount.com", "category":"Consumer Electronics", "visitors":4600000, "percent":0.3, "hits":330000000, "ads":true},
+{"rank":684, "domain":"causes.com", "category":"Social Issues & Advocacy", "visitors":4600000, "percent":0.3, "hits":37000000, "ads":true},
+{"rank":685, "domain":"elpais.com", "category":"Newspapers", "visitors":4600000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":686, "domain":"kapihospital.de", "category":"Online Games", "visitors":4600000, "percent":0.3, "hits":67000000, "ads":false},
+{"rank":687, "domain":"52yeyou.com", "category":"", "visitors":4600000, "percent":0.3, "hits":14000000, "ads":false},
+{"rank":688, "domain":"xuite.net", "category":"Blogging Resources & Services", "visitors":4600000, "percent":0.3, "hits":87000000, "ads":true},
+{"rank":689, "domain":"t-mobile.com", "category":"Mobile Phones", "visitors":4600000, "percent":0.3, "hits":300000000, "ads":true},
+{"rank":690, "domain":"staples.com", "category":"Office Supplies", "visitors":4600000, "percent":0.3, "hits":160000000, "ads":true},
+{"rank":691, "domain":"kbs.co.kr", "category":"TV & Video", "visitors":4600000, "percent":0.3, "hits":99000000, "ads":true},
+{"rank":692, "domain":"marca.com", "category":"Sports News", "visitors":4600000, "percent":0.3, "hits":410000000, "ads":true},
+{"rank":693, "domain":"idealo.de", "category":"Price Comparisons", "visitors":4600000, "percent":0.3, "hits":110000000, "ads":true},
+{"rank":694, "domain":"120ask.com", "category":"Health Conditions", "visitors":4600000, "percent":0.3, "hits":37000000, "ads":true},
+{"rank":695, "domain":"tmz.com", "category":"Celebrities & Entertainment News", "visitors":4600000, "percent":0.3, "hits":250000000, "ads":true},
+{"rank":696, "domain":"zshare.net", "category":"File Sharing & Hosting", "visitors":4600000, "percent":0.3, "hits":50000000, "ads":true},
+{"rank":697, "domain":"mtime.com", "category":"Movies", "visitors":4600000, "percent":0.3, "hits":82000000, "ads":true},
+{"rank":698, "domain":"hinet.net", "category":"Web Portals", "visitors":4600000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":699, "domain":"made-in-china.com", "category":"Business & Industrial", "visitors":4600000, "percent":0.3, "hits":67000000, "ads":true},
+{"rank":700, "domain":"mycom.co.jp", "category":"Technology News", "visitors":4600000, "percent":0.3, "hits":26000000, "ads":true},
+{"rank":701, "domain":"articlesbase.com", "category":"Business & Industrial", "visitors":4600000, "percent":0.3, "hits":34000000, "ads":true},
+{"rank":702, "domain":"ca.gov", "category":"State & Local Government", "visitors":4600000, "percent":0.3, "hits":310000000, "ads":true},
+{"rank":703, "domain":"rian.ru", "category":"Web Portals", "visitors":4600000, "percent":0.3, "hits":61000000, "ads":true},
+{"rank":704, "domain":"zaycev.net", "category":"Music Streams & Downloads", "visitors":4600000, "percent":0.3, "hits":300000000, "ads":true},
+{"rank":705, "domain":"superpages.com", "category":"Business & Personal Listings", "visitors":4600000, "percent":0.3, "hits":51000000, "ads":true},
+{"rank":706, "domain":"examiner.com", "category":"News", "visitors":4600000, "percent":0.3, "hits":50000000, "ads":true},
+{"rank":707, "domain":"freakshare.com", "category":"File Sharing & Hosting", "visitors":4600000, "percent":0.3, "hits":61000000, "ads":true},
+{"rank":708, "domain":"888.com", "category":"", "visitors":4600000, "percent":0.3, "hits":23000000, "ads":true},
+{"rank":709, "domain":"focus.cn", "category":"Dictionaries & Encyclopedias", "visitors":4600000, "percent":0.3, "hits":79000000, "ads":true},
+{"rank":710, "domain":"btjunkie.org", "category":"File Sharing & Hosting", "visitors":4600000, "percent":0.3, "hits":230000000, "ads":true},
+{"rank":711, "domain":"stumbleupon.com", "category":"Web Apps & Online Tools", "visitors":4600000, "percent":0.3, "hits":190000000, "ads":true},
+{"rank":712, "domain":"priceline.com", "category":"Travel", "visitors":4600000, "percent":0.3, "hits":230000000, "ads":true},
+{"rank":713, "domain":"wachovia.com", "category":"Banking", "visitors":4600000, "percent":0.3, "hits":540000000, "ads":true},
+{"rank":714, "domain":"with2.net", "category":"Blogging Resources & Services", "visitors":4600000, "percent":0.3, "hits":81000000, "ads":true},
+{"rank":715, "domain":"rbc.ru", "category":"Business News", "visitors":4600000, "percent":0.3, "hits":190000000, "ads":true},
+{"rank":716, "domain":"victoriassecret.com", "category":"Undergarments", "visitors":4600000, "percent":0.3, "hits":540000000, "ads":true},
+{"rank":717, "domain":"wiley.com", "category":"Books & Literature", "visitors":4600000, "percent":0.3, "hits":81000000, "ads":true},
+{"rank":718, "domain":"bahn.de", "category":"Bus & Rail", "visitors":4600000, "percent":0.3, "hits":190000000, "ads":true},
+{"rank":719, "domain":"sky.com", "category":"Web Portals", "visitors":4600000, "percent":0.3, "hits":480000000, "ads":true},
+{"rank":720, "domain":"springerlink.com", "category":"Science", "visitors":4600000, "percent":0.3, "hits":55000000, "ads":true},
+{"rank":721, "domain":"heraldm.com", "category":"Newspapers", "visitors":4600000, "percent":0.3, "hits":9900000, "ads":true},
+{"rank":722, "domain":"xt918.com", "category":"", "visitors":4600000, "percent":0.3, "hits":45000000, "ads":false},
+{"rank":723, "domain":"freshwap.net", "category":"Computers & Electronics", "visitors":4500000, "percent":0.3, "hits":31000000, "ads":true},
+{"rank":724, "domain":"howstuffworks.com", "category":"How-To", "visitors":4500000, "percent":0.3, "hits":66000000, "ads":true},
+{"rank":725, "domain":"cartoonnetwork.com", "category":"Cartoons", "visitors":4500000, "percent":0.3, "hits":280000000, "ads":true},
+{"rank":726, "domain":"worldlingo.com", "category":"Foreign Language Resources", "visitors":4300000, "percent":0.3, "hits":35000000, "ads":true},
+{"rank":727, "domain":"clubic.com", "category":"Computers & Electronics", "visitors":4300000, "percent":0.3, "hits":54000000, "ads":true},
+{"rank":728, "domain":"classmates.com", "category":"Alumni & Reunions", "visitors":4300000, "percent":0.3, "hits":130000000, "ads":true},
+{"rank":729, "domain":"tf1.fr", "category":"TV Networks & Stations", "visitors":4300000, "percent":0.3, "hits":170000000, "ads":true},
+{"rank":730, "domain":"videosurf.com", "category":"Online Video", "visitors":4300000, "percent":0.3, "hits":81000000, "ads":false},
+{"rank":731, "domain":"sonyericsson.com", "category":"Mobile Phones", "visitors":4300000, "percent":0.3, "hits":81000000, "ads":true},
+{"rank":732, "domain":"bigfishgames.com", "category":"Computer & Video Games", "visitors":4300000, "percent":0.3, "hits":170000000, "ads":true},
+{"rank":733, "domain":"qook.co.kr", "category":"Network Security", "visitors":4200000, "percent":0.3, "hits":50000000, "ads":true},
+{"rank":734, "domain":"usazm.net", "category":"", "visitors":4200000, "percent":0.3, "hits":18000000, "ads":false},
+{"rank":735, "domain":"news.cn", "category":"Anime & Manga", "visitors":4200000, "percent":0.3, "hits":41000000, "ads":true},
+{"rank":736, "domain":"paran.com", "category":"Web Portals", "visitors":4200000, "percent":0.3, "hits":130000000, "ads":true},
+{"rank":737, "domain":"nationalgeographic.com", "category":"Magazines", "visitors":4200000, "percent":0.3, "hits":89000000, "ads":true},
+{"rank":738, "domain":"credit-agricole.fr", "category":"Banking", "visitors":4200000, "percent":0.3, "hits":340000000, "ads":true},
+{"rank":739, "domain":"plentyoffish.com", "category":"Online Communities", "visitors":4200000, "percent":0.3, "hits":2500000000, "ads":true},
+{"rank":740, "domain":"boosj.com", "category":"Online Video", "visitors":4200000, "percent":0.3, "hits":34000000, "ads":true},
+{"rank":741, "domain":"qqwangming.org", "category":"Online Goodies", "visitors":4200000, "percent":0.3, "hits":96000000, "ads":true},
+{"rank":742, "domain":"chinamobile.com", "category":"Service Providers", "visitors":4200000, "percent":0.3, "hits":110000000, "ads":true},
+{"rank":743, "domain":"businessweek.com", "category":"Business & Industrial", "visitors":4200000, "percent":0.3, "hits":38000000, "ads":true},
+{"rank":744, "domain":"hani.co.kr", "category":"Newspapers", "visitors":4200000, "percent":0.3, "hits":19000000, "ads":true},
+{"rank":745, "domain":"idownloadunlimited.com", "category":"Multimedia Software", "visitors":4200000, "percent":0.3, "hits":24000000, "ads":false},
+{"rank":746, "domain":"ocnk.net", "category":"Shopping Portals & Search Engines", "visitors":4200000, "percent":0.3, "hits":90000000, "ads":true},
+{"rank":747, "domain":"j-cast.com", "category":"Business News", "visitors":4200000, "percent":0.3, "hits":23000000, "ads":true},
+{"rank":748, "domain":"urbandictionary.com", "category":"Humor", "visitors":4200000, "percent":0.3, "hits":50000000, "ads":true},
+{"rank":749, "domain":"top100.cn", "category":"Music & Audio", "visitors":4200000, "percent":0.3, "hits":80000000, "ads":true},
+{"rank":750, "domain":"vivanews.com", "category":"News", "visitors":4200000, "percent":0.3, "hits":34000000, "ads":true},
+{"rank":751, "domain":"easyjet.com", "category":"Travel", "visitors":4200000, "percent":0.3, "hits":170000000, "ads":true},
+{"rank":752, "domain":"ilmeteo.it", "category":"Weather", "visitors":4200000, "percent":0.3, "hits":140000000, "ads":true},
+{"rank":753, "domain":"gamebabylon.com", "category":"Online Games", "visitors":4200000, "percent":0.3, "hits":26000000, "ads":true},
+{"rank":754, "domain":"hurriyet.com.tr", "category":"Newspapers", "visitors":4200000, "percent":0.3, "hits":720000000, "ads":true},
+{"rank":755, "domain":"itv.com", "category":"TV Networks & Stations", "visitors":4200000, "percent":0.3, "hits":140000000, "ads":true},
+{"rank":756, "domain":"iwon.com", "category":"Online Games", "visitors":4200000, "percent":0.3, "hits":73000000, "ads":true},
+{"rank":757, "domain":"browserchoice.eu", "category":"Internet Clients & Browsers", "visitors":4200000, "percent":0.3, "hits":26000000, "ads":false},
+{"rank":758, "domain":"aa.com", "category":"Air Travel", "visitors":4200000, "percent":0.3, "hits":250000000, "ads":true},
+{"rank":759, "domain":"yahoo-mbga.jp", "category":"Online Games", "visitors":4200000, "percent":0.3, "hits":250000000, "ads":false},
+{"rank":760, "domain":"bidders.co.jp", "category":"Auctions", "visitors":4200000, "percent":0.3, "hits":81000000, "ads":true},
+{"rank":761, "domain":"chefkoch.de", "category":"Cooking & Recipes", "visitors":4200000, "percent":0.3, "hits":180000000, "ads":true},
+{"rank":762, "domain":"alimama.com", "category":"Affiliate Programs", "visitors":4200000, "percent":0.3, "hits":110000000, "ads":true},
+{"rank":763, "domain":"sympatico.ca", "category":"Web Portals", "visitors":4200000, "percent":0.3, "hits":160000000, "ads":true},
+{"rank":764, "domain":"farmville.com", "category":"Simulation Games", "visitors":4200000, "percent":0.3, "hits":720000000, "ads":true},
+{"rank":765, "domain":"freedownloadscenter.com", "category":"Freeware & Shareware", "visitors":4200000, "percent":0.3, "hits":26000000, "ads":true},
+{"rank":766, "domain":"readnovel.com", "category":"E-Books", "visitors":4200000, "percent":0.3, "hits":370000000, "ads":true},
+{"rank":767, "domain":"torrentreactor.net", "category":"File Sharing & Hosting", "visitors":4200000, "percent":0.3, "hits":29000000, "ads":true},
+{"rank":768, "domain":"national-lottery.co.uk", "category":"", "visitors":4200000, "percent":0.3, "hits":270000000, "ads":true},
+{"rank":769, "domain":"cooks.com", "category":"Cooking & Recipes", "visitors":4200000, "percent":0.3, "hits":130000000, "ads":true},
+{"rank":770, "domain":"chinaz.com", "category":"Search Engines", "visitors":4200000, "percent":0.3, "hits":160000000, "ads":true},
+{"rank":771, "domain":"aolnews.com", "category":"News", "visitors":4200000, "percent":0.3, "hits":61000000, "ads":true},
+{"rank":772, "domain":"infospace.com", "category":"Search Engines", "visitors":4200000, "percent":0.3, "hits":110000000, "ads":true},
+{"rank":773, "domain":"airasia.com", "category":"Air Travel", "visitors":4200000, "percent":0.3, "hits":230000000, "ads":true},
+{"rank":774, "domain":"stackoverflow.com", "category":"Programming", "visitors":4200000, "percent":0.3, "hits":46000000, "ads":true},
+{"rank":775, "domain":"chinadaily.com.cn", "category":"News", "visitors":4200000, "percent":0.3, "hits":34000000, "ads":true},
+{"rank":776, "domain":"pronto.com", "category":"Price Comparisons", "visitors":4200000, "percent":0.3, "hits":51000000, "ads":true},
+{"rank":777, "domain":"novoteka.ru", "category":"Newspapers", "visitors":4200000, "percent":0.3, "hits":72000000, "ads":true},
+{"rank":778, "domain":"imagevenue.com", "category":"Photo & Image Sharing", "visitors":4200000, "percent":0.3, "hits":96000000, "ads":true},
+{"rank":779, "domain":"pclady.com.cn", "category":"Fashion & Style", "visitors":4200000, "percent":0.3, "hits":110000000, "ads":true},
+{"rank":780, "domain":"best-price.com", "category":"Price Comparisons", "visitors":4200000, "percent":0.3, "hits":38000000, "ads":true},
+{"rank":781, "domain":"wowan365.com", "category":"", "visitors":4200000, "percent":0.3, "hits":23000000, "ads":false},
+{"rank":782, "domain":"gigazine.net", "category":"Celebrities & Entertainment News", "visitors":4200000, "percent":0.3, "hits":31000000, "ads":true},
+{"rank":783, "domain":"cbssports.com", "category":"Sports News", "visitors":4200000, "percent":0.3, "hits":720000000, "ads":true},
+{"rank":784, "domain":"mozilla-europe.org", "category":"Internet Clients & Browsers", "visitors":4200000, "percent":0.3, "hits":19000000, "ads":false},
+{"rank":785, "domain":"vzw.com", "category":"Service Providers", "visitors":4200000, "percent":0.3, "hits":80000000, "ads":true},
+{"rank":786, "domain":"pcworld.com", "category":"Technology News", "visitors":4200000, "percent":0.3, "hits":37000000, "ads":true},
+{"rank":787, "domain":"fotolog.com", "category":"Photo & Video Sharing", "visitors":4200000, "percent":0.3, "hits":280000000, "ads":true},
+{"rank":788, "domain":"ctrip.com", "category":"Travel", "visitors":4200000, "percent":0.3, "hits":89000000, "ads":true},
+{"rank":789, "domain":"3suisses.fr", "category":"Apparel", "visitors":4200000, "percent":0.3, "hits":170000000, "ads":true},
+{"rank":790, "domain":"information.com", "category":"Search Engines", "visitors":4200000, "percent":0.3, "hits":29000000, "ads":true},
+{"rank":791, "domain":"grepolis.com", "category":"Massive Multiplayer", "visitors":4200000, "percent":0.3, "hits":1100000000, "ads":false},
+{"rank":792, "domain":"freechal.com", "category":"Web Portals", "visitors":4200000, "percent":0.3, "hits":25000000, "ads":true},
+{"rank":793, "domain":"teoma.com", "category":"Search Engines", "visitors":4200000, "percent":0.3, "hits":50000000, "ads":true},
+{"rank":794, "domain":"izlesene.com", "category":"Photo & Video Sharing", "visitors":4200000, "percent":0.3, "hits":170000000, "ads":true},
+{"rank":795, "domain":"pcgames.com.cn", "category":"Online Games", "visitors":4200000, "percent":0.3, "hits":50000000, "ads":true},
+{"rank":796, "domain":"webcrawler.com", "category":"Search Engines", "visitors":4200000, "percent":0.3, "hits":60000000, "ads":true},
+{"rank":797, "domain":"heroturko.org", "category":"File Sharing & Hosting", "visitors":4200000, "percent":0.3, "hits":46000000, "ads":true},
+{"rank":798, "domain":"accuweather.com", "category":"Weather", "visitors":4200000, "percent":0.3, "hits":190000000, "ads":true},
+{"rank":799, "domain":"uniblue.com", "category":"Software", "visitors":4200000, "percent":0.3, "hits":21000000, "ads":false},
+{"rank":800, "domain":"oracle.com", "category":"Data Management", "visitors":4200000, "percent":0.3, "hits":120000000, "ads":true},
+{"rank":801, "domain":"marketgid.info", "category":"", "visitors":4200000, "percent":0.3, "hits":28000000, "ads":false},
+{"rank":802, "domain":"vzarabotke.ru", "category":"", "visitors":4200000, "percent":0.3, "hits":18000000, "ads":true},
+{"rank":803, "domain":"fanpop.com", "category":"TV Shows & Programs", "visitors":4100000, "percent":0.3, "hits":67000000, "ads":true},
+{"rank":804, "domain":"mercadolibre.com.ar", "category":"Classifieds", "visitors":4100000, "percent":0.3, "hits":440000000, "ads":true},
+{"rank":805, "domain":"gismeteo.ru", "category":"Weather", "visitors":4100000, "percent":0.3, "hits":98000000, "ads":true},
+{"rank":806, "domain":"orbitz.com", "category":"Travel", "visitors":4100000, "percent":0.3, "hits":210000000, "ads":true},
+{"rank":807, "domain":"mashable.com", "category":"Technology News", "visitors":4100000, "percent":0.3, "hits":38000000, "ads":true},
+{"rank":808, "domain":"xcar.com.cn", "category":"Autos & Vehicles", "visitors":4100000, "percent":0.3, "hits":230000000, "ads":true},
+{"rank":809, "domain":"legacy.com", "category":"", "visitors":4100000, "percent":0.3, "hits":190000000, "ads":true},
+{"rank":810, "domain":"all-biz.info", "category":"Business & Industrial", "visitors":4100000, "percent":0.3, "hits":38000000, "ads":true},
+{"rank":811, "domain":"mbaobao.com", "category":"Make-Up & Cosmetics", "visitors":4100000, "percent":0.3, "hits":41000000, "ads":false},
+{"rank":812, "domain":"videobash.com", "category":"Humor", "visitors":4100000, "percent":0.3, "hits":41000000, "ads":true},
+{"rank":813, "domain":"buy.com", "category":"Shopping", "visitors":3900000, "percent":0.2, "hits":80000000, "ads":true},
+{"rank":814, "domain":"jal.co.jp", "category":"Air Travel", "visitors":3900000, "percent":0.2, "hits":140000000, "ads":true},
+{"rank":815, "domain":"htc.com", "category":"Mobile Phones", "visitors":3900000, "percent":0.2, "hits":79000000, "ads":true},
+{"rank":816, "domain":"neckermann.de", "category":"Hotels & Accommodations", "visitors":3900000, "percent":0.2, "hits":170000000, "ads":true},
+{"rank":817, "domain":"turbobit.net", "category":"File Sharing & Hosting", "visitors":3900000, "percent":0.2, "hits":51000000, "ads":true},
+{"rank":818, "domain":"kuwan8.com", "category":"Games", "visitors":3900000, "percent":0.2, "hits":15000000, "ads":false},
+{"rank":819, "domain":"travelocity.com", "category":"Travel Agencies & Services", "visitors":3900000, "percent":0.2, "hits":190000000, "ads":true},
+{"rank":820, "domain":"xing.com", "category":"Career Resources & Planning", "visitors":3900000, "percent":0.2, "hits":310000000, "ads":true},
+{"rank":821, "domain":"juchang.com", "category":"Movies", "visitors":3900000, "percent":0.2, "hits":74000000, "ads":true},
+{"rank":822, "domain":"righthealth.com", "category":"Medical Literature & Resources", "visitors":3900000, "percent":0.2, "hits":37000000, "ads":true},
+{"rank":823, "domain":"kp.ru", "category":"News", "visitors":3900000, "percent":0.2, "hits":59000000, "ads":true},
+{"rank":824, "domain":"joins.com", "category":"People & Society", "visitors":3900000, "percent":0.2, "hits":37000000, "ads":true},
+{"rank":825, "domain":"weebly.com", "category":"Web Design & Development", "visitors":3800000, "percent":0.2, "hits":73000000, "ads":true},
+{"rank":826, "domain":"vesti.ru", "category":"News", "visitors":3800000, "percent":0.2, "hits":38000000, "ads":true},
+{"rank":827, "domain":"deezer.com", "category":"Music Streams & Downloads", "visitors":3800000, "percent":0.2, "hits":330000000, "ads":false},
+{"rank":828, "domain":"facemoods.com", "category":"Social Network Apps & Add-Ons", "visitors":3800000, "percent":0.2, "hits":210000000, "ads":true},
+{"rank":829, "domain":"play.com", "category":"Mass Merchants & Department Stores", "visitors":3800000, "percent":0.2, "hits":250000000, "ads":true},
+{"rank":830, "domain":"123greetings.com", "category":"Cards & Greetings", "visitors":3800000, "percent":0.2, "hits":66000000, "ads":true},
+{"rank":831, "domain":"ukr.net", "category":"Local News", "visitors":3800000, "percent":0.2, "hits":300000000, "ads":true},
+{"rank":832, "domain":"qire123.com", "category":"Online Video", "visitors":3800000, "percent":0.2, "hits":96000000, "ads":true},
+{"rank":833, "domain":"hilton.com", "category":"Hotels & Accommodations", "visitors":3800000, "percent":0.2, "hits":140000000, "ads":true},
+{"rank":834, "domain":"kaspersky.com", "category":"Antivirus & Malware", "visitors":3800000, "percent":0.2, "hits":42000000, "ads":true},
+{"rank":835, "domain":"samsclub.com", "category":"Mass Merchants & Department Stores", "visitors":3800000, "percent":0.2, "hits":190000000, "ads":true},
+{"rank":836, "domain":"marriott.com", "category":"Hotels & Accommodations", "visitors":3800000, "percent":0.2, "hits":160000000, "ads":true},
+{"rank":837, "domain":"kinopoisk.ru", "category":"Movie Reference", "visitors":3800000, "percent":0.2, "hits":130000000, "ads":true},
+{"rank":838, "domain":"lg.com", "category":"Consumer Electronics", "visitors":3800000, "percent":0.2, "hits":45000000, "ads":false},
+{"rank":839, "domain":"readme.ru", "category":"News", "visitors":3800000, "percent":0.2, "hits":61000000, "ads":true},
+{"rank":840, "domain":"rapiddigger.com", "category":"File Sharing & Hosting", "visitors":3800000, "percent":0.2, "hits":31000000, "ads":false},
+{"rank":841, "domain":"istockphoto.com", "category":"Stock Photography", "visitors":3800000, "percent":0.2, "hits":210000000, "ads":true},
+{"rank":842, "domain":"weborama.fr", "category":"Web Stats & Analytics", "visitors":3800000, "percent":0.2, "hits":34000000, "ads":true},
+{"rank":843, "domain":"esmas.com", "category":"Web Portals", "visitors":3800000, "percent":0.2, "hits":110000000, "ads":true},
+{"rank":844, "domain":"a67.com", "category":"Online Video", "visitors":3800000, "percent":0.2, "hits":89000000, "ads":true},
+{"rank":845, "domain":"canalblog.com", "category":"", "visitors":3800000, "percent":0.2, "hits":96000000, "ads":true},
+{"rank":846, "domain":"logitech.com", "category":"Consumer Electronics", "visitors":3800000, "percent":0.2, "hits":67000000, "ads":false},
+{"rank":847, "domain":"wetter.com", "category":"Weather", "visitors":3800000, "percent":0.2, "hits":110000000, "ads":true},
+{"rank":848, "domain":"51seer.com", "category":"Robotics", "visitors":3800000, "percent":0.2, "hits":55000000, "ads":false},
+{"rank":849, "domain":"webshots.com", "category":"Photo & Video Sharing", "visitors":3800000, "percent":0.2, "hits":87000000, "ads":true},
+{"rank":850, "domain":"pole-emploi.fr", "category":"Welfare & Unemployment", "visitors":3800000, "percent":0.2, "hits":730000000, "ads":false},
+{"rank":851, "domain":"aeriagames.com", "category":"Online Games", "visitors":3800000, "percent":0.2, "hits":46000000, "ads":true},
+{"rank":852, "domain":"schuelervz.net", "category":"Social Networks", "visitors":3800000, "percent":0.2, "hits":2300000000, "ads":true},
+{"rank":853, "domain":"local.com", "category":"Business & Personal Listings", "visitors":3800000, "percent":0.2, "hits":42000000, "ads":true},
+{"rank":854, "domain":"discovercard.com", "category":"Credit Cards", "visitors":3800000, "percent":0.2, "hits":230000000, "ads":true},
+{"rank":855, "domain":"shvoong.com", "category":"Arts & Entertainment", "visitors":3800000, "percent":0.2, "hits":21000000, "ads":true},
+{"rank":856, "domain":"ft.com", "category":"Business News", "visitors":3800000, "percent":0.2, "hits":61000000, "ads":true},
+{"rank":857, "domain":"time.com", "category":"News", "visitors":3800000, "percent":0.2, "hits":73000000, "ads":true},
+{"rank":858, "domain":"warnerbros.com", "category":"Film & TV Industry", "visitors":3800000, "percent":0.2, "hits":80000000, "ads":true},
+{"rank":859, "domain":"ntv.co.jp", "category":"TV Networks & Stations", "visitors":3800000, "percent":0.2, "hits":38000000, "ads":false},
+{"rank":860, "domain":"88db.com", "category":"Classifieds", "visitors":3800000, "percent":0.2, "hits":23000000, "ads":true},
+{"rank":861, "domain":"allocine.fr", "category":"Movie Listings & Theater Showtimes", "visitors":3800000, "percent":0.2, "hits":130000000, "ads":true},
+{"rank":862, "domain":"thesun.co.uk", "category":"Newspapers", "visitors":3800000, "percent":0.2, "hits":160000000, "ads":true},
+{"rank":863, "domain":"walgreens.com", "category":"Mass Merchants & Department Stores", "visitors":3800000, "percent":0.2, "hits":250000000, "ads":true},
+{"rank":864, "domain":"multiupload.com", "category":"File Sharing & Hosting", "visitors":3800000, "percent":0.2, "hits":45000000, "ads":true},
+{"rank":865, "domain":"getpersonas.com", "category":"Skins Themes & Wallpapers", "visitors":3800000, "percent":0.2, "hits":99000000, "ads":false},
+{"rank":866, "domain":"programas-gratis.net", "category":"Software", "visitors":3800000, "percent":0.2, "hits":50000000, "ads":true},
+{"rank":867, "domain":"uploaded.to", "category":"File Sharing & Hosting", "visitors":3800000, "percent":0.2, "hits":61000000, "ads":true},
+{"rank":868, "domain":"nexon.com", "category":"Computer & Video Games", "visitors":3800000, "percent":0.2, "hits":140000000, "ads":false},
+{"rank":869, "domain":"sendspace.com", "category":"File Sharing & Hosting", "visitors":3800000, "percent":0.2, "hits":41000000, "ads":true},
+{"rank":870, "domain":"moonbasa.com", "category":"Undergarments", "visitors":3800000, "percent":0.2, "hits":28000000, "ads":false},
+{"rank":871, "domain":"jsoftj.com", "category":"Computers & Electronics", "visitors":3800000, "percent":0.2, "hits":50000000, "ads":true},
+{"rank":872, "domain":"wat.tv", "category":"Online Video", "visitors":3800000, "percent":0.2, "hits":66000000, "ads":true},
+{"rank":873, "domain":"shutterfly.com", "category":"Photo & Video Services", "visitors":3800000, "percent":0.2, "hits":590000000, "ads":true},
+{"rank":874, "domain":"etoro.com", "category":"Currencies & Foreign Exchange", "visitors":3800000, "percent":0.2, "hits":17000000, "ads":true},
+{"rank":875, "domain":"direct.gov.uk", "category":"Law & Government", "visitors":3800000, "percent":0.2, "hits":370000000, "ads":true},
+{"rank":876, "domain":"changyou.com", "category":"E-Books", "visitors":3800000, "percent":0.2, "hits":60000000, "ads":false},
+{"rank":877, "domain":"mundoanuncio.com", "category":"Classifieds", "visitors":3800000, "percent":0.2, "hits":160000000, "ads":true},
+{"rank":878, "domain":"limewire.com", "category":"File Sharing & Hosting", "visitors":3800000, "percent":0.2, "hits":41000000, "ads":false},
+{"rank":879, "domain":"reverso.net", "category":"Translation Tools & Resources", "visitors":3800000, "percent":0.2, "hits":160000000, "ads":true},
+{"rank":880, "domain":"marktplaats.nl", "category":"Classifieds", "visitors":3800000, "percent":0.2, "hits":1500000000, "ads":true},
+{"rank":881, "domain":"aucfan.com", "category":"Auctions", "visitors":3800000, "percent":0.2, "hits":66000000, "ads":true},
+{"rank":882, "domain":"meteofrance.com", "category":"Weather", "visitors":3800000, "percent":0.2, "hits":130000000, "ads":true},
+{"rank":883, "domain":"winzip.com", "category":"Software Utilities", "visitors":3800000, "percent":0.2, "hits":26000000, "ads":true},
+{"rank":884, "domain":"groupon.jp", "category":"Coupons & Discount Offers", "visitors":3800000, "percent":0.2, "hits":34000000, "ads":true},
+{"rank":885, "domain":"songs.pk", "category":"South Asian Music", "visitors":3800000, "percent":0.2, "hits":99000000, "ads":true},
+{"rank":886, "domain":"barbie.com", "category":"Doll Dress-Up & Girl Games", "visitors":3800000, "percent":0.2, "hits":280000000, "ads":true},
+{"rank":887, "domain":"fnac.com", "category":"CD & Audio Shopping", "visitors":3800000, "percent":0.2, "hits":170000000, "ads":true},
+{"rank":888, "domain":"apserver.net", "category":"Web Hosting & Domain Registration", "visitors":3800000, "percent":0.2, "hits":55000000, "ads":true},
+{"rank":889, "domain":"popularscreensavers.com", "category":"Skins Themes & Wallpapers", "visitors":3800000, "percent":0.2, "hits":45000000, "ads":true},
+{"rank":890, "domain":"softbank.jp", "category":"Mobile & Wireless", "visitors":3800000, "percent":0.2, "hits":82000000, "ads":true},
+{"rank":891, "domain":"thesaurus.com", "category":"Dictionaries & Encyclopedias", "visitors":3800000, "percent":0.2, "hits":80000000, "ads":true},
+{"rank":892, "domain":"enet.com.cn", "category":"Photo & Video Software", "visitors":3800000, "percent":0.2, "hits":68000000, "ads":true},
+{"rank":893, "domain":"kooora.com", "category":"Sports News", "visitors":3800000, "percent":0.2, "hits":410000000, "ads":true},
+{"rank":894, "domain":"news.de", "category":"News", "visitors":3800000, "percent":0.2, "hits":28000000, "ads":true},
+{"rank":895, "domain":"qq163.com", "category":"Music Streams & Downloads", "visitors":3800000, "percent":0.2, "hits":120000000, "ads":true},
+{"rank":896, "domain":"battle.net", "category":"Online Games", "visitors":3800000, "percent":0.2, "hits":190000000, "ads":true},
+{"rank":897, "domain":"kbstar.com", "category":"Credit Cards", "visitors":3800000, "percent":0.2, "hits":51000000, "ads":true},
+{"rank":898, "domain":"qzone.cc", "category":"Social Network Apps & Add-Ons", "visitors":3800000, "percent":0.2, "hits":96000000, "ads":true},
+{"rank":899, "domain":"uniqlo.com", "category":"Casual Apparel", "visitors":3800000, "percent":0.2, "hits":190000000, "ads":false},
+{"rank":900, "domain":"goal.com", "category":"Soccer", "visitors":3800000, "percent":0.2, "hits":120000000, "ads":true},
+{"rank":901, "domain":"espncricinfo.com", "category":"Cricket", "visitors":3800000, "percent":0.2, "hits":150000000, "ads":true},
+{"rank":902, "domain":"sportsseoul.com", "category":"Sports", "visitors":3800000, "percent":0.2, "hits":46000000, "ads":true},
+{"rank":903, "domain":"uploadcity.com", "category":"File Sharing & Hosting", "visitors":3800000, "percent":0.2, "hits":28000000, "ads":false},
+{"rank":904, "domain":"kijiji.ca", "category":"Shopping", "visitors":3800000, "percent":0.2, "hits":1000000000, "ads":true},
+{"rank":905, "domain":"uuu9.com", "category":"Online Games", "visitors":3800000, "percent":0.2, "hits":140000000, "ads":true},
+{"rank":906, "domain":"fotostrana.ru", "category":"Photo & Image Sharing", "visitors":3800000, "percent":0.2, "hits":280000000, "ads":true},
+{"rank":907, "domain":"w3.org", "category":"Web Design & Development", "visitors":3800000, "percent":0.2, "hits":46000000, "ads":true},
+{"rank":908, "domain":"46.com", "category":"Directories & Listings", "visitors":3800000, "percent":0.2, "hits":82000000, "ads":true},
+{"rank":909, "domain":"smarter.co.jp", "category":"Shopping Portals & Search Engines", "visitors":3800000, "percent":0.2, "hits":15000000, "ads":false},
+{"rank":910, "domain":"bohelady.com", "category":"Beauty & Fitness", "visitors":3800000, "percent":0.2, "hits":80000000, "ads":true},
+{"rank":911, "domain":"boston.com", "category":"Newspapers", "visitors":3800000, "percent":0.2, "hits":160000000, "ads":true},
+{"rank":912, "domain":"ciao.de", "category":"Product Reviews", "visitors":3800000, "percent":0.2, "hits":38000000, "ads":true},
+{"rank":913, "domain":"virusbuster.jp", "category":"Antivirus & Malware", "visitors":3800000, "percent":0.2, "hits":12000000, "ads":true},
+{"rank":914, "domain":"myegy.com", "category":"Online Video", "visitors":3800000, "percent":0.2, "hits":280000000, "ads":true},
+{"rank":915, "domain":"retailmenot.com", "category":"Coupons & Discount Offers", "visitors":3800000, "percent":0.2, "hits":41000000, "ads":true},
+{"rank":916, "domain":"fandango.com", "category":"Movie Listings & Theater Showtimes", "visitors":3800000, "percent":0.2, "hits":130000000, "ads":true},
+{"rank":917, "domain":"mizuhobank.co.jp", "category":"Banking", "visitors":3800000, "percent":0.2, "hits":73000000, "ads":false},
+{"rank":918, "domain":"topshareware.com", "category":"Freeware & Shareware", "visitors":3800000, "percent":0.2, "hits":21000000, "ads":true},
+{"rank":919, "domain":"freelotto.com", "category":"", "visitors":3800000, "percent":0.2, "hits":37000000, "ads":true},
+{"rank":920, "domain":"coneco.net", "category":"Shopping Portals & Search Engines", "visitors":3800000, "percent":0.2, "hits":31000000, "ads":true},
+{"rank":921, "domain":"lenovo.com", "category":"Hardware", "visitors":3800000, "percent":0.2, "hits":97000000, "ads":true},
+{"rank":922, "domain":"girlsgogames.com", "category":"Flash-Based Entertainment", "visitors":3800000, "percent":0.2, "hits":330000000, "ads":true},
+{"rank":923, "domain":"segye.com", "category":"News", "visitors":3800000, "percent":0.2, "hits":9800000, "ads":true},
+{"rank":924, "domain":"topix.com", "category":"Local News", "visitors":3500000, "percent":0.2, "hits":110000000, "ads":true},
+{"rank":925, "domain":"issuu.com", "category":"Software Utilities", "visitors":3500000, "percent":0.2, "hits":28000000, "ads":true},
+{"rank":926, "domain":"mahalo.com", "category":"Coupons & Discount Offers", "visitors":3500000, "percent":0.2, "hits":19000000, "ads":true},
+{"rank":927, "domain":"caixa.gov.br", "category":"Banking", "visitors":3500000, "percent":0.2, "hits":450000000, "ads":false},
+{"rank":928, "domain":"766.com", "category":"Online Games", "visitors":3500000, "percent":0.2, "hits":73000000, "ads":true},
+{"rank":929, "domain":"yaodian100.com", "category":"Holidays & Seasonal Events", "visitors":3500000, "percent":0.2, "hits":28000000, "ads":true},
+{"rank":930, "domain":"qqgexing.com", "category":"Social Network Apps & Add-Ons", "visitors":3500000, "percent":0.2, "hits":540000000, "ads":true},
+{"rank":931, "domain":"main.jp", "category":"Education", "visitors":3500000, "percent":0.2, "hits":26000000, "ads":true},
+{"rank":932, "domain":"gamehouse.com", "category":"Online Games", "visitors":3500000, "percent":0.2, "hits":80000000, "ads":true},
+{"rank":933, "domain":"usbank.com", "category":"Banking", "visitors":3500000, "percent":0.2, "hits":410000000, "ads":false},
+{"rank":934, "domain":"ponpare.jp", "category":"Coupons & Discount Offers", "visitors":3500000, "percent":0.2, "hits":41000000, "ads":true},
+{"rank":935, "domain":"rtl.de", "category":"TV Networks & Stations", "visitors":3500000, "percent":0.2, "hits":120000000, "ads":true},
+{"rank":936, "domain":"marksandspencer.com", "category":"Mass Merchants & Department Stores", "visitors":3500000, "percent":0.2, "hits":280000000, "ads":true},
+{"rank":937, "domain":"virginmedia.com", "category":"News", "visitors":3500000, "percent":0.2, "hits":230000000, "ads":true},
+{"rank":938, "domain":"baamboo.com", "category":"Music & Audio", "visitors":3500000, "percent":0.2, "hits":61000000, "ads":true},
+{"rank":939, "domain":"nick.com", "category":"Online Games", "visitors":3500000, "percent":0.2, "hits":260000000, "ads":true},
+{"rank":940, "domain":"33hy.com", "category":"", "visitors":3500000, "percent":0.2, "hits":12000000, "ads":false},
+{"rank":941, "domain":"seoquake.com", "category":"Internet Clients & Browsers", "visitors":3500000, "percent":0.2, "hits":13000000, "ads":true},
+{"rank":942, "domain":"sing365.com", "category":"Song Lyrics & Tabs", "visitors":3500000, "percent":0.2, "hits":23000000, "ads":true},
+{"rank":943, "domain":"dasoertliche.de", "category":"Business & Personal Listings", "visitors":3500000, "percent":0.2, "hits":61000000, "ads":true},
+{"rank":944, "domain":"gamestop.com", "category":"Computer & Video Games", "visitors":3500000, "percent":0.2, "hits":190000000, "ads":true},
+{"rank":945, "domain":"bandoo.com", "category":"Online Goodies", "visitors":3500000, "percent":0.2, "hits":16000000, "ads":false},
+{"rank":946, "domain":"mozdev.org", "category":"Web Apps & Online Tools", "visitors":3500000, "percent":0.2, "hits":14000000, "ads":true},
+{"rank":947, "domain":"8684.cn", "category":"Traffic & Public Transit", "visitors":3500000, "percent":0.2, "hits":41000000, "ads":true},
+{"rank":948, "domain":"unam.mx", "category":"Newspapers", "visitors":3500000, "percent":0.2, "hits":82000000, "ads":true},
+{"rank":949, "domain":"cool.ne.jp", "category":"Web Hosting & Domain Registration", "visitors":3500000, "percent":0.2, "hits":19000000, "ads":true},
+{"rank":950, "domain":"bedbathandbeyond.com", "category":"Bed & Bath", "visitors":3500000, "percent":0.2, "hits":170000000, "ads":true},
+{"rank":951, "domain":"lenovo.com.cn", "category":"Hardware", "visitors":3500000, "percent":0.2, "hits":45000000, "ads":false},
+{"rank":952, "domain":"epson.jp", "category":"Printers", "visitors":3500000, "percent":0.2, "hits":50000000, "ads":true},
+{"rank":953, "domain":"w3schools.com", "category":"Computer Education", "visitors":3500000, "percent":0.2, "hits":55000000, "ads":true},
+{"rank":954, "domain":"meinvz.net", "category":"Social Networks", "visitors":3500000, "percent":0.2, "hits":1500000000, "ads":true},
+{"rank":955, "domain":"asus.com", "category":"Hardware", "visitors":3500000, "percent":0.2, "hits":66000000, "ads":true},
+{"rank":956, "domain":"enfemenino.com", "category":"Women's Interests", "visitors":3500000, "percent":0.2, "hits":56000000, "ads":true},
+{"rank":957, "domain":"chacha.com", "category":"Arts & Entertainment", "visitors":3500000, "percent":0.2, "hits":37000000, "ads":true},
+{"rank":958, "domain":"lyricsmode.com", "category":"Song Lyrics & Tabs", "visitors":3500000, "percent":0.2, "hits":23000000, "ads":true},
+{"rank":959, "domain":"subito.it", "category":"Classifieds", "visitors":3500000, "percent":0.2, "hits":600000000, "ads":true},
+{"rank":960, "domain":"tiscali.it", "category":"ISPs", "visitors":3500000, "percent":0.2, "hits":250000000, "ads":true},
+{"rank":961, "domain":"mercadolibre.com", "category":"Auctions", "visitors":3500000, "percent":0.2, "hits":98000000, "ads":false},
+{"rank":962, "domain":"citysearch.com", "category":"City & Local Guides", "visitors":3500000, "percent":0.2, "hits":35000000, "ads":true},
+{"rank":963, "domain":"deviantart.net", "category":"Photographic & Digital Arts", "visitors":3500000, "percent":0.2, "hits":23000000, "ads":false},
+{"rank":964, "domain":"divx.com", "category":"Photo & Video Software", "visitors":3500000, "percent":0.2, "hits":26000000, "ads":true},
+{"rank":965, "domain":"ioage.com", "category":"Technical Support", "visitors":3500000, "percent":0.2, "hits":28000000, "ads":true},
+{"rank":966, "domain":"autoscout24.de", "category":"Vehicle Shopping", "visitors":3500000, "percent":0.2, "hits":400000000, "ads":true},
+{"rank":967, "domain":"ddmap.com", "category":"Search Engines", "visitors":3500000, "percent":0.2, "hits":31000000, "ads":false},
+{"rank":968, "domain":"r7.com", "category":"News", "visitors":3500000, "percent":0.2, "hits":490000000, "ads":true},
+{"rank":969, "domain":"trialpay.com", "category":"Merchant Services & Payment Systems", "visitors":3500000, "percent":0.2, "hits":38000000, "ads":true},
+{"rank":970, "domain":"hdfcbank.com", "category":"Banking", "visitors":3500000, "percent":0.2, "hits":130000000, "ads":true},
+{"rank":971, "domain":"openoffice.org", "category":"Business & Productivity Software", "visitors":3500000, "percent":0.2, "hits":41000000, "ads":false},
+{"rank":972, "domain":"wer-weiss-was.de", "category":"Internet & Telecom", "visitors":3500000, "percent":0.2, "hits":22000000, "ads":true},
+{"rank":973, "domain":"jimdo.com", "category":"Web Design & Development", "visitors":3500000, "percent":0.2, "hits":88000000, "ads":true},
+{"rank":974, "domain":"gamersky.com", "category":"Online Games", "visitors":3500000, "percent":0.2, "hits":82000000, "ads":true},
+{"rank":975, "domain":"searchina.ne.jp", "category":"News", "visitors":3500000, "percent":0.2, "hits":73000000, "ads":true},
+{"rank":976, "domain":"techcrunch.com", "category":"Technology News", "visitors":3500000, "percent":0.2, "hits":28000000, "ads":true},
+{"rank":977, "domain":"tchibo.de", "category":"Gifts", "visitors":3500000, "percent":0.2, "hits":120000000, "ads":false},
+{"rank":978, "domain":"lezi.com", "category":"Roleplaying Games", "visitors":3500000, "percent":0.2, "hits":13000000, "ads":false},
+{"rank":979, "domain":"webfetti.com", "category":"Social Network Apps & Add-Ons", "visitors":3500000, "percent":0.2, "hits":61000000, "ads":true},
+{"rank":980, "domain":"kayak.com", "category":"Air Travel", "visitors":3500000, "percent":0.2, "hits":110000000, "ads":true},
+{"rank":981, "domain":"mthai.com", "category":"Web Portals", "visitors":3500000, "percent":0.2, "hits":120000000, "ads":true},
+{"rank":982, "domain":"tv.com", "category":"TV Shows & Programs", "visitors":3500000, "percent":0.2, "hits":55000000, "ads":true},
+{"rank":983, "domain":"fidelity.com", "category":"Retirement & Pension", "visitors":3500000, "percent":0.2, "hits":450000000, "ads":false},
+{"rank":984, "domain":"bt.com", "category":"Service Providers", "visitors":3500000, "percent":0.2, "hits":140000000, "ads":true},
+{"rank":985, "domain":"yihaodian.com", "category":"Shopping Portals & Search Engines", "visitors":3500000, "percent":0.2, "hits":34000000, "ads":false},
+{"rank":986, "domain":"cooliris.com", "category":"Internet Clients & Browsers", "visitors":3500000, "percent":0.2, "hits":160000000, "ads":true},
+{"rank":987, "domain":"teamviewer.com", "category":"Software", "visitors":3500000, "percent":0.2, "hits":26000000, "ads":true},
+{"rank":988, "domain":"bdr130.net", "category":"Islam", "visitors":3500000, "percent":0.2, "hits":25000000, "ads":true},
+{"rank":989, "domain":"popeater.com", "category":"Celebrities & Entertainment News", "visitors":3500000, "percent":0.2, "hits":55000000, "ads":true},
+{"rank":990, "domain":"newhua.com", "category":"Software Utilities", "visitors":3500000, "percent":0.2, "hits":26000000, "ads":true},
+{"rank":991, "domain":"xywy.com", "category":"Health", "visitors":3500000, "percent":0.2, "hits":34000000, "ads":true},
+{"rank":992, "domain":"newsis.com", "category":"", "visitors":3500000, "percent":0.2, "hits":9100000, "ads":false},
+{"rank":993, "domain":"hangame.com", "category":"Online Games", "visitors":3500000, "percent":0.2, "hits":140000000, "ads":true},
+{"rank":994, "domain":"qvc.com", "category":"Clothing Accessories", "visitors":3400000, "percent":0.2, "hits":540000000, "ads":false},
+{"rank":995, "domain":"blogbus.com", "category":"Blogging Resources & Services", "visitors":3400000, "percent":0.2, "hits":34000000, "ads":true},
+{"rank":996, "domain":"ultimate-guitar.com", "category":"Online Media", "visitors":3400000, "percent":0.2, "hits":140000000, "ads":true},
+{"rank":997, "domain":"pipl.com", "category":"People Search", "visitors":3400000, "percent":0.2, "hits":26000000, "ads":true},
+{"rank":998, "domain":"noaa.gov", "category":"Water & Marine Sciences", "visitors":3400000, "percent":0.2, "hits":120000000, "ads":false},
+{"rank":999, "domain":"cafe24.com", "category":"Web Hosting & Domain Registration", "visitors":3400000, "percent":0.2, "hits":45000000, "ads":true},
+{"rank":1000, "domain":"kukinews.com", "category":"Newspapers", "visitors":3400000, "percent":0.2, "hits":11000000, "ads":true}
+];
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/top-sites.txt Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,1001 @@
+1 facebook.com Social Networks 600,000,000 38.4% 750,000,000,000 Yes
+2 youtube.com Online Video 500,000,000 31.9% 84,000,000,000 Yes
+3 yahoo.com Web Portals 410,000,000 26% 70,000,000,000 Yes
+4 live.com Search Engines 340,000,000 21.9% 36,000,000,000 Yes
+5 wikipedia.org Dictionaries & Encyclopedias 280,000,000 18% 7,100,000,000 No
+6 msn.com Web Portals 250,000,000 16.1% 13,000,000,000 Yes
+7 baidu.com Search Engines 230,000,000 14.6% 100,000,000,000 Yes
+8 qq.com Web Portals 210,000,000 13.2% 53,000,000,000 Yes
+9 microsoft.com Software 190,000,000 12.2% 3,300,000,000 Yes
+10 sina.com.cn Web Portals 110,000,000 6.9% 6,400,000,000 Yes
+11 taobao.com Classifieds 110,000,000 6.8% 25,000,000,000 Yes
+12 bing.com Search Engines 110,000,000 7% 4,100,000,000 Yes
+13 adobe.com Multimedia Software 98,000,000 6.3% 1,100,000,000 Yes
+14 wordpress.com Blogging Resources & Services 89,000,000 5.7% 1,100,000,000 Yes
+15 twitter.com Email & Messaging 89,000,000 5.7% 5,900,000,000 No
+16 soso.com Search Engines 88,000,000 5.6% 2,700,000,000 No
+17 mozilla.com Internet Clients & Browsers 88,000,000 5.6% 1,600,000,000 Yes
+18 youku.com Online Video 88,000,000 5.6% 2,700,000,000 Yes
+19 ask.com Search Engines 88,000,000 5.6% 1,900,000,000 Yes
+20 yahoo.co.jp Web Portals 73,000,000 4.7% 30,000,000,000 Yes
+21 amazon.com Shopping 73,000,000 4.7% 6,400,000,000 Yes
+22 hao123.com Web Portals 67,000,000 4.3% 4,900,000,000 No
+23 tudou.com Online Video 67,000,000 4.3% 2,200,000,000 Yes
+24 ebay.com Auctions 66,000,000 4.2% 12,000,000,000 Yes
+25 apple.com Mac OS 66,000,000 4.2% 1,300,000,000 Yes
+26 sohu.com Web Portals 66,000,000 4.2% 4,000,000,000 Yes
+27 fc2.com Web Services 51,000,000 3.2% 3,000,000,000 Yes
+28 xunlei.com File Sharing & Hosting 49,000,000 3.2% 1,900,000,000 Yes
+29 sogou.com Search Engines 46,000,000 2.9% 1,400,000,000 Yes
+30 56.com Online Media 46,000,000 2.9% 880,000,000 Yes
+31 360.cn Antivirus & Malware 46,000,000 2.9% 710,000,000 No
+32 myspace.com 45,000,000 2.9% 4,800,000,000 Yes
+33 paypal.com Merchant Services & Payment Systems 45,000,000 2.9% 2,000,000,000 Yes
+34 ku6.com Online Media 42,000,000 2.7% 670,000,000 Yes
+35 cnet.com Consumer Electronics 41,000,000 2.6% 550,000,000 Yes
+36 rakuten.co.jp Shopping Portals & Search Engines 41,000,000 2.6% 4,500,000,000 Yes
+37 go.com Web Portals 41,000,000 2.6% 4,000,000,000 Yes
+38 about.com How-To 41,000,000 2.6% 660,000,000 Yes
+39 hotmail.com Email & Messaging 38,000,000 2.4% 720,000,000 Yes
+40 yandex.ru Search Engines 38,000,000 2.4% 10,000,000,000 Yes
+41 orkut.com Social Networks 38,000,000 2.4% 6,500,000,000 Yes
+42 goo.ne.jp Web Portals 38,000,000 2.4% 800,000,000 Yes
+43 orkut.com.br Social Networks 38,000,000 2.4% 85,000,000,000 Yes
+44 flickr.com Photo & Image Sharing 38,000,000 2.4% 1,800,000,000 Yes
+45 mail.ru Email & Messaging 37,000,000 2.4% 13,000,000,000 Yes
+46 tmall.com Apparel 37,000,000 2.4% 1,400,000,000 Yes
+47 bbc.co.uk World News 37,000,000 2.4% 2,700,000,000 Yes
+48 linkedin.com Social Networks 37,000,000 2.4% 2,300,000,000 Yes
+49 4shared.com File Sharing & Hosting 35,000,000 2.2% 2,000,000,000 Yes
+50 imdb.com Movie Reference 34,000,000 2.2% 1,300,000,000 Yes
+51 aol.com Web Portals 34,000,000 2.2% 4,400,000,000 Yes
+52 ameblo.jp Blogging Resources & Services 34,000,000 2.2% 1,700,000,000 Yes
+53 amazon.co.jp Entertainment Media 34,000,000 2.2% 1,300,000,000 No
+54 dailymotion.com Online Video 34,000,000 2.2% 660,000,000 Yes
+55 ifeng.com Web Portals 34,000,000 2.2% 2,700,000,000 Yes
+56 blogger.com Blogging Resources & Services 32,000,000 2% 1,900,000,000 No
+57 answers.com General Reference 31,000,000 2% 280,000,000 Yes
+58 megaupload.com File Sharing & Hosting 31,000,000 2% 960,000,000 Yes
+59 4399.com Online Games 31,000,000 2% 2,800,000,000 Yes
+60 craigslist.org Classifieds 31,000,000 2% 15,000,000,000 No
+61 naver.com Search Engines 31,000,000 2% 6,500,000,000 Yes
+62 photobucket.com Photo & Video Sharing 29,000,000 1.8% 720,000,000 Yes
+63 gougou.com Search Engines 28,000,000 1.8% 880,000,000 Yes
+64 vkontakte.ru Social Networks 28,000,000 1.8% 36,000,000,000 No
+65 cnn.com Broadcast & Network News 28,000,000 1.8% 1,400,000,000 Yes
+66 alibaba.com Import & Export 28,000,000 1.8% 1,100,000,000 Yes
+67 rapidshare.com File Sharing & Hosting 28,000,000 1.8% 540,000,000 Yes
+68 skype.com VOIP & Internet Telephony 28,000,000 1.8% 600,000,000 Yes
+69 gocsgo.com 28,000,000 1.8% 170,000,000 No
+70 walmart.com Mass Merchants & Department Stores 26,000,000 1.7% 1,700,000,000 Yes
+71 nifty.com Web Portals 26,000,000 1.7% 650,000,000 Yes
+72 2345.com Web Portals 26,000,000 1.7% 1,400,000,000 Yes
+73 mediafire.com File Sharing & Hosting 26,000,000 1.6% 450,000,000 Yes
+74 soku.com Online Video 26,000,000 1.7% 730,000,000 Yes
+75 daum.net Web Portals 26,000,000 1.7% 3,300,000,000 Yes
+76 ehow.com How-To 26,000,000 1.6% 230,000,000 Yes
+77 tianya.cn Online Communities 24,000,000 1.5% 410,000,000 Yes
+78 hp.com Hardware 24,000,000 1.5% 720,000,000 Yes
+79 scribd.com 24,000,000 1.5% 140,000,000 Yes
+80 hi5.com Social Networks 23,000,000 1.5% 5,900,000,000 Yes
+81 9223.com Directories & Listings 23,000,000 1.5% 950,000,000 Yes
+82 bit.ly Online Communities 23,000,000 1.5% 230,000,000 Yes
+83 7k7k.com Casual Games 23,000,000 1.5% 2,400,000,000 Yes
+84 weather.com Weather 23,000,000 1.5% 790,000,000 Yes
+85 hotfile.com File Sharing & Hosting 23,000,000 1.5% 440,000,000 No
+86 jp.msn.com Newspapers 23,000,000 1.5% 790,000,000 No
+87 ebay.de Auctions 23,000,000 1.5% 7,200,000,000 Yes
+88 partypoker.com 23,000,000 1.5% 190,000,000 Yes
+89 softonic.com Software 23,000,000 1.5% 450,000,000 Yes
+90 youdao.com Blogging Resources & Services 23,000,000 1.5% 340,000,000 Yes
+91 imageshack.us 23,000,000 1.5% 230,000,000 Yes
+92 megavideo.com Online Video 22,000,000 1.4% 410,000,000 Yes
+93 zqgame.com Sony PlayStation 21,000,000 1.4% 120,000,000 No
+94 odnoklassniki.ru Social Networks 21,000,000 1.3% 9,400,000,000 Yes
+95 biglobe.ne.jp Web Portals 21,000,000 1.3% 370,000,000 Yes
+96 target.com Mass Merchants & Department Stores 21,000,000 1.4% 950,000,000 Yes
+97 filestube.com File Sharing & Hosting 21,000,000 1.4% 300,000,000 Yes
+98 uol.com.br Web Portals 21,000,000 1.3% 4,900,000,000 Yes
+99 mywebsearch.com Search Engines 21,000,000 1.3% 960,000,000 Yes
+100 espn.go.com Sports 21,000,000 1.4% 2,700,000,000 No
+101 pconline.com.cn Local News 21,000,000 1.3% 370,000,000 Yes
+102 alipay.com Merchant Services & Payment Systems 21,000,000 1.4% 1,300,000,000 Yes
+103 badoo.com Dating & Personals 20,000,000 1.3% 5,300,000,000 No
+104 avg.com Antivirus & Malware 19,000,000 1.2% 260,000,000 Yes
+105 96pk.com Games 19,000,000 1.2% 190,000,000 No
+106 ebay.co.uk Auctions 19,000,000 1.2% 5,800,000,000 Yes
+107 renren.com Social Networks 19,000,000 1.2% 2,800,000,000 Yes
+108 zol.com.cn Hardware 19,000,000 1.2% 540,000,000 Yes
+109 alot.com Web Apps & Online Tools 19,000,000 1.2% 650,000,000 Yes
+110 bankofamerica.com Banking 19,000,000 1.2% 2,500,000,000 Yes
+111 paipai.com Apparel 19,000,000 1.2% 720,000,000 No
+112 hatena.ne.jp Blogging Resources & Services 19,000,000 1.2% 170,000,000 Yes
+113 cntv.cn TV Networks & Stations 19,000,000 1.2% 500,000,000 Yes
+114 zynga.com Casual Games 19,000,000 1.2% 3,600,000,000 Yes
+115 sourceforge.net Open Source 19,000,000 1.2% 230,000,000 Yes
+116 nytimes.com Newspapers 19,000,000 1.2% 650,000,000 Yes
+117 kakaku.com Price Comparisons 19,000,000 1.2% 890,000,000 Yes
+118 xinhuanet.com News 19,000,000 1.2% 590,000,000 Yes
+119 zedo.com Advertising & Marketing 18,000,000 1.1% 160,000,000 Yes
+120 news.163.com Web Portals 18,000,000 1.1% 400,000,000 No
+121 bestbuy.com Consumer Electronics 18,000,000 1.1% 870,000,000 Yes
+122 mop.com Roleplaying Games 18,000,000 1.1% 300,000,000 Yes
+123 orkut.co.in Social Networks 18,000,000 1.1% 1,700,000,000 Yes
+124 wikimedia.org Dictionaries & Encyclopedias 18,000,000 1.1% 140,000,000 No
+125 chase.com Banking 18,000,000 1.1% 2,300,000,000 Yes
+126 vk.com Social Networks 18,000,000 1.1% 1,100,000,000 No
+127 metacafe.com Video Sharing 18,000,000 1.1% 340,000,000 Yes
+128 kugou.com Movies 18,000,000 1.1% 170,000,000 Yes
+129 qiyi.com Movies 18,000,000 1.1% 450,000,000 No
+130 dell.com Hardware 18,000,000 1.1% 530,000,000 Yes
+131 uuzu.com Computer & Video Games 17,000,000 1.1% 89,000,000 No
+132 ledu.com Computer & Video Games 17,000,000 1.1% 90,000,000 No
+133 brothersoft.com Freeware & Shareware 17,000,000 1.1% 160,000,000 Yes
+134 amazon.co.uk Shopping Portals & Search Engines 17,000,000 1.1% 1,600,000,000 No
+135 amazon.de Entertainment Media 17,000,000 1.1% 1,500,000,000 No
+136 nate.com Web Portals 17,000,000 1.1% 1,800,000,000 Yes
+137 narod.ru Web Hosting & Domain Registration 16,000,000 1% 230,000,000 Yes
+138 9wee.com Simulation Games 16,000,000 1% 81,000,000 No
+139 livejournal.com Blogging Resources & Services 16,000,000 1% 1,100,000,000 Yes
+140 mapquest.com Maps 16,000,000 1% 280,000,000 Yes
+141 globo.com Web Portals 16,000,000 1% 3,300,000,000 Yes
+142 ameba.jp Blogging Resources & Services 16,000,000 1% 1,700,000,000 Yes
+143 joy.cn Online Video 16,000,000 1% 190,000,000 Yes
+144 depositfiles.com File Sharing & Hosting 16,000,000 1% 280,000,000 Yes
+145 wikimediafoundation.org Dictionaries & Encyclopedias 16,000,000 1% 50,000,000 No
+146 thepiratebay.org File Sharing & Hosting 16,000,000 1% 720,000,000 Yes
+147 2ch.net Forum & Chat Providers 16,000,000 1% 670,000,000 Yes
+148 ocn.ne.jp Web Portals 16,000,000 1% 250,000,000 Yes
+149 cocolog-nifty.com Blogging Resources & Services 16,000,000 1% 160,000,000 Yes
+150 free.fr ISPs 16,000,000 1% 870,000,000 Yes
+151 mozilla.org Internet Clients & Browsers 16,000,000 1% 140,000,000 No
+152 netflix.com DVD & Video Rentals 16,000,000 1% 1,900,000,000 Yes
+153 cyworld.com Flash-Based Entertainment 16,000,000 1% 1,000,000,000 No
+154 thefreedictionary.com Dictionaries & Encyclopedias 16,000,000 1% 130,000,000 Yes
+155 pptv.com TV Networks & Stations 16,000,000 1% 540,000,000 Yes
+156 yomiuri.co.jp Newspapers 15,000,000 0.9% 310,000,000 Yes
+157 people.com.cn News 15,000,000 0.9% 310,000,000 Yes
+158 addthis.com Internet Clients & Browsers 14,000,000 0.9% 81,000,000 No
+159 taringa.net Social Networks 14,000,000 0.9% 600,000,000 Yes
+160 exblog.jp Blogging Resources & Services 14,000,000 0.9% 210,000,000 Yes
+161 3366.com Arts & Entertainment 14,000,000 0.9% 800,000,000 No
+162 so-net.ne.jp Web Portals 14,000,000 0.9% 170,000,000 Yes
+163 nicovideo.jp Online Video 14,000,000 0.9% 1,700,000,000 Yes
+164 terra.com.br News 13,000,000 0.8% 1,500,000,000 Yes
+165 wushen.com Fan Fiction 13,000,000 0.8% 110,000,000 No
+166 infoseek.co.jp Web Portals 13,000,000 0.8% 280,000,000 Yes
+167 xici.net Online Communities 13,000,000 0.9% 230,000,000 Yes
+168 reference.com Dictionaries & Encyclopedias 13,000,000 0.9% 280,000,000 Yes
+169 zing.vn Viet Nam 13,000,000 0.8% 1,600,000,000 Yes
+170 nih.gov Health 13,000,000 0.8% 300,000,000 Yes
+171 okwave.jp Forum & Chat Providers 13,000,000 0.9% 50,000,000 Yes
+172 mixi.jp Social Networks 13,000,000 0.8% 3,000,000,000 Yes
+173 cncmax.cn Web Portals 13,000,000 0.8% 110,000,000 Yes
+174 orange.fr Web Portals 13,000,000 0.8% 6,400,000,000 Yes
+175 babylon.com Translation Tools & Resources 13,000,000 0.8% 300,000,000 Yes
+176 optmd.com Advertising & Marketing 13,000,000 0.9% 66,000,000 Yes
+177 jugem.jp Blogging Resources & Services 13,000,000 0.8% 120,000,000 Yes
+178 miniclip.com Online Games 13,000,000 0.8% 540,000,000 Yes
+179 58.com Apartments & Residential Rentals 13,000,000 0.8% 550,000,000 Yes
+180 ikea.com Home Furnishings 13,000,000 0.8% 960,000,000 No
+181 sakura.ne.jp Web Hosting & Domain Registration 13,000,000 0.8% 250,000,000 Yes
+182 tumblr.com Online Journals & Personal Sites 13,000,000 0.8% 1,000,000,000 Yes
+183 eastmoney.com Investing 12,000,000 0.8% 730,000,000 Yes
+184 vimeo.com 12,000,000 0.8% 130,000,000 Yes
+185 skycn.com Software 12,000,000 0.8% 110,000,000 Yes
+186 nowdownloadall.com File Sharing & Hosting 12,000,000 0.8% 72,000,000 No
+187 booking.com Hotels & Accommodations 12,000,000 0.8% 370,000,000 No
+188 excite.co.jp Web Portals 12,000,000 0.8% 230,000,000 Yes
+189 vancl.com Apparel 12,000,000 0.8% 190,000,000 No
+190 rakuten.ne.jp Shopping Portals & Search Engines 12,000,000 0.8% 130,000,000 Yes
+191 ezinearticles.com Dating & Personals 12,000,000 0.8% 120,000,000 Yes
+192 slideshare.net Business Plans & Presentations 12,000,000 0.8% 88,000,000 Yes
+193 allabout.co.jp General Reference 12,000,000 0.8% 97,000,000 Yes
+194 bearshare.com Music Streams & Downloads 12,000,000 0.8% 170,000,000 Yes
+195 java.com Java 12,000,000 0.8% 110,000,000 Yes
+196 126.com Web Portals 12,000,000 0.8% 330,000,000 Yes
+197 rambler.ru Web Portals 12,000,000 0.8% 1,900,000,000 Yes
+198 6.cn Online Video 12,000,000 0.8% 140,000,000 Yes
+199 macromedia.com Multimedia Software 12,000,000 0.8% 55,000,000 No
+200 hudong.com Celebrities & Entertainment News 12,000,000 0.8% 130,000,000 Yes
+201 commentcamarche.net Technology News 12,000,000 0.8% 230,000,000 Yes
+202 livedoor.com Web Portals 12,000,000 0.8% 370,000,000 Yes
+203 fileserve.com File Sharing & Hosting 12,000,000 0.8% 190,000,000 No
+204 att.com Phone Service Providers 12,000,000 0.8% 890,000,000 Yes
+205 cnxad.com 11,000,000 0.7% 60,000,000 Yes
+206 liveperson.net Customer Relationship Management (CRM) 11,000,000 0.7% 110,000,000 No
+207 soufun.com Real Estate 11,000,000 0.7% 370,000,000 Yes
+208 peeplo.com Search Engines 11,000,000 0.7% 73,000,000 Yes
+209 gmarket.co.kr Shopping 11,000,000 0.7% 450,000,000 Yes
+210 chosun.com Newspapers 11,000,000 0.7% 210,000,000 Yes
+211 dailymail.co.uk Newspapers 11,000,000 0.7% 340,000,000 Yes
+212 wellsfargo.com Banking 11,000,000 0.7% 1,400,000,000 Yes
+213 douban.com Social Networks 11,000,000 0.7% 310,000,000 Yes
+214 sparkstudios.com Marketing Services 11,000,000 0.7% 60,000,000 Yes
+215 windowslivehelp.com Email & Messaging 11,000,000 0.7% 130,000,000 No
+216 onet.pl Web Portals 11,000,000 0.7% 3,300,000,000 Yes
+217 mainichi.jp Newspapers 11,000,000 0.7% 98,000,000 Yes
+218 nhk.or.jp TV Networks & Stations 11,000,000 0.7% 160,000,000 No
+219 comcast.net Web Portals 11,000,000 0.7% 3,400,000,000 Yes
+220 tripadvisor.com Travel 11,000,000 0.7% 310,000,000 Yes
+221 libero.it Web Portals 11,000,000 0.7% 1,400,000,000 Yes
+222 kaixin001.com Social Networks 11,000,000 0.7% 1,400,000,000 Yes
+223 alexa.com Advertising & Marketing 11,000,000 0.7% 1,100,000,000 Yes
+224 netlog.com Social Networks 11,000,000 0.7% 1,400,000,000 Yes
+225 reuters.com News 11,000,000 0.7% 210,000,000 Yes
+226 letv.com TV Networks & Stations 11,000,000 0.7% 140,000,000 Yes
+227 t-online.de Web Portals 11,000,000 0.7% 880,000,000 Yes
+228 jiayuan.com Dating & Personals 11,000,000 0.7% 650,000,000 Yes
+229 hubpages.com Investing 11,000,000 0.7% 110,000,000 Yes
+230 maktoob.com Web Portals 11,000,000 0.7% 370,000,000 Yes
+231 mcafee.com Antivirus & Malware 11,000,000 0.7% 140,000,000 Yes
+232 tabelog.com Dining Guides 11,000,000 0.7% 230,000,000 Yes
+233 pomoho.com Online Video 11,000,000 0.7% 130,000,000 Yes
+234 web.de Web Portals 11,000,000 0.7% 2,100,000,000 Yes
+235 autohome.com.cn Vehicle Shopping 11,000,000 0.7% 1,300,000,000 Yes
+236 china.com Web Portals 11,000,000 0.7% 800,000,000 Yes
+237 hexun.com Investing 10,000,000 0.6% 180,000,000 Yes
+238 japanpost.jp Mail & Package Delivery 10,000,000 0.6% 230,000,000 No
+239 nextag.com Shopping 10,000,000 0.6% 160,000,000 Yes
+240 tagged.com Social Networks 10,000,000 0.6% 3,900,000,000 Yes
+241 multiply.com Photo & Image Sharing 10,000,000 0.6% 210,000,000 Yes
+242 marketgid.com Shopping Portals & Search Engines 10,000,000 0.6% 160,000,000 Yes
+243 wp.pl 10,000,000 0.6% 2,300,000,000 Yes
+244 ieaddons.com Online Goodies 10,000,000 0.6% 55,000,000 Yes
+245 softpedia.com Software 10,000,000 0.6% 97,000,000 Yes
+246 ju51.com Lighting 9,900,000 0.6% 67,000,000 Yes
+247 jiji.com News 9,900,000 0.6% 120,000,000 Yes
+248 sanspo.com Sports News 9,900,000 0.6% 160,000,000 Yes
+249 gmx.net Web Portals 9,900,000 0.6% 950,000,000 Yes
+250 overture.com Advertising & Marketing 9,900,000 0.6% 120,000,000 Yes
+251 docin.com Advertising & Marketing 9,900,000 0.6% 88,000,000 Yes
+252 allegro.pl Auctions 9,900,000 0.6% 4,400,000,000 Yes
+253 foxnews.com Broadcast & Network News 9,900,000 0.6% 790,000,000 Yes
+254 nikkeibp.co.jp Business News 9,900,000 0.6% 140,000,000 Yes
+255 39.net Health 9,900,000 0.6% 190,000,000 Yes
+256 huffingtonpost.com News 9,900,000 0.6% 500,000,000 Yes
+257 wan5d.com Computer & Video Games 9,900,000 0.6% 51,000,000 No
+258 naqigs.com 9,900,000 0.6% 45,000,000 No
+259 imesh.com Music Streams & Downloads 9,900,000 0.6% 130,000,000 No
+260 yz.szgla.com Computer & Video Games 9,900,000 0.6% 46,000,000 No
+261 ups.com Mail & Package Delivery 9,900,000 0.6% 310,000,000 Yes
+262 iza.ne.jp News 9,900,000 0.6% 88,000,000 Yes
+263 allrecipes.com Cooking & Recipes 9,900,000 0.6% 370,000,000 Yes
+264 wikia.com Online Communities 9,900,000 0.6% 410,000,000 Yes
+265 rediff.com Web Portals 9,900,000 0.6% 1,300,000,000 Yes
+266 sponichi.co.jp Sports News 9,900,000 0.6% 160,000,000 Yes
+267 glispa.com Search Engine Optimization & Marketing 9,900,000 0.6% 49,000,000 No
+268 gnavi.co.jp Dining Guides 9,800,000 0.6% 210,000,000 Yes
+269 expedia.com Travel 9,800,000 0.6% 450,000,000 Yes
+270 sdo.com Online Games 9,800,000 0.6% 170,000,000 Yes
+271 verizonwireless.com Phone Service Providers 9,800,000 0.6% 800,000,000 Yes
+272 real.com Media Players 9,800,000 0.6% 80,000,000 Yes
+273 51.com Social Networks 9,800,000 0.6% 1,100,000,000 Yes
+274 impress.co.jp Computers & Electronics 9,800,000 0.6% 160,000,000 Yes
+275 twitpic.com Online Communities 9,800,000 0.6% 190,000,000 Yes
+276 samsung.com Consumer Electronics 9,800,000 0.6% 190,000,000 Yes
+277 torrentz.com File Sharing & Hosting 9,700,000 0.6% 340,000,000 Yes
+278 360buy.com E-Commerce Services 9,700,000 0.6% 300,000,000 Yes
+279 traviangames.com Online Games 9,100,000 0.6% 37,000,000 Yes
+280 nikkansports.com Sports News 9,100,000 0.6% 130,000,000 Yes
+281 iminent.com Clip Art & Animated GIFs 9,100,000 0.6% 590,000,000 Yes
+282 ning.com Web Design & Development 9,100,000 0.6% 310,000,000 Yes
+283 51wan.com Massive Multiplayer 9,100,000 0.6% 50,000,000 Yes
+284 wretch.cc Online Journals & Personal Sites 9,100,000 0.6% 2,500,000,000 Yes
+285 typepad.com Blogging Resources & Services 9,100,000 0.6% 120,000,000 Yes
+286 bizrate.com Apparel 9,100,000 0.6% 120,000,000 Yes
+287 auction.co.kr Price Comparisons 9,100,000 0.6% 310,000,000 Yes
+288 wordreference.com 9,000,000 0.6% 250,000,000 Yes
+289 duowan.com Online Games 9,000,000 0.6% 300,000,000 Yes
+290 asahi.com News 9,000,000 0.6% 190,000,000 Yes
+291 dangdang.com Book Retailers 9,000,000 0.6% 280,000,000 Yes
+292 letitbit.net File Sharing & Hosting 9,000,000 0.6% 190,000,000 Yes
+293 musica.com Music & Audio 9,000,000 0.6% 250,000,000 Yes
+294 shoplocal.com Shopping Portals & Search Engines 9,000,000 0.6% 140,000,000 Yes
+295 jcpenney.com Mass Merchants & Department Stores 9,000,000 0.6% 800,000,000 Yes
+296 tenpay.com Merchant Services & Payment Systems 9,000,000 0.6% 230,000,000 No
+297 hulu.com Online Video 9,000,000 0.6% 590,000,000 Yes
+298 guardian.co.uk Newspapers 9,000,000 0.6% 190,000,000 Yes
+299 nba.com Basketball 9,000,000 0.6% 340,000,000 Yes
+300 verycd.com File Sharing & Hosting 9,000,000 0.6% 170,000,000 Yes
+301 shopping.com Price Comparisons 9,000,000 0.6% 88,000,000 Yes
+302 funshion.com Movies 9,000,000 0.6% 97,000,000 Yes
+303 virgilio.it Web Portals 9,000,000 0.6% 540,000,000 Yes
+304 360doc.com Social Sciences 9,000,000 0.6% 88,000,000 Yes
+305 118114.cn Web Portals 9,000,000 0.6% 81,000,000 Yes
+306 17173.com Roleplaying Games 9,000,000 0.6% 280,000,000 Yes
+307 over-blog.com Blogging Resources & Services 8,900,000 0.6% 210,000,000 Yes
+308 ziddu.com Photo & Video Sharing 8,900,000 0.6% 80,000,000 Yes
+309 macys.com Mass Merchants & Department Stores 8,900,000 0.6% 870,000,000 Yes
+310 sears.com Mass Merchants & Department Stores 8,900,000 0.6% 450,000,000 Yes
+311 deviantart.com Photographic & Digital Arts 8,900,000 0.6% 950,000,000 Yes
+312 duba.net Antivirus & Malware 8,900,000 0.6% 81,000,000 Yes
+313 leboncoin.fr Classifieds 8,800,000 0.6% 4,900,000,000 Yes
+314 ganji.com Shopping Portals & Search Engines 8,800,000 0.6% 410,000,000 Yes
+315 washingtonpost.com Newspapers 8,300,000 0.5% 230,000,000 Yes
+316 robtex.com 8,300,000 0.5% 41,000,000 Yes
+317 mapion.co.jp Maps 8,300,000 0.5% 61,000,000 Yes
+318 in.com Web Portals 8,300,000 0.5% 130,000,000 Yes
+319 ucoz.ru Web Design & Development 8,300,000 0.5% 190,000,000 Yes
+320 usps.com Mail & Package Delivery 8,300,000 0.5% 340,000,000 Yes
+321 isohunt.com Search Engines 8,200,000 0.5% 330,000,000 Yes
+322 webry.info Military 8,200,000 0.5% 49,000,000 Yes
+323 bitauto.com Autos & Vehicles 8,200,000 0.5% 540,000,000 Yes
+324 oricon.co.jp Music & Audio 8,200,000 0.5% 74,000,000 Yes
+325 toysrus.com Toys 8,200,000 0.5% 660,000,000 Yes
+326 11st.co.kr Home Financing 8,200,000 0.5% 170,000,000 Yes
+327 mt.co.kr Investing 8,200,000 0.5% 45,000,000 Yes
+328 metrolyrics.com Music & Audio 8,200,000 0.5% 73,000,000 Yes
+329 microsofttranslator.com Translation Tools & Resources 8,200,000 0.5% 110,000,000 Yes
+330 surveymonkey.com Web Apps & Online Tools 8,200,000 0.5% 170,000,000 No
+331 monografias.com Web Portals 8,200,000 0.5% 80,000,000 Yes
+332 dtiblog.com Blogging Resources & Services 8,200,000 0.5% 160,000,000 Yes
+333 27.cn Beauty & Fitness 8,200,000 0.5% 400,000,000 Yes
+334 chinanews.com.cn News 8,200,000 0.5% 230,000,000 Yes
+335 comcast.com Service Providers 8,200,000 0.5% 170,000,000 Yes
+336 m18.com Apparel 8,200,000 0.5% 190,000,000 No
+337 tom.com News 8,200,000 0.5% 370,000,000 Yes
+338 indiatimes.com Newspapers 8,100,000 0.5% 310,000,000 Yes
+339 huanqiu.com News 8,100,000 0.5% 370,000,000 Yes
+340 squidoo.com Web Services 8,100,000 0.5% 96,000,000 Yes
+341 rincondelvago.com Education 8,100,000 0.5% 80,000,000 Yes
+342 avast.com 8,100,000 0.5% 74,000,000 No
+343 icq.com Forum & Chat Providers 8,100,000 0.5% 250,000,000 Yes
+344 tinyurl.com Web Services 8,100,000 0.5% 60,000,000 Yes
+345 usenet.nl File Sharing & Hosting 8,100,000 0.5% 90,000,000 No
+346 tinypic.com Photo & Video Sharing 8,100,000 0.5% 80,000,000 Yes
+347 kuwo.cn Game Cheats & Hints 8,000,000 0.5% 97,000,000 No
+348 gamespot.com Computer & Video Games 7,600,000 0.5% 160,000,000 Yes
+349 torrentdownloads.net File Sharing & Hosting 7,500,000 0.5% 67,000,000 Yes
+350 amazon.cn Shopping Portals & Search Engines 7,500,000 0.5% 160,000,000 No
+351 foodnetwork.com Cooking & Recipes 7,500,000 0.5% 310,000,000 Yes
+352 baixaki.com.br Internet & Telecom 7,500,000 0.5% 450,000,000 Yes
+353 ccb.com.cn Banking 7,500,000 0.5% 190,000,000 No
+354 liveinternet.ru Web Portals 7,500,000 0.5% 380,000,000 Yes
+355 liutilities.com Software Utilities 7,500,000 0.5% 31,000,000 No
+356 plala.or.jp ISPs 7,500,000 0.5% 74,000,000 Yes
+357 hankooki.com Business & Industrial 7,400,000 0.5% 61,000,000 Yes
+358 01net.com Technology News 7,400,000 0.5% 190,000,000 Yes
+359 indeed.com Jobs 7,400,000 0.5% 410,000,000 Yes
+360 groupon.com Coupons & Discount Offers 7,400,000 0.5% 160,000,000 Yes
+361 hotpepper.jp Dining Guides 7,400,000 0.5% 130,000,000 Yes
+362 bild.de News 7,400,000 0.5% 450,000,000 Yes
+363 pandora.tv Arts & Entertainment 7,400,000 0.5% 81,000,000 Yes
+364 unkar.org Forum & Chat Providers 7,400,000 0.5% 21,000,000 Yes
+365 cookpad.com Cooking & Recipes 7,400,000 0.5% 330,000,000 Yes
+366 gap.com Apparel 7,400,000 0.5% 590,000,000 Yes
+367 nokia.com Mobile Phones 7,400,000 0.5% 130,000,000 Yes
+368 fedex.com Mail & Package Delivery 7,400,000 0.5% 270,000,000 Yes
+369 informer.com Web Design & Development 7,400,000 0.5% 55,000,000 Yes
+370 nfl.com American Football 7,400,000 0.5% 590,000,000 Yes
+371 telegraph.co.uk Newspapers 7,400,000 0.5% 190,000,000 Yes
+372 beemp3.com Music Streams & Downloads 7,400,000 0.5% 140,000,000 No
+373 capitalone.com Credit Cards 7,400,000 0.5% 550,000,000 Yes
+374 opera.com Internet Clients & Browsers 7,400,000 0.5% 55,000,000 Yes
+375 yelp.com Directories & Listings 7,400,000 0.5% 170,000,000 Yes
+376 vnet.cn Web Portals 7,400,000 0.5% 65,000,000 Yes
+377 justin.tv Online Video 7,400,000 0.5% 500,000,000 Yes
+378 aweber.com Forms Guides & Templates 7,400,000 0.5% 130,000,000 Yes
+379 atwiki.jp Web Hosting & Domain Registration 7,400,000 0.5% 210,000,000 Yes
+380 linternaute.com Magazines 7,400,000 0.5% 410,000,000 Yes
+381 chip.de Computers & Electronics 7,400,000 0.5% 160,000,000 Yes
+382 kohls.com Apparel 7,400,000 0.5% 1,100,000,000 Yes
+383 pandora.com Radio 7,400,000 0.5% 1,400,000,000 Yes
+384 godaddy.com Web Hosting & Domain Registration 7,300,000 0.5% 370,000,000 Yes
+385 vector.co.jp Internet Clients & Browsers 7,300,000 0.5% 72,000,000 Yes
+386 teacup.com Forum & Chat Providers 7,300,000 0.5% 88,000,000 Yes
+387 overstock.com Mass Merchants & Department Stores 7,300,000 0.5% 450,000,000 Yes
+388 match.com Dating & Personals 7,300,000 0.5% 1,300,000,000 Yes
+389 pagesjaunes.fr Business & Personal Listings 7,300,000 0.5% 310,000,000 Yes
+390 buzzle.com Web Portals 6,900,000 0.4% 45,000,000 Yes
+391 mercadolivre.com.br Auctions 6,900,000 0.4% 790,000,000 Yes
+392 sbs.co.kr Arts & Entertainment 6,900,000 0.4% 56,000,000 Yes
+393 last.fm Music Streams & Downloads 6,900,000 0.4% 120,000,000 Yes
+394 constantcontact.com Email & Messaging 6,900,000 0.4% 310,000,000 Yes
+395 incredimail.com Email & Messaging 6,900,000 0.4% 260,000,000 Yes
+396 veoh.com Online Video 6,800,000 0.4% 80,000,000 Yes
+397 shinobi.jp Web Stats & Analytics 6,800,000 0.4% 74,000,000 Yes
+398 gutefrage.net Educational Resources 6,800,000 0.4% 73,000,000 Yes
+399 pcpop.com Search Engines 6,800,000 0.4% 130,000,000 Yes
+400 careerbuilder.com Job Listings 6,800,000 0.4% 370,000,000 Yes
+401 alice.it News 6,800,000 0.4% 300,000,000 Yes
+402 zimbio.com Celebrities & Entertainment News 6,800,000 0.4% 120,000,000 Yes
+403 sweetim.com Clip Art & Animated GIFs 6,800,000 0.4% 160,000,000 Yes
+404 ibm.com Computers & Electronics 6,800,000 0.4% 210,000,000 Yes
+405 sonico.com Social Networks 6,800,000 0.4% 490,000,000 Yes
+406 21cn.com Web Portals 6,800,000 0.4% 59,000,000 Yes
+407 pixnet.net Online Journals & Personal Sites 6,800,000 0.4% 160,000,000 Yes
+408 naver.jp Search Engines 6,800,000 0.4% 66,000,000 Yes
+409 intel.com Chips & Processors 6,800,000 0.4% 88,000,000 No
+410 wikimapia.org Maps 6,800,000 0.4% 230,000,000 Yes
+411 qidian.com Fan Fiction 6,800,000 0.4% 410,000,000 Yes
+412 homedepot.com Home Improvement 6,800,000 0.4% 340,000,000 No
+413 pingan.com Insurance 6,800,000 0.4% 45,000,000 No
+414 95599.cn Banking 6,800,000 0.4% 190,000,000 No
+415 ign.com Computer & Video Games 6,800,000 0.4% 190,000,000 Yes
+416 jalan.net Hotels & Accommodations 6,800,000 0.4% 250,000,000 Yes
+417 donga.com Newspapers 6,800,000 0.4% 61,000,000 Yes
+418 filehippo.com File Sharing & Hosting 6,800,000 0.4% 90,000,000 Yes
+419 blackberry.com Smart Phones 6,800,000 0.4% 190,000,000 Yes
+420 alisoft.com Internet & Telecom 6,700,000 0.4% 55,000,000 No
+421 sfr.fr Mobile & Wireless 6,700,000 0.4% 1,200,000,000 Yes
+422 laredoute.fr Apparel 6,700,000 0.4% 370,000,000 Yes
+423 repubblica.it Politics 6,700,000 0.4% 490,000,000 Yes
+424 southwest.com Air Travel 6,700,000 0.4% 300,000,000 Yes
+425 ynet.com News 6,700,000 0.4% 340,000,000 Yes
+426 onlinedown.net Software 6,700,000 0.4% 46,000,000 Yes
+427 mylife.com People Search 6,700,000 0.4% 110,000,000 Yes
+428 game2.cn Casual Games 6,700,000 0.4% 37,000,000 No
+429 yellowpages.com Business & Personal Listings 6,700,000 0.4% 120,000,000 Yes
+430 kaskus.us Indonesia 6,700,000 0.4% 260,000,000 Yes
+431 evite.com Gifts & Special Event Items 6,700,000 0.4% 250,000,000 Yes
+432 m1905.com TV Networks & Stations 6,700,000 0.4% 140,000,000 No
+433 duote.com Software 6,700,000 0.4% 74,000,000 Yes
+434 opendns.com Network Security 6,700,000 0.4% 130,000,000 Yes
+435 webmd.com Medical Literature & Resources 6,700,000 0.4% 140,000,000 Yes
+436 itmedia.co.jp Technology News 6,700,000 0.4% 59,000,000 Yes
+437 pcauto.com.cn Vehicle Shopping 6,700,000 0.4% 490,000,000 Yes
+438 oyunlar1.com Online Games 6,700,000 0.4% 720,000,000 Yes
+439 iefxz.com Software Utilities 6,700,000 0.4% 46,000,000 No
+440 yaplog.jp Blogging Resources & Services 6,700,000 0.4% 66,000,000 Yes
+441 gyyx.cn Online Games 6,700,000 0.4% 66,000,000 No
+442 whitepages.com Search Engines 6,700,000 0.4% 190,000,000 Yes
+443 kuaibo.com Search Engines 6,700,000 0.4% 160,000,000 Yes
+444 y8.com Flash-Based Entertainment 6,700,000 0.4% 870,000,000 Yes
+445 digg.com Online Communities 6,600,000 0.4% 88,000,000 Yes
+446 webs.com Web Design & Development 6,600,000 0.4% 210,000,000 Yes
+447 tiexue.net Military 6,200,000 0.4% 170,000,000 Yes
+448 ourtoolbar.com Web Apps & Online Tools 6,200,000 0.4% 31,000,000 Yes
+449 115.com Search Engines 6,200,000 0.4% 67,000,000 Yes
+450 otto.de Mass Merchants & Department Stores 6,200,000 0.4% 450,000,000 No
+451 camzap.com Webcams & Virtual Tours 6,200,000 0.4% 31,000,000 No
+452 domaintools.com Web Hosting & Domain Registration 6,200,000 0.4% 55,000,000 Yes
+453 acer.com Desktops 6,200,000 0.4% 120,000,000 No
+454 pchome.net Computers & Electronics 6,200,000 0.4% 67,000,000 Yes
+455 symantec.com Antivirus & Malware 6,200,000 0.4% 67,000,000 No
+456 51job.com Jobs 6,200,000 0.4% 230,000,000 Yes
+457 latimes.com Newspapers 6,200,000 0.4% 96,000,000 Yes
+458 aufeminin.com Women's Interests 6,200,000 0.4% 170,000,000 Yes
+459 mobile.de Vehicle Shopping 6,200,000 0.4% 1,300,000,000 Yes
+460 engadget.com Consumer Electronics 6,200,000 0.4% 72,000,000 Yes
+461 associatedcontent.com General Reference 6,200,000 0.4% 67,000,000 Yes
+462 yezizhu.com Online Games 6,200,000 0.4% 67,000,000 Yes
+463 filesonic.com File Sharing & Hosting 6,200,000 0.4% 73,000,000 No
+464 wiktionary.org Dictionaries & Encyclopedias 6,200,000 0.4% 41,000,000 No
+465 usatoday.com Newspapers 6,200,000 0.4% 210,000,000 Yes
+466 61.com Children 6,200,000 0.4% 120,000,000 Yes
+467 vnexpress.net News 6,200,000 0.4% 540,000,000 Yes
+468 daily.co.jp Newspapers 6,100,000 0.4% 38,000,000 Yes
+469 ct10000.com Phone Service Providers 6,100,000 0.4% 130,000,000 Yes
+470 clubpenguin.com Virtual Worlds 6,100,000 0.4% 270,000,000 No
+471 amazon.fr Shopping Portals & Search Engines 6,100,000 0.4% 330,000,000 No
+472 tu.tv Online Video 6,100,000 0.4% 110,000,000 Yes
+473 speedtest.net Web Apps & Online Tools 6,100,000 0.4% 38,000,000 Yes
+474 armorgames.com Online Games 6,100,000 0.4% 130,000,000 Yes
+475 wordpress.org Blogging Resources & Services 6,100,000 0.4% 120,000,000 No
+476 ip138.com Directories & Listings 6,100,000 0.4% 49,000,000 Yes
+477 interia.pl Web Portals 6,100,000 0.4% 720,000,000 Yes
+478 detik.com Web Portals 6,100,000 0.4% 67,000,000 Yes
+479 docstoc.com 6,100,000 0.4% 31,000,000 Yes
+480 costco.com Mass Merchants & Department Stores 6,100,000 0.4% 280,000,000 No
+481 skyrock.com Social Networks 6,100,000 0.4% 970,000,000 Yes
+482 logsoku.com Online Communities 6,100,000 0.4% 24,000,000 Yes
+483 avira.com Antivirus & Malware 6,100,000 0.4% 38,000,000 No
+484 cnzz.com Web Stats & Analytics 6,100,000 0.4% 210,000,000 Yes
+485 picnik.com Photographic & Digital Arts 6,100,000 0.4% 890,000,000 Yes
+486 fanbox.com MLM & Business Opportunities 6,100,000 0.4% 42,000,000 Yes
+487 ustream.tv Online Video 6,100,000 0.4% 81,000,000 Yes
+488 formspring.me Social Networks 6,100,000 0.4% 710,000,000 No
+489 weather.com.cn Weather 6,100,000 0.4% 60,000,000 Yes
+490 rutracker.org 6,100,000 0.4% 440,000,000 Yes
+491 suite101.com Business & Industrial 6,100,000 0.4% 42,000,000 Yes
+492 weblio.jp Dictionaries & Encyclopedias 6,100,000 0.4% 31,000,000 Yes
+493 wanmei.com Vision Care 6,000,000 0.4% 89,000,000 No
+494 baofeng.com Media Players 5,700,000 0.4% 34,000,000 Yes
+495 kickasstorrents.com File Sharing & Hosting 5,700,000 0.4% 170,000,000 No
+496 ebuddy.com Email & Messaging 5,700,000 0.4% 280,000,000 Yes
+497 hotels.com Hotels & Accommodations 5,700,000 0.4% 130,000,000 Yes
+498 imvu.com Social Networks 5,700,000 0.4% 190,000,000 Yes
+499 zylom.com Online Games 5,700,000 0.4% 210,000,000 Yes
+500 cmbchina.com Banking 5,600,000 0.4% 96,000,000 Yes
+501 bloomberg.com Commodities & Futures Trading 5,600,000 0.4% 210,000,000 Yes
+502 rr.com Web Portals 5,600,000 0.4% 720,000,000 Yes
+503 yam.com Web Portals 5,600,000 0.4% 210,000,000 Yes
+504 junyilm.com 5,600,000 0.4% 34,000,000 No
+505 fresheye.com Web Portals 5,600,000 0.4% 34,000,000 Yes
+506 pchome.com.tw Web Portals 5,600,000 0.4% 380,000,000 Yes
+507 asiae.co.kr Movies 5,600,000 0.4% 61,000,000 Yes
+508 hc360.com E-Commerce Services 5,600,000 0.4% 110,000,000 Yes
+509 verizon.com Service Providers 5,600,000 0.4% 800,000,000 Yes
+510 groupalia.com Hotels & Accommodations 5,600,000 0.4% 50,000,000 No
+511 114la.com Directories & Listings 5,600,000 0.4% 160,000,000 Yes
+512 yandex.ua Search Engines 5,600,000 0.4% 450,000,000 Yes
+513 argos.co.uk Mass Merchants & Department Stores 5,600,000 0.4% 370,000,000 Yes
+514 tbs.co.jp TV Networks & Stations 5,600,000 0.4% 73,000,000 Yes
+515 juegos.com Online Games 5,600,000 0.4% 410,000,000 Yes
+516 gazeta.pl Newspapers 5,600,000 0.4% 370,000,000 Yes
+517 zhaopin.com Job Listings 5,600,000 0.4% 210,000,000 Yes
+518 elmundo.es Newspapers 5,600,000 0.4% 230,000,000 Yes
+519 4055.com 5,600,000 0.4% 28,000,000 Yes
+520 archive.org General Reference 5,600,000 0.4% 120,000,000 Yes
+521 passport.net Email & Messaging 5,600,000 0.4% 81,000,000 Yes
+522 runup.cn Computer & Video Games 5,600,000 0.4% 23,000,000 No
+523 shop-pro.jp E-Commerce Services 5,600,000 0.4% 160,000,000 Yes
+524 panasonic.jp Computers & Electronics 5,600,000 0.4% 89,000,000 No
+525 cctv.com TV & Video 5,600,000 0.4% 41,000,000 Yes
+526 usagc.org Visa & Immigration 5,600,000 0.4% 31,000,000 Yes
+527 jrj.com.cn Investing 5,600,000 0.4% 130,000,000 Yes
+528 seznam.cz Web Portals 5,600,000 0.4% 2,100,000,000 Yes
+529 yesky.com Computers & Electronics 5,600,000 0.4% 67,000,000 Yes
+530 csdn.net Computers & Electronics 5,600,000 0.4% 79,000,000 Yes
+531 91.com Flash-Based Entertainment 5,600,000 0.4% 96,000,000 Yes
+532 xe.com Travel 5,600,000 0.4% 110,000,000 Yes
+533 qip.ru Web Portals 5,600,000 0.4% 210,000,000 Yes
+534 myvideo.de Online Video 5,600,000 0.4% 140,000,000 Yes
+535 yfrog.com 5,600,000 0.4% 81,000,000 Yes
+536 spiegel.de Newspapers 5,600,000 0.4% 370,000,000 Yes
+537 hm.com Apparel 5,600,000 0.4% 450,000,000 No
+538 abcnews.go.com Broadcast & Network News 5,600,000 0.4% 120,000,000 No
+539 1ting.com Music & Audio 5,600,000 0.4% 120,000,000 Yes
+540 lowes.com Home Improvement 5,600,000 0.4% 310,000,000 Yes
+541 zuixiaoyao.com Face & Body Care 5,600,000 0.4% 38,000,000 Yes
+542 interpark.com Shopping 5,600,000 0.4% 89,000,000 No
+543 nikkei.com Business News 5,600,000 0.4% 130,000,000 Yes
+544 corriere.it Newspapers 5,600,000 0.4% 370,000,000 Yes
+545 people.com Celebrities & Entertainment News 5,600,000 0.4% 600,000,000 Yes
+546 wikihow.com How-To 5,600,000 0.4% 37,000,000 Yes
+547 dropbox.com File Sharing & Hosting 5,600,000 0.4% 190,000,000 No
+548 monster.com Jobs 5,500,000 0.4% 260,000,000 Yes
+549 partypoker.it Games 5,500,000 0.4% 41,000,000 Yes
+550 mynet.com Web Portals 5,500,000 0.4% 1,100,000,000 Yes
+551 ig.com.br Web Portals 5,500,000 0.4% 970,000,000 Yes
+552 dantri.com.vn People & Society 5,500,000 0.4% 330,000,000 Yes
+553 dianping.com Dining Guides 5,500,000 0.4% 72,000,000 Yes
+554 it168.com Computers & Electronics 5,500,000 0.4% 61,000,000 Yes
+555 wunderground.com Weather 5,500,000 0.4% 210,000,000 Yes
+556 v1.cn 5,500,000 0.4% 45,000,000 Yes
+557 freeonlinegames.com Casual Games 5,500,000 0.4% 120,000,000 Yes
+558 huangjinquxian.com 5,500,000 0.4% 16,000,000 No
+559 barnesandnoble.com Book Retailers 5,500,000 0.4% 280,000,000 Yes
+560 univision.com Web Portals 5,500,000 0.4% 280,000,000 Yes
+561 fixya.com Consumer Affairs & Product Reviews 5,500,000 0.4% 50,000,000 Yes
+562 ovi.com Mobile Apps & Add-Ons 5,200,000 0.3% 190,000,000 No
+563 pixmania.com Consumer Electronics 5,200,000 0.3% 140,000,000 Yes
+564 mtv.com Music & Audio 5,200,000 0.3% 97,000,000 Yes
+565 ea.com Computer & Video Games 5,200,000 0.3% 140,000,000 Yes
+566 pc120.com Antivirus & Malware 5,200,000 0.3% 38,000,000 No
+567 me.com Mobile Apps & Add-Ons 5,200,000 0.3% 210,000,000 Yes
+568 sprint.com Mobile & Wireless 5,200,000 0.3% 340,000,000 Yes
+569 xbox.com Xbox 5,200,000 0.3% 210,000,000 Yes
+570 seoul.co.kr Law & Government 5,100,000 0.3% 16,000,000 Yes
+571 pogo.com Casual Games 5,100,000 0.3% 1,100,000,000 Yes
+572 cbsnews.com News 5,100,000 0.3% 89,000,000 Yes
+573 samsungmobile.com Mobile Phones 5,100,000 0.3% 45,000,000 Yes
+574 utorrent.com Multimedia Software 5,100,000 0.3% 51,000,000 No
+575 blogcu.com Blogging Resources & Services 5,100,000 0.3% 81,000,000 Yes
+576 wn.com World News 5,100,000 0.3% 23,000,000 Yes
+577 partypoker.fr 5,100,000 0.3% 55,000,000 Yes
+578 mufg.jp Banking 5,100,000 0.3% 170,000,000 No
+579 rutube.ru Video Sharing 5,100,000 0.3% 67,000,000 Yes
+580 52pk.com Online Games 5,100,000 0.3% 120,000,000 Yes
+581 tuenti.com Social Networks 5,100,000 0.3% 8,400,000,000 No
+582 acrobat.com Business & Productivity Software 5,100,000 0.3% 61,000,000 Yes
+583 ticketmaster.com Ticket Sales 5,100,000 0.3% 250,000,000 Yes
+584 europa.eu Multilateral Organizations 5,100,000 0.3% 130,000,000 No
+585 forbes.com Business News 5,100,000 0.3% 130,000,000 Yes
+586 manta.com Business & Industrial 5,100,000 0.3% 50,000,000 Yes
+587 foxtab.com Internet Clients & Browsers 5,100,000 0.3% 19,000,000 Yes
+588 winamp.com Media Players 5,100,000 0.3% 55,000,000 Yes
+589 ryanair.com Air Travel 5,100,000 0.3% 88,000,000 Yes
+590 sanook.com Web Portals 5,100,000 0.3% 310,000,000 Yes
+591 ya.ru Search Engines 5,100,000 0.3% 130,000,000 Yes
+592 break.com Humor 5,100,000 0.3% 110,000,000 Yes
+593 unionsky.cn MLM & Business Opportunities 5,100,000 0.3% 37,000,000 No
+594 mp3raid.com Music Streams & Downloads 5,100,000 0.3% 80,000,000 Yes
+595 ccbill.com Merchant Services & Payment Systems 5,100,000 0.3% 42,000,000 No
+596 ninemsn.com.au Celebrities & Entertainment News 5,100,000 0.3% 370,000,000 Yes
+597 sony.jp Computers & Electronics 5,100,000 0.3% 80,000,000 Yes
+598 agame.com Computer & Video Games 5,100,000 0.3% 190,000,000 Yes
+599 zappos.com Apparel 5,100,000 0.3% 300,000,000 No
+600 sapo.pt Web Portals 5,100,000 0.3% 400,000,000 Yes
+601 addictinggames.com Online Games 5,100,000 0.3% 210,000,000 Yes
+602 thefind.com Shopping Portals & Search Engines 5,100,000 0.3% 81,000,000 Yes
+603 mercadolibre.com.mx Classifieds 5,100,000 0.3% 360,000,000 Yes
+604 zhcw.com 5,100,000 0.3% 89,000,000 Yes
+605 wer-kennt-wen.de Social Networks 5,100,000 0.3% 3,300,000,000 Yes
+606 abril.com.br Web Portals 5,100,000 0.3% 300,000,000 Yes
+607 computerbild.de Computers & Electronics 5,100,000 0.3% 140,000,000 Yes
+608 windowsmedia.com Music & Audio 5,100,000 0.3% 26,000,000 Yes
+609 kx365.com 5,100,000 0.3% 18,000,000 No
+610 babycenter.com Baby Care 5,100,000 0.3% 210,000,000 Yes
+611 zoosk.com Dating & Personals 5,100,000 0.3% 310,000,000 Yes
+612 piriform.com Software Utilities 5,100,000 0.3% 46,000,000 Yes
+613 doctissimo.fr Health 5,100,000 0.3% 160,000,000 Yes
+614 sciencedirect.com Science 5,100,000 0.3% 89,000,000 Yes
+615 nttdocomo.co.jp Mobile & Wireless 5,100,000 0.3% 120,000,000 No
+616 china.com.cn Internet & Telecom 5,100,000 0.3% 60,000,000 Yes
+617 atdhe.net Online Video 5,000,000 0.3% 210,000,000 Yes
+618 radikal.ru Photo & Video Software 5,000,000 0.3% 74,000,000 Yes
+619 livescore.com Team Sports 5,000,000 0.3% 600,000,000 Yes
+620 kmart.com Mass Merchants & Department Stores 5,000,000 0.3% 250,000,000 Yes
+621 citibank.com Finance 5,000,000 0.3% 300,000,000 Yes
+622 123people.com People Search 5,000,000 0.3% 34,000,000 Yes
+623 ebay.com.au Auctions 5,000,000 0.3% 1,300,000,000 Yes
+624 hyves.nl Social Networks 5,000,000 0.3% 4,000,000,000 Yes
+625 tesco.com Mass Merchants & Department Stores 5,000,000 0.3% 540,000,000 Yes
+626 carview.co.jp Autos & Vehicles 5,000,000 0.3% 300,000,000 Yes
+627 chinahr.com Jobs 5,000,000 0.3% 88,000,000 No
+628 uploading.com File Sharing & Hosting 5,000,000 0.3% 60,000,000 Yes
+629 friendster.com Social Networks 5,000,000 0.3% 230,000,000 Yes
+630 47news.jp News 5,000,000 0.3% 25,000,000 Yes
+631 nhaccuatui.com Viet Nam 5,000,000 0.3% 210,000,000 Yes
+632 yoka.com Fashion & Style 5,000,000 0.3% 170,000,000 Yes
+633 365ub.com Online Games 5,000,000 0.3% 28,000,000 No
+634 etsy.com Crafts 5,000,000 0.3% 860,000,000 No
+635 khan.co.kr Movies 5,000,000 0.3% 31,000,000 Yes
+636 taleo.net Management 5,000,000 0.3% 370,000,000 Yes
+637 ana.co.jp Air Travel 4,700,000 0.3% 160,000,000 No
+638 wisegeek.com How-To 4,700,000 0.3% 28,000,000 Yes
+639 goo.gl Web Services 4,700,000 0.3% 26,000,000 No
+640 baixing.com Real Estate 4,700,000 0.3% 330,000,000 Yes
+641 kompas.com Indonesia 4,700,000 0.3% 90,000,000 Yes
+642 vatgia.com Shopping 4,700,000 0.3% 61,000,000 Yes
+643 bbvod.net Movies 4,700,000 0.3% 38,000,000 Yes
+644 2144.cn Online Games 4,700,000 0.3% 160,000,000 Yes
+645 fc2web.com Web Hosting & Domain Registration 4,700,000 0.3% 31,000,000 Yes
+646 udn.com News 4,700,000 0.3% 210,000,000 Yes
+647 priceminister.com Shopping 4,700,000 0.3% 190,000,000 Yes
+648 medicinenet.com Health Conditions 4,700,000 0.3% 96,000,000 Yes
+649 gd118114.cn Web Services 4,700,000 0.3% 26,000,000 Yes
+650 nike.com Athletic Apparel 4,700,000 0.3% 210,000,000 Yes
+651 timeanddate.com Time & Calendars 4,700,000 0.3% 42,000,000 Yes
+652 friv.com Online Games 4,700,000 0.3% 130,000,000 Yes
+653 irctc.co.in Bus & Rail 4,700,000 0.3% 210,000,000 No
+654 kuronekoyamato.co.jp Mail & Package Delivery 4,700,000 0.3% 66,000,000 No
+655 newegg.com Hardware Components 4,700,000 0.3% 260,000,000 Yes
+656 delta.com Air Travel 4,700,000 0.3% 370,000,000 Yes
+657 worldslastchance.com Christianity 4,600,000 0.3% 13,000,000 Yes
+658 immobilienscout24.de Real Estate Listings 4,600,000 0.3% 550,000,000 Yes
+659 ytn.co.kr TV & Video 4,600,000 0.3% 16,000,000 Yes
+660 xrea.com Web Hosting & Domain Registration 4,600,000 0.3% 50,000,000 Yes
+661 livingsocial.com Coupons & Discount Offers 4,600,000 0.3% 61,000,000 Yes
+662 stayfriends.de Social Networks 4,600,000 0.3% 190,000,000 Yes
+663 5d6d.com Movies 4,600,000 0.3% 74,000,000 Yes
+664 abc.go.com TV Shows & Programs 4,600,000 0.3% 210,000,000 No
+665 nasa.gov Astronomy 4,600,000 0.3% 88,000,000 No
+666 sonystyle.com Consumer Electronics 4,600,000 0.3% 80,000,000 Yes
+667 boc.cn Currencies & Foreign Exchange 4,600,000 0.3% 120,000,000 No
+668 kapook.com Web Portals 4,600,000 0.3% 96,000,000 Yes
+669 quepasa.com Latinos & Latin-Americans 4,600,000 0.3% 170,000,000 Yes
+670 qunar.com Air Travel 4,600,000 0.3% 67,000,000 Yes
+671 xingkong.com People & Society 4,600,000 0.3% 24,000,000 No
+672 lego.com Toys 4,600,000 0.3% 450,000,000 No
+673 dealtime.com Shopping 4,600,000 0.3% 31,000,000 Yes
+674 merriam-webster.com Dictionaries & Encyclopedias 4,600,000 0.3% 81,000,000 Yes
+675 cri.cn News 4,600,000 0.3% 73,000,000 Yes
+676 vietbao.vn Newspapers 4,600,000 0.3% 50,000,000 Yes
+677 edaily.co.kr News 4,600,000 0.3% 14,000,000 Yes
+678 blogmura.com Blogging Resources & Services 4,600,000 0.3% 96,000,000 Yes
+679 linksynergy.com Affiliate Programs 4,600,000 0.3% 67,000,000 No
+680 nydailynews.com Gossip & Tabloid News 4,600,000 0.3% 66,000,000 Yes
+681 partycasino.com 4,600,000 0.3% 26,000,000 Yes
+682 appspot.com Web Apps & Online Tools 4,600,000 0.3% 67,000,000 Yes
+683 cdiscount.com Consumer Electronics 4,600,000 0.3% 330,000,000 Yes
+684 causes.com Social Issues & Advocacy 4,600,000 0.3% 37,000,000 Yes
+685 elpais.com Newspapers 4,600,000 0.3% 210,000,000 Yes
+686 kapihospital.de Online Games 4,600,000 0.3% 67,000,000 No
+687 52yeyou.com 4,600,000 0.3% 14,000,000 No
+688 xuite.net Blogging Resources & Services 4,600,000 0.3% 87,000,000 Yes
+689 t-mobile.com Mobile Phones 4,600,000 0.3% 300,000,000 Yes
+690 staples.com Office Supplies 4,600,000 0.3% 160,000,000 Yes
+691 kbs.co.kr TV & Video 4,600,000 0.3% 99,000,000 Yes
+692 marca.com Sports News 4,600,000 0.3% 410,000,000 Yes
+693 idealo.de Price Comparisons 4,600,000 0.3% 110,000,000 Yes
+694 120ask.com Health Conditions 4,600,000 0.3% 37,000,000 Yes
+695 tmz.com Celebrities & Entertainment News 4,600,000 0.3% 250,000,000 Yes
+696 zshare.net File Sharing & Hosting 4,600,000 0.3% 50,000,000 Yes
+697 mtime.com Movies 4,600,000 0.3% 82,000,000 Yes
+698 hinet.net Web Portals 4,600,000 0.3% 210,000,000 Yes
+699 made-in-china.com Business & Industrial 4,600,000 0.3% 67,000,000 Yes
+700 mycom.co.jp Technology News 4,600,000 0.3% 26,000,000 Yes
+701 articlesbase.com Business & Industrial 4,600,000 0.3% 34,000,000 Yes
+702 ca.gov State & Local Government 4,600,000 0.3% 310,000,000 Yes
+703 rian.ru Web Portals 4,600,000 0.3% 61,000,000 Yes
+704 zaycev.net Music Streams & Downloads 4,600,000 0.3% 300,000,000 Yes
+705 superpages.com Business & Personal Listings 4,600,000 0.3% 51,000,000 Yes
+706 examiner.com News 4,600,000 0.3% 50,000,000 Yes
+707 freakshare.com File Sharing & Hosting 4,600,000 0.3% 61,000,000 Yes
+708 888.com 4,600,000 0.3% 23,000,000 Yes
+709 focus.cn Dictionaries & Encyclopedias 4,600,000 0.3% 79,000,000 Yes
+710 btjunkie.org File Sharing & Hosting 4,600,000 0.3% 230,000,000 Yes
+711 stumbleupon.com Web Apps & Online Tools 4,600,000 0.3% 190,000,000 Yes
+712 priceline.com Travel 4,600,000 0.3% 230,000,000 Yes
+713 wachovia.com Banking 4,600,000 0.3% 540,000,000 Yes
+714 with2.net Blogging Resources & Services 4,600,000 0.3% 81,000,000 Yes
+715 rbc.ru Business News 4,600,000 0.3% 190,000,000 Yes
+716 victoriassecret.com Undergarments 4,600,000 0.3% 540,000,000 Yes
+717 wiley.com Books & Literature 4,600,000 0.3% 81,000,000 Yes
+718 bahn.de Bus & Rail 4,600,000 0.3% 190,000,000 Yes
+719 sky.com Web Portals 4,600,000 0.3% 480,000,000 Yes
+720 springerlink.com Science 4,600,000 0.3% 55,000,000 Yes
+721 heraldm.com Newspapers 4,600,000 0.3% 9,900,000 Yes
+722 xt918.com 4,600,000 0.3% 45,000,000 No
+723 freshwap.net Computers & Electronics 4,500,000 0.3% 31,000,000 Yes
+724 howstuffworks.com How-To 4,500,000 0.3% 66,000,000 Yes
+725 cartoonnetwork.com Cartoons 4,500,000 0.3% 280,000,000 Yes
+726 worldlingo.com Foreign Language Resources 4,300,000 0.3% 35,000,000 Yes
+727 clubic.com Computers & Electronics 4,300,000 0.3% 54,000,000 Yes
+728 classmates.com Alumni & Reunions 4,300,000 0.3% 130,000,000 Yes
+729 tf1.fr TV Networks & Stations 4,300,000 0.3% 170,000,000 Yes
+730 videosurf.com Online Video 4,300,000 0.3% 81,000,000 No
+731 sonyericsson.com Mobile Phones 4,300,000 0.3% 81,000,000 Yes
+732 bigfishgames.com Computer & Video Games 4,300,000 0.3% 170,000,000 Yes
+733 qook.co.kr Network Security 4,200,000 0.3% 50,000,000 Yes
+734 usazm.net 4,200,000 0.3% 18,000,000 No
+735 news.cn Anime & Manga 4,200,000 0.3% 41,000,000 Yes
+736 paran.com Web Portals 4,200,000 0.3% 130,000,000 Yes
+737 nationalgeographic.com Magazines 4,200,000 0.3% 89,000,000 Yes
+738 credit-agricole.fr Banking 4,200,000 0.3% 340,000,000 Yes
+739 plentyoffish.com Online Communities 4,200,000 0.3% 2,500,000,000 Yes
+740 boosj.com Online Video 4,200,000 0.3% 34,000,000 Yes
+741 qqwangming.org Online Goodies 4,200,000 0.3% 96,000,000 Yes
+742 chinamobile.com Service Providers 4,200,000 0.3% 110,000,000 Yes
+743 businessweek.com Business & Industrial 4,200,000 0.3% 38,000,000 Yes
+744 hani.co.kr Newspapers 4,200,000 0.3% 19,000,000 Yes
+745 idownloadunlimited.com Multimedia Software 4,200,000 0.3% 24,000,000 No
+746 ocnk.net Shopping Portals & Search Engines 4,200,000 0.3% 90,000,000 Yes
+747 j-cast.com Business News 4,200,000 0.3% 23,000,000 Yes
+748 urbandictionary.com Humor 4,200,000 0.3% 50,000,000 Yes
+749 top100.cn Music & Audio 4,200,000 0.3% 80,000,000 Yes
+750 vivanews.com News 4,200,000 0.3% 34,000,000 Yes
+751 easyjet.com Travel 4,200,000 0.3% 170,000,000 Yes
+752 ilmeteo.it Weather 4,200,000 0.3% 140,000,000 Yes
+753 gamebabylon.com Online Games 4,200,000 0.3% 26,000,000 Yes
+754 hurriyet.com.tr Newspapers 4,200,000 0.3% 720,000,000 Yes
+755 itv.com TV Networks & Stations 4,200,000 0.3% 140,000,000 Yes
+756 iwon.com Online Games 4,200,000 0.3% 73,000,000 Yes
+757 browserchoice.eu Internet Clients & Browsers 4,200,000 0.3% 26,000,000 No
+758 aa.com Air Travel 4,200,000 0.3% 250,000,000 Yes
+759 yahoo-mbga.jp Online Games 4,200,000 0.3% 250,000,000 No
+760 bidders.co.jp Auctions 4,200,000 0.3% 81,000,000 Yes
+761 chefkoch.de Cooking & Recipes 4,200,000 0.3% 180,000,000 Yes
+762 alimama.com Affiliate Programs 4,200,000 0.3% 110,000,000 Yes
+763 sympatico.ca Web Portals 4,200,000 0.3% 160,000,000 Yes
+764 farmville.com Simulation Games 4,200,000 0.3% 720,000,000 Yes
+765 freedownloadscenter.com Freeware & Shareware 4,200,000 0.3% 26,000,000 Yes
+766 readnovel.com E-Books 4,200,000 0.3% 370,000,000 Yes
+767 torrentreactor.net File Sharing & Hosting 4,200,000 0.3% 29,000,000 Yes
+768 national-lottery.co.uk 4,200,000 0.3% 270,000,000 Yes
+769 cooks.com Cooking & Recipes 4,200,000 0.3% 130,000,000 Yes
+770 chinaz.com Search Engines 4,200,000 0.3% 160,000,000 Yes
+771 aolnews.com News 4,200,000 0.3% 61,000,000 Yes
+772 infospace.com Search Engines 4,200,000 0.3% 110,000,000 Yes
+773 airasia.com Air Travel 4,200,000 0.3% 230,000,000 Yes
+774 stackoverflow.com Programming 4,200,000 0.3% 46,000,000 Yes
+775 chinadaily.com.cn News 4,200,000 0.3% 34,000,000 Yes
+776 pronto.com Price Comparisons 4,200,000 0.3% 51,000,000 Yes
+777 novoteka.ru Newspapers 4,200,000 0.3% 72,000,000 Yes
+778 imagevenue.com Photo & Image Sharing 4,200,000 0.3% 96,000,000 Yes
+779 pclady.com.cn Fashion & Style 4,200,000 0.3% 110,000,000 Yes
+780 best-price.com Price Comparisons 4,200,000 0.3% 38,000,000 Yes
+781 wowan365.com 4,200,000 0.3% 23,000,000 No
+782 gigazine.net Celebrities & Entertainment News 4,200,000 0.3% 31,000,000 Yes
+783 cbssports.com Sports News 4,200,000 0.3% 720,000,000 Yes
+784 mozilla-europe.org Internet Clients & Browsers 4,200,000 0.3% 19,000,000 No
+785 vzw.com Service Providers 4,200,000 0.3% 80,000,000 Yes
+786 pcworld.com Technology News 4,200,000 0.3% 37,000,000 Yes
+787 fotolog.com Photo & Video Sharing 4,200,000 0.3% 280,000,000 Yes
+788 ctrip.com Travel 4,200,000 0.3% 89,000,000 Yes
+789 3suisses.fr Apparel 4,200,000 0.3% 170,000,000 Yes
+790 information.com Search Engines 4,200,000 0.3% 29,000,000 Yes
+791 grepolis.com Massive Multiplayer 4,200,000 0.3% 1,100,000,000 No
+792 freechal.com Web Portals 4,200,000 0.3% 25,000,000 Yes
+793 teoma.com Search Engines 4,200,000 0.3% 50,000,000 Yes
+794 izlesene.com Photo & Video Sharing 4,200,000 0.3% 170,000,000 Yes
+795 pcgames.com.cn Online Games 4,200,000 0.3% 50,000,000 Yes
+796 webcrawler.com Search Engines 4,200,000 0.3% 60,000,000 Yes
+797 heroturko.org File Sharing & Hosting 4,200,000 0.3% 46,000,000 Yes
+798 accuweather.com Weather 4,200,000 0.3% 190,000,000 Yes
+799 uniblue.com Software 4,200,000 0.3% 21,000,000 No
+800 oracle.com Data Management 4,200,000 0.3% 120,000,000 Yes
+801 marketgid.info 4,200,000 0.3% 28,000,000 No
+802 vzarabotke.ru 4,200,000 0.3% 18,000,000 Yes
+803 fanpop.com TV Shows & Programs 4,100,000 0.3% 67,000,000 Yes
+804 mercadolibre.com.ar Classifieds 4,100,000 0.3% 440,000,000 Yes
+805 gismeteo.ru Weather 4,100,000 0.3% 98,000,000 Yes
+806 orbitz.com Travel 4,100,000 0.3% 210,000,000 Yes
+807 mashable.com Technology News 4,100,000 0.3% 38,000,000 Yes
+808 xcar.com.cn Autos & Vehicles 4,100,000 0.3% 230,000,000 Yes
+809 legacy.com 4,100,000 0.3% 190,000,000 Yes
+810 all-biz.info Business & Industrial 4,100,000 0.3% 38,000,000 Yes
+811 mbaobao.com Make-Up & Cosmetics 4,100,000 0.3% 41,000,000 No
+812 videobash.com Humor 4,100,000 0.3% 41,000,000 Yes
+813 buy.com Shopping 3,900,000 0.2% 80,000,000 Yes
+814 jal.co.jp Air Travel 3,900,000 0.2% 140,000,000 Yes
+815 htc.com Mobile Phones 3,900,000 0.2% 79,000,000 Yes
+816 neckermann.de Hotels & Accommodations 3,900,000 0.2% 170,000,000 Yes
+817 turbobit.net File Sharing & Hosting 3,900,000 0.2% 51,000,000 Yes
+818 kuwan8.com Games 3,900,000 0.2% 15,000,000 No
+819 travelocity.com Travel Agencies & Services 3,900,000 0.2% 190,000,000 Yes
+820 xing.com Career Resources & Planning 3,900,000 0.2% 310,000,000 Yes
+821 juchang.com Movies 3,900,000 0.2% 74,000,000 Yes
+822 righthealth.com Medical Literature & Resources 3,900,000 0.2% 37,000,000 Yes
+823 kp.ru News 3,900,000 0.2% 59,000,000 Yes
+824 joins.com People & Society 3,900,000 0.2% 37,000,000 Yes
+825 weebly.com Web Design & Development 3,800,000 0.2% 73,000,000 Yes
+826 vesti.ru News 3,800,000 0.2% 38,000,000 Yes
+827 deezer.com Music Streams & Downloads 3,800,000 0.2% 330,000,000 No
+828 facemoods.com Social Network Apps & Add-Ons 3,800,000 0.2% 210,000,000 Yes
+829 play.com Mass Merchants & Department Stores 3,800,000 0.2% 250,000,000 Yes
+830 123greetings.com Cards & Greetings 3,800,000 0.2% 66,000,000 Yes
+831 ukr.net Local News 3,800,000 0.2% 300,000,000 Yes
+832 qire123.com Online Video 3,800,000 0.2% 96,000,000 Yes
+833 hilton.com Hotels & Accommodations 3,800,000 0.2% 140,000,000 Yes
+834 kaspersky.com Antivirus & Malware 3,800,000 0.2% 42,000,000 Yes
+835 samsclub.com Mass Merchants & Department Stores 3,800,000 0.2% 190,000,000 Yes
+836 marriott.com Hotels & Accommodations 3,800,000 0.2% 160,000,000 Yes
+837 kinopoisk.ru Movie Reference 3,800,000 0.2% 130,000,000 Yes
+838 lg.com Consumer Electronics 3,800,000 0.2% 45,000,000 No
+839 readme.ru News 3,800,000 0.2% 61,000,000 Yes
+840 rapiddigger.com File Sharing & Hosting 3,800,000 0.2% 31,000,000 No
+841 istockphoto.com Stock Photography 3,800,000 0.2% 210,000,000 Yes
+842 weborama.fr Web Stats & Analytics 3,800,000 0.2% 34,000,000 Yes
+843 esmas.com Web Portals 3,800,000 0.2% 110,000,000 Yes
+844 a67.com Online Video 3,800,000 0.2% 89,000,000 Yes
+845 canalblog.com 3,800,000 0.2% 96,000,000 Yes
+846 logitech.com Consumer Electronics 3,800,000 0.2% 67,000,000 No
+847 wetter.com Weather 3,800,000 0.2% 110,000,000 Yes
+848 51seer.com Robotics 3,800,000 0.2% 55,000,000 No
+849 webshots.com Photo & Video Sharing 3,800,000 0.2% 87,000,000 Yes
+850 pole-emploi.fr Welfare & Unemployment 3,800,000 0.2% 730,000,000 No
+851 aeriagames.com Online Games 3,800,000 0.2% 46,000,000 Yes
+852 schuelervz.net Social Networks 3,800,000 0.2% 2,300,000,000 Yes
+853 local.com Business & Personal Listings 3,800,000 0.2% 42,000,000 Yes
+854 discovercard.com Credit Cards 3,800,000 0.2% 230,000,000 Yes
+855 shvoong.com Arts & Entertainment 3,800,000 0.2% 21,000,000 Yes
+856 ft.com Business News 3,800,000 0.2% 61,000,000 Yes
+857 time.com News 3,800,000 0.2% 73,000,000 Yes
+858 warnerbros.com Film & TV Industry 3,800,000 0.2% 80,000,000 Yes
+859 ntv.co.jp TV Networks & Stations 3,800,000 0.2% 38,000,000 No
+860 88db.com Classifieds 3,800,000 0.2% 23,000,000 Yes
+861 allocine.fr Movie Listings & Theater Showtimes 3,800,000 0.2% 130,000,000 Yes
+862 thesun.co.uk Newspapers 3,800,000 0.2% 160,000,000 Yes
+863 walgreens.com Mass Merchants & Department Stores 3,800,000 0.2% 250,000,000 Yes
+864 multiupload.com File Sharing & Hosting 3,800,000 0.2% 45,000,000 Yes
+865 getpersonas.com Skins Themes & Wallpapers 3,800,000 0.2% 99,000,000 No
+866 programas-gratis.net Software 3,800,000 0.2% 50,000,000 Yes
+867 uploaded.to File Sharing & Hosting 3,800,000 0.2% 61,000,000 Yes
+868 nexon.com Computer & Video Games 3,800,000 0.2% 140,000,000 No
+869 sendspace.com File Sharing & Hosting 3,800,000 0.2% 41,000,000 Yes
+870 moonbasa.com Undergarments 3,800,000 0.2% 28,000,000 No
+871 jsoftj.com Computers & Electronics 3,800,000 0.2% 50,000,000 Yes
+872 wat.tv Online Video 3,800,000 0.2% 66,000,000 Yes
+873 shutterfly.com Photo & Video Services 3,800,000 0.2% 590,000,000 Yes
+874 etoro.com Currencies & Foreign Exchange 3,800,000 0.2% 17,000,000 Yes
+875 direct.gov.uk Law & Government 3,800,000 0.2% 370,000,000 Yes
+876 changyou.com E-Books 3,800,000 0.2% 60,000,000 No
+877 mundoanuncio.com Classifieds 3,800,000 0.2% 160,000,000 Yes
+878 limewire.com File Sharing & Hosting 3,800,000 0.2% 41,000,000 No
+879 reverso.net Translation Tools & Resources 3,800,000 0.2% 160,000,000 Yes
+880 marktplaats.nl Classifieds 3,800,000 0.2% 1,500,000,000 Yes
+881 aucfan.com Auctions 3,800,000 0.2% 66,000,000 Yes
+882 meteofrance.com Weather 3,800,000 0.2% 130,000,000 Yes
+883 winzip.com Software Utilities 3,800,000 0.2% 26,000,000 Yes
+884 groupon.jp Coupons & Discount Offers 3,800,000 0.2% 34,000,000 Yes
+885 songs.pk South Asian Music 3,800,000 0.2% 99,000,000 Yes
+886 barbie.com Doll Dress-Up & Girl Games 3,800,000 0.2% 280,000,000 Yes
+887 fnac.com CD & Audio Shopping 3,800,000 0.2% 170,000,000 Yes
+888 apserver.net Web Hosting & Domain Registration 3,800,000 0.2% 55,000,000 Yes
+889 popularscreensavers.com Skins Themes & Wallpapers 3,800,000 0.2% 45,000,000 Yes
+890 softbank.jp Mobile & Wireless 3,800,000 0.2% 82,000,000 Yes
+891 thesaurus.com Dictionaries & Encyclopedias 3,800,000 0.2% 80,000,000 Yes
+892 enet.com.cn Photo & Video Software 3,800,000 0.2% 68,000,000 Yes
+893 kooora.com Sports News 3,800,000 0.2% 410,000,000 Yes
+894 news.de News 3,800,000 0.2% 28,000,000 Yes
+895 qq163.com Music Streams & Downloads 3,800,000 0.2% 120,000,000 Yes
+896 battle.net Online Games 3,800,000 0.2% 190,000,000 Yes
+897 kbstar.com Credit Cards 3,800,000 0.2% 51,000,000 Yes
+898 qzone.cc Social Network Apps & Add-Ons 3,800,000 0.2% 96,000,000 Yes
+899 uniqlo.com Casual Apparel 3,800,000 0.2% 190,000,000 No
+900 goal.com Soccer 3,800,000 0.2% 120,000,000 Yes
+901 espncricinfo.com Cricket 3,800,000 0.2% 150,000,000 Yes
+902 sportsseoul.com Sports 3,800,000 0.2% 46,000,000 Yes
+903 uploadcity.com File Sharing & Hosting 3,800,000 0.2% 28,000,000 No
+904 kijiji.ca Shopping 3,800,000 0.2% 1,000,000,000 Yes
+905 uuu9.com Online Games 3,800,000 0.2% 140,000,000 Yes
+906 fotostrana.ru Photo & Image Sharing 3,800,000 0.2% 280,000,000 Yes
+907 w3.org Web Design & Development 3,800,000 0.2% 46,000,000 Yes
+908 46.com Directories & Listings 3,800,000 0.2% 82,000,000 Yes
+909 smarter.co.jp Shopping Portals & Search Engines 3,800,000 0.2% 15,000,000 No
+910 bohelady.com Beauty & Fitness 3,800,000 0.2% 80,000,000 Yes
+911 boston.com Newspapers 3,800,000 0.2% 160,000,000 Yes
+912 ciao.de Product Reviews 3,800,000 0.2% 38,000,000 Yes
+913 virusbuster.jp Antivirus & Malware 3,800,000 0.2% 12,000,000 Yes
+914 myegy.com Online Video 3,800,000 0.2% 280,000,000 Yes
+915 retailmenot.com Coupons & Discount Offers 3,800,000 0.2% 41,000,000 Yes
+916 fandango.com Movie Listings & Theater Showtimes 3,800,000 0.2% 130,000,000 Yes
+917 mizuhobank.co.jp Banking 3,800,000 0.2% 73,000,000 No
+918 topshareware.com Freeware & Shareware 3,800,000 0.2% 21,000,000 Yes
+919 freelotto.com 3,800,000 0.2% 37,000,000 Yes
+920 coneco.net Shopping Portals & Search Engines 3,800,000 0.2% 31,000,000 Yes
+921 lenovo.com Hardware 3,800,000 0.2% 97,000,000 Yes
+922 girlsgogames.com Flash-Based Entertainment 3,800,000 0.2% 330,000,000 Yes
+923 segye.com News 3,800,000 0.2% 9,800,000 Yes
+924 topix.com Local News 3,500,000 0.2% 110,000,000 Yes
+925 issuu.com Software Utilities 3,500,000 0.2% 28,000,000 Yes
+926 mahalo.com Coupons & Discount Offers 3,500,000 0.2% 19,000,000 Yes
+927 caixa.gov.br Banking 3,500,000 0.2% 450,000,000 No
+928 766.com Online Games 3,500,000 0.2% 73,000,000 Yes
+929 yaodian100.com Holidays & Seasonal Events 3,500,000 0.2% 28,000,000 Yes
+930 qqgexing.com Social Network Apps & Add-Ons 3,500,000 0.2% 540,000,000 Yes
+931 main.jp Education 3,500,000 0.2% 26,000,000 Yes
+932 gamehouse.com Online Games 3,500,000 0.2% 80,000,000 Yes
+933 usbank.com Banking 3,500,000 0.2% 410,000,000 No
+934 ponpare.jp Coupons & Discount Offers 3,500,000 0.2% 41,000,000 Yes
+935 rtl.de TV Networks & Stations 3,500,000 0.2% 120,000,000 Yes
+936 marksandspencer.com Mass Merchants & Department Stores 3,500,000 0.2% 280,000,000 Yes
+937 virginmedia.com News 3,500,000 0.2% 230,000,000 Yes
+938 baamboo.com Music & Audio 3,500,000 0.2% 61,000,000 Yes
+939 nick.com Online Games 3,500,000 0.2% 260,000,000 Yes
+940 33hy.com 3,500,000 0.2% 12,000,000 No
+941 seoquake.com Internet Clients & Browsers 3,500,000 0.2% 13,000,000 Yes
+942 sing365.com Song Lyrics & Tabs 3,500,000 0.2% 23,000,000 Yes
+943 dasoertliche.de Business & Personal Listings 3,500,000 0.2% 61,000,000 Yes
+944 gamestop.com Computer & Video Games 3,500,000 0.2% 190,000,000 Yes
+945 bandoo.com Online Goodies 3,500,000 0.2% 16,000,000 No
+946 mozdev.org Web Apps & Online Tools 3,500,000 0.2% 14,000,000 Yes
+947 8684.cn Traffic & Public Transit 3,500,000 0.2% 41,000,000 Yes
+948 unam.mx Newspapers 3,500,000 0.2% 82,000,000 Yes
+949 cool.ne.jp Web Hosting & Domain Registration 3,500,000 0.2% 19,000,000 Yes
+950 bedbathandbeyond.com Bed & Bath 3,500,000 0.2% 170,000,000 Yes
+951 lenovo.com.cn Hardware 3,500,000 0.2% 45,000,000 No
+952 epson.jp Printers 3,500,000 0.2% 50,000,000 Yes
+953 w3schools.com Computer Education 3,500,000 0.2% 55,000,000 Yes
+954 meinvz.net Social Networks 3,500,000 0.2% 1,500,000,000 Yes
+955 asus.com Hardware 3,500,000 0.2% 66,000,000 Yes
+956 enfemenino.com Women's Interests 3,500,000 0.2% 56,000,000 Yes
+957 chacha.com Arts & Entertainment 3,500,000 0.2% 37,000,000 Yes
+958 lyricsmode.com Song Lyrics & Tabs 3,500,000 0.2% 23,000,000 Yes
+959 subito.it Classifieds 3,500,000 0.2% 600,000,000 Yes
+960 tiscali.it ISPs 3,500,000 0.2% 250,000,000 Yes
+961 mercadolibre.com Auctions 3,500,000 0.2% 98,000,000 No
+962 citysearch.com City & Local Guides 3,500,000 0.2% 35,000,000 Yes
+963 deviantart.net Photographic & Digital Arts 3,500,000 0.2% 23,000,000 No
+964 divx.com Photo & Video Software 3,500,000 0.2% 26,000,000 Yes
+965 ioage.com Technical Support 3,500,000 0.2% 28,000,000 Yes
+966 autoscout24.de Vehicle Shopping 3,500,000 0.2% 400,000,000 Yes
+967 ddmap.com Search Engines 3,500,000 0.2% 31,000,000 No
+968 r7.com News 3,500,000 0.2% 490,000,000 Yes
+969 trialpay.com Merchant Services & Payment Systems 3,500,000 0.2% 38,000,000 Yes
+970 hdfcbank.com Banking 3,500,000 0.2% 130,000,000 Yes
+971 openoffice.org Business & Productivity Software 3,500,000 0.2% 41,000,000 No
+972 wer-weiss-was.de Internet & Telecom 3,500,000 0.2% 22,000,000 Yes
+973 jimdo.com Web Design & Development 3,500,000 0.2% 88,000,000 Yes
+974 gamersky.com Online Games 3,500,000 0.2% 82,000,000 Yes
+975 searchina.ne.jp News 3,500,000 0.2% 73,000,000 Yes
+976 techcrunch.com Technology News 3,500,000 0.2% 28,000,000 Yes
+977 tchibo.de Gifts 3,500,000 0.2% 120,000,000 No
+978 lezi.com Roleplaying Games 3,500,000 0.2% 13,000,000 No
+979 webfetti.com Social Network Apps & Add-Ons 3,500,000 0.2% 61,000,000 Yes
+980 kayak.com Air Travel 3,500,000 0.2% 110,000,000 Yes
+981 mthai.com Web Portals 3,500,000 0.2% 120,000,000 Yes
+982 tv.com TV Shows & Programs 3,500,000 0.2% 55,000,000 Yes
+983 fidelity.com Retirement & Pension 3,500,000 0.2% 450,000,000 No
+984 bt.com Service Providers 3,500,000 0.2% 140,000,000 Yes
+985 yihaodian.com Shopping Portals & Search Engines 3,500,000 0.2% 34,000,000 No
+986 cooliris.com Internet Clients & Browsers 3,500,000 0.2% 160,000,000 Yes
+987 teamviewer.com Software 3,500,000 0.2% 26,000,000 Yes
+988 bdr130.net Islam 3,500,000 0.2% 25,000,000 Yes
+989 popeater.com Celebrities & Entertainment News 3,500,000 0.2% 55,000,000 Yes
+990 newhua.com Software Utilities 3,500,000 0.2% 26,000,000 Yes
+991 xywy.com Health 3,500,000 0.2% 34,000,000 Yes
+992 newsis.com 3,500,000 0.2% 9,100,000 No
+993 hangame.com Online Games 3,500,000 0.2% 140,000,000 Yes
+994 qvc.com Clothing Accessories 3,400,000 0.2% 540,000,000 No
+995 blogbus.com Blogging Resources & Services 3,400,000 0.2% 34,000,000 Yes
+996 ultimate-guitar.com Online Media 3,400,000 0.2% 140,000,000 Yes
+997 pipl.com People Search 3,400,000 0.2% 26,000,000 Yes
+998 noaa.gov Water & Marine Sciences 3,400,000 0.2% 120,000,000 No
+999 cafe24.com Web Hosting & Domain Registration 3,400,000 0.2% 45,000,000 Yes
+1000 kukinews.com Newspapers 3,400,000 0.2% 11,000,000 Yes
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dashbot_analyst/top_sites.h Fri Apr 29 13:28:40 2011 +0100
@@ -0,0 +1,51 @@
+/*
+ * top-sites.h -- google list of top one thousand sites
+ *
+ * Copyright (c) 2011 Dave Raggett
+ *
+ * Licensed 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.
+ */
+
+#ifndef TOP_SITES_H
+#define TOP_SITES_H
+
+#ifndef __cplusplus
+
+#ifndef WS_BOOL
+#define WS_BOOL
+typedef enum { false, true } bool;
+#define null (void *)0
+#endif
+
+#endif
+
+typedef struct {
+ long int rank;
+ char *domain;
+ char *category;
+ long int visitors;
+ double percent;
+ long int hits;
+ bool ads;
+} SiteDesc;
+
+
+#define NUM_SITES 1000
+
+extern SiteDesc top_sites[NUM_SITES];
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // TOP_SITES