From 91027218e29090b18d42e1868367cc2a9e149900 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 14 Feb 2013 11:48:47 -0500 Subject: [PATCH 01/99] Add some code to bluntly prevent duplicate guards from getting added Apparently something in the directory guard code made it possible for the same node to get added as a guard over and over when there were no actual running guard nodes. --- src/or/entrynodes.c | 29 +++++++++++++++++++++++++++++ src/or/or.h | 3 +++ 2 files changed, 32 insertions(+) diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index 4ca56cbac..3e471ed01 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -369,6 +369,15 @@ add_an_entry_guard(const node_t *chosen, int reset_status, int prepend, if (!node) return NULL; } + if (node->using_as_guard) + return NULL; + if (entry_guard_get_by_id_digest(node->identity) != NULL) { + log_info(LD_CIRC, "I was about to add a duplicate entry guard."); + /* This can happen if we choose a guard, then the node goes away, then + * comes back. */ + ((node_t*) node)->using_as_guard = 1; + return NULL; + } entry = tor_malloc_zero(sizeof(entry_guard_t)); log_info(LD_CIRC, "Chose %s as new entry guard.", node_describe(node)); @@ -384,6 +393,7 @@ add_an_entry_guard(const node_t *chosen, int reset_status, int prepend, * this guard. For details, see the Jan 2010 or-dev thread. */ entry->chosen_on_date = time(NULL) - crypto_rand_int(3600*24*30); entry->chosen_by_version = tor_strdup(VERSION); + ((node_t*)node)->using_as_guard = 1; if (prepend) smartlist_insert(entry_guards, 0, entry); else @@ -723,6 +733,21 @@ entry_nodes_should_be_added(void) should_add_entry_nodes = 1; } +/** Update the using_as_guard fields of all the nodes. We do this after we + * remove entry guards from the list: This is the only function that clears + * the using_as_guard field. */ +static void +update_node_guard_status(void) +{ + smartlist_t *nodes = nodelist_get_list(); + SMARTLIST_FOREACH(nodes, node_t *, node, node->using_as_guard = 0); + SMARTLIST_FOREACH_BEGIN(entry_guards, entry_guard_t *, entry) { + node_t *node = node_get_mutable_by_id(entry->identity); + if (node) + node->using_as_guard = 1; + } SMARTLIST_FOREACH_END(entry); +} + /** Adjust the entry guards list so that it only contains entries from * EntryNodes, adding new entries from EntryNodes to the list as needed. */ static void @@ -807,6 +832,8 @@ entry_guards_set_from_config(const or_options_t *options) SMARTLIST_FOREACH(old_entry_guards_not_on_list, entry_guard_t *, e, entry_guard_free(e)); + update_node_guard_status(); + smartlist_free(entry_nodes); smartlist_free(worse_entry_nodes); smartlist_free(entry_fps); @@ -1231,6 +1258,8 @@ entry_guards_parse_state(or_state_t *state, int set, char **msg) * few lines, so we don't have to re-dirty it */ if (remove_obsolete_entry_guards(now)) entry_guards_dirty = 1; + + update_node_guard_status(); } digestmap_free(added_by, tor_free_); return *msg ? -1 : 0; diff --git a/src/or/or.h b/src/or/or.h index 04640d050..df69674d3 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2233,6 +2233,9 @@ typedef struct node_t { /** Local info: we treat this node as if it rejects everything */ unsigned int rejects_all:1; + /** Local info: this node is in our list of guards */ + unsigned int using_as_guard:1; + /* Local info: derived. */ /** True if the IPv6 OR port is preferred over the IPv4 OR port. */ From 1070a720ad7f45fa82b77be0512056a06e535b72 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 14 Feb 2013 12:06:59 -0500 Subject: [PATCH 02/99] Be more robust when excluding existing nodes as new dirguards In addition to rejecting them post-hoc, avoid picking them in the first place. This makes us less likely to decide that we can't add guards at all. --- src/or/circuitbuild.c | 1 + src/or/entrynodes.c | 2 +- src/or/or.h | 4 ++++ src/or/routerlist.c | 3 +++ 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 163afd3d2..c2f395338 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -3397,6 +3397,7 @@ choose_good_entry_server(uint8_t purpose, cpath_build_state_t *state) }); } /* and exclude current entry guards and their families, if applicable */ + /*XXXX025 use the using_as_guard flag to accomplish this.*/ if (options->UseEntryGuards) { SMARTLIST_FOREACH(get_entry_guards(), const entry_guard_t *, entry, { diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index 3e471ed01..5dd27905d 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -362,7 +362,7 @@ add_an_entry_guard(const node_t *chosen, int reset_status, int prepend, } else { const routerstatus_t *rs; rs = router_pick_directory_server(MICRODESC_DIRINFO|V3_DIRINFO, - PDS_PREFER_TUNNELED_DIR_CONNS_); + PDS_PREFER_TUNNELED_DIR_CONNS_|PDS_FOR_GUARD); if (!rs) return NULL; node = node_get_by_id(rs->identity_digest); diff --git a/src/or/or.h b/src/or/or.h index df69674d3..1cb9ef2f0 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4760,6 +4760,10 @@ typedef struct dir_server_t { #define PDS_NO_EXISTING_SERVERDESC_FETCH (1<<3) #define PDS_NO_EXISTING_MICRODESC_FETCH (1<<4) +/** This node is to be chosen as a directory guard, so don't choose any + * node that's currently a guard. */ +#define PDS_FOR_GUARD (1<<5) + #define PDS_PREFER_TUNNELED_DIR_CONNS_ (1<<16) /** Possible ways to weight routers when choosing one randomly. See diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 90b707bcd..837245db3 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1153,6 +1153,7 @@ router_pick_directory_server_impl(dirinfo_type_t type, int flags) int requireother = ! (flags & PDS_ALLOW_SELF); int fascistfirewall = ! (flags & PDS_IGNORE_FASCISTFIREWALL); int prefer_tunnel = (flags & PDS_PREFER_TUNNELED_DIR_CONNS_); + int for_guard = (flags & PDS_FOR_GUARD); int try_excluding = 1, n_excluded = 0; if (!consensus) @@ -1192,6 +1193,8 @@ router_pick_directory_server_impl(dirinfo_type_t type, int flags) if ((type & MICRODESC_DIRINFO) && !is_trusted && !node->rs->version_supports_microdesc_cache) continue; + if (for_guard && node->using_as_guard) + continue; /* Don't make the same node a guard twice. */ if (try_excluding && routerset_contains_routerstatus(options->ExcludeNodes, status, country)) { From 44095312fa63c2623418346eb0cb487b45cf9c50 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 14 Feb 2013 12:12:48 -0500 Subject: [PATCH 03/99] Changes file for bug8231 (duplicate directory guards) --- changes/bug8231 | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changes/bug8231 diff --git a/changes/bug8231 b/changes/bug8231 new file mode 100644 index 000000000..fd87a1dae --- /dev/null +++ b/changes/bug8231 @@ -0,0 +1,5 @@ + o Major bugfixes: + - When unable to find any working directory nodes to use as a + directory guard, give up rather than adding the same non-working + nodes to the list over and over. Fixes bug 8231; bugfix on + 0.2.4.8-alpha. From 22804c0391f0549356959e1b474c43bfcba1b8cb Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 19 Feb 2013 02:31:53 -0500 Subject: [PATCH 04/99] Check for CPUs more accurartely when ONLN != CONF. There are two ways to use sysconf to ask about the number of CPUs. When we're on a VM, we would sometimes get it wrong by asking for the number of total CPUs (say, 64) when we should have been asking for the number of CPUs online (say, 1 or 2). Fix for bug 8002. --- changes/bug8002 | 5 +++++ src/common/compat.c | 29 +++++++++++++++++++++++++++-- 2 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 changes/bug8002 diff --git a/changes/bug8002 b/changes/bug8002 new file mode 100644 index 000000000..d6e2ff249 --- /dev/null +++ b/changes/bug8002 @@ -0,0 +1,5 @@ + o Minor bugfixes: + - When autodetecting the number of CPUs, use the number of available + CPUs in preferernce to the number of configured CPUs. Inform the + user if this reduces the number of avialable CPUs. Fix for bug 8002. + Bugfix on 0.2.3.1-alpha. diff --git a/src/common/compat.c b/src/common/compat.c index d7ce89479..e6206530e 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -2265,8 +2265,33 @@ compute_num_cpus_impl(void) return (int)info.dwNumberOfProcessors; else return -1; -#elif defined(HAVE_SYSCONF) && defined(_SC_NPROCESSORS_CONF) - long cpus = sysconf(_SC_NPROCESSORS_CONF); +#elif defined(HAVE_SYSCONF) +#ifdef _SC_NPROCESSORS_CONF + long cpus_conf = sysconf(_SC_NPROCESSORS_CONF); +#else + long cpus_conf = -1; +#endif +#ifdef _SC_NPROCESSORS_ONLN + long cpus_onln = sysconf(_SC_NPROCESSORS_ONLN); +#else + long cpus_onln = -1; +#endif + long cpus = -1; + + if (cpus_conf > 0 && cpus_onln < 0) { + cpus = cpus_conf; + } else if (cpus_onln > 0 && cpus_conf < 0) { + cpus = cpus_onln; + } else if (cpus_onln > 0 && cpus_conf > 0) { + if (cpus_onln < cpus_conf) { + log_notice(LD_GENERAL, "I think we have %ld CPUS, but only %ld of them " + "are available. Telling Tor to only use %ld. You can over" + "ride this with the NumCPUs option", + cpus_conf, cpus_onln, cpus_onln); + } + cpus = cpus_onln; + } + if (cpus >= 1 && cpus < INT_MAX) return (int)cpus; else From 5d2b2b9ede6ea0f247b5505d7e30a622c312e9fe Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 19 Feb 2013 16:23:58 -0500 Subject: [PATCH 05/99] Clear up a comment about when an assertion could fire Resolves ticket 6164 --- src/or/dirserv.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index badacd683..49fee88a9 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2216,9 +2216,10 @@ routerstatus_format_entry(char *buf, size_t buf_len, return -1; } - /* This assert can fire for the control port, because + /* This assert could fire for the control port, because * it can request NS documents before all descriptors - * have been fetched. */ + * have been fetched. Therefore, we only do this test when + * format != NS_CONTROL_PORT. */ if (tor_memneq(desc->cache_info.signed_descriptor_digest, rs->descriptor_digest, DIGEST_LEN)) { From 1827be0bd6a400f4b5970f5b37b1d2c8e83b6a3f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 19 Feb 2013 17:32:15 -0500 Subject: [PATCH 06/99] Make a parse_config_line_from_str variant that gives error messages Without this patch, there's no way to know what went wrong when we fail to parse a torrc line entirely (that is, we can't turn it into a K,V pair.) This patch introduces a new function that yields an error message on failure, so we can at least tell the user what to look for in their nonfunctional torrc. (Actually, it's the same function as before with a new name: parse_config_line_from_str is now a wrapper macro that the unit tests use.) Fixes bug 7950; fix on 0.2.0.16-alpha (58de695f9062576f) which first introduced the possibility of a torrc value not parsing correctly. --- changes/bug7950 | 4 ++++ src/common/util.c | 19 ++++++++++++++----- src/common/util.h | 7 +++++-- src/or/confparse.c | 5 ++++- 4 files changed, 27 insertions(+), 8 deletions(-) create mode 100644 changes/bug7950 diff --git a/changes/bug7950 b/changes/bug7950 new file mode 100644 index 000000000..e62cca07a --- /dev/null +++ b/changes/bug7950 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - When rejecting a configuration because we were unable to parse a + quoted string, log an actual error message. Fix for bug 7950; + bugfix on 0.2.0.16-alpha. diff --git a/src/common/util.c b/src/common/util.c index 6a6963559..5f045d51b 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -2537,10 +2537,13 @@ unescape_string(const char *s, char **result, size_t *size_out) * key portion and *value_out to a new string holding the value portion * of the line, and return a pointer to the start of the next line. If we run * out of data, return a pointer to the end of the string. If we encounter an - * error, return NULL. + * error, return NULL and set *err_out (if provided) to an error + * message. */ const char * -parse_config_line_from_str(const char *line, char **key_out, char **value_out) +parse_config_line_from_str_verbose(const char *line, char **key_out, + char **value_out, + const char **err_out) { /* I believe the file format here is supposed to be: FILE = (EMPTYLINE | LINE)* (EMPTYLASTLINE | LASTLINE)? @@ -2614,12 +2617,18 @@ parse_config_line_from_str(const char *line, char **key_out, char **value_out) /* Find the end of the line. */ if (*line == '\"') { // XXX No continuation handling is done here - if (!(line = unescape_string(line, value_out, NULL))) - return NULL; + if (!(line = unescape_string(line, value_out, NULL))) { + if (err_out) + *err_out = "Invalid escape sequence in quoted string"; + return NULL; + } while (*line == ' ' || *line == '\t') ++line; - if (*line && *line != '#' && *line != '\n') + if (*line && *line != '#' && *line != '\n') { + if (err_out) + *err_out = "Excess data after quoted string"; return NULL; + } } else { /* Look for the end of the line. */ while (*line && *line != '\n' && (*line != '#' || continuation)) { diff --git a/src/common/util.h b/src/common/util.h index ac88f1ca1..0123a5366 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -375,8 +375,11 @@ char *read_file_to_str(const char *filename, int flags, struct stat *stat_out) char *read_file_to_str_until_eof(int fd, size_t max_bytes_to_read, size_t *sz_out) ATTR_MALLOC; -const char *parse_config_line_from_str(const char *line, - char **key_out, char **value_out); +const char *parse_config_line_from_str_verbose(const char *line, + char **key_out, char **value_out, + const char **err_out); +#define parse_config_line_from_str(line,key_out,value_out) \ + parse_config_line_from_str_verbose((line),(key_out),(value_out),NULL) char *expand_filename(const char *filename); struct smartlist_t *tor_listdir(const char *dirname); int path_is_relative(const char *filename); diff --git a/src/or/confparse.c b/src/or/confparse.c index 717d4ac2a..98fde98e7 100644 --- a/src/or/confparse.c +++ b/src/or/confparse.c @@ -91,12 +91,15 @@ config_get_lines(const char *string, config_line_t **result, int extended) { config_line_t *list = NULL, **next; char *k, *v; + const char *parse_err; next = &list; do { k = v = NULL; - string = parse_config_line_from_str(string, &k, &v); + string = parse_config_line_from_str_verbose(string, &k, &v, &parse_err); if (!string) { + log_warn(LD_CONFIG, "Error while parsing configuration: %s", + parse_err?parse_err:""); config_free_lines(list); tor_free(k); tor_free(v); From 62fb209d837f3f5510075ef8bdb6e231ebdfa9bc Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 19 Feb 2013 18:29:17 -0500 Subject: [PATCH 07/99] Stop frobbing timestamp_dirty as our sole means to mark circuits unusable In a number of places, we decrement timestamp_dirty by MaxCircuitDirtiness in order to mark a stream as "unusable for any new connections. This pattern sucks for a few reasons: * It is nonobvious. * It is error-prone: decrementing 0 can be a bad choice indeed. * It really wants to have a function. It can also introduce bugs if the system time jumps backwards, or if MaxCircuitDirtiness is increased. So in this patch, I add an unusable_for_new_conns flag to origin_circuit_t, make it get checked everywhere it should (I looked for things that tested timestamp_dirty), and add a new function to frob it. For now, the new function does still frob timestamp_dirty (after checking for underflow and whatnot), in case I missed any cases that should be checking unusable_for_new_conns. Fixes bug 6174. We first used this pattern in 516ef41ac1fd26f338c, which I think was in 0.0.2pre26 (but it could have been 0.0.2pre27). --- changes/bug6174 | 6 ++++++ src/or/circuitlist.c | 9 ++++----- src/or/circuituse.c | 36 +++++++++++++++++++++++++++++++++--- src/or/circuituse.h | 1 + src/or/connection_edge.c | 18 ++++++------------ src/or/or.h | 4 ++++ src/or/relay.c | 5 ++--- 7 files changed, 56 insertions(+), 23 deletions(-) create mode 100644 changes/bug6174 diff --git a/changes/bug6174 b/changes/bug6174 new file mode 100644 index 000000000..79d2930ec --- /dev/null +++ b/changes/bug6174 @@ -0,0 +1,6 @@ + o Major bugfixes: + - When we mark a circuit as unusable for new circuits, have it + continue to be unusable for new circuits even if MaxCircuitDirtiness + is increased too much at the wrong time, or the system clock jumped + backwards. Fix for bug 6174; bugfix on 0.0.2pre26. + diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index ef3268073..ae0955d12 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -1204,6 +1204,7 @@ circuit_find_to_cannibalize(uint8_t purpose, extend_info_t *info, if ((!need_uptime || circ->build_state->need_uptime) && (!need_capacity || circ->build_state->need_capacity) && (internal == circ->build_state->is_internal) && + !circ->unusable_for_new_conns && circ->remaining_relay_early_cells && circ->build_state->desired_path_len == DEFAULT_ROUTE_LEN && !circ->build_state->onehop_tunnel && @@ -1304,15 +1305,13 @@ void circuit_expire_all_dirty_circs(void) { circuit_t *circ; - const or_options_t *options = get_options(); for (circ=global_circuitlist; circ; circ = circ->next) { if (CIRCUIT_IS_ORIGIN(circ) && !circ->marked_for_close && - circ->timestamp_dirty) - /* XXXX024 This is a screwed-up way to say "This is too dirty - * for new circuits. */ - circ->timestamp_dirty -= options->MaxCircuitDirtiness; + circ->timestamp_dirty) { + mark_circuit_unusable_for_new_conns(TO_ORIGIN_CIRCUIT(circ)); + } } } diff --git a/src/or/circuituse.c b/src/or/circuituse.c index c0612039b..7ee58fc5f 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -85,10 +85,14 @@ circuit_is_acceptable(const origin_circuit_t *origin_circ, } if (purpose == CIRCUIT_PURPOSE_C_GENERAL || - purpose == CIRCUIT_PURPOSE_C_REND_JOINED) + purpose == CIRCUIT_PURPOSE_C_REND_JOINED) { if (circ->timestamp_dirty && circ->timestamp_dirty+get_options()->MaxCircuitDirtiness <= now) return 0; + } + + if (origin_circ->unusable_for_new_conns) + return 0; /* decide if this circ is suitable for this conn */ @@ -798,9 +802,12 @@ circuit_stream_is_being_handled(entry_connection_t *conn, circ->purpose == CIRCUIT_PURPOSE_C_GENERAL && (!circ->timestamp_dirty || circ->timestamp_dirty + get_options()->MaxCircuitDirtiness > now)) { - cpath_build_state_t *build_state = TO_ORIGIN_CIRCUIT(circ)->build_state; + origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ); + cpath_build_state_t *build_state = origin_circ->build_state; if (build_state->is_internal || build_state->onehop_tunnel) continue; + if (!origin_circ->unusable_for_new_conns) + continue; exitnode = build_state_get_exit_node(build_state); if (exitnode && (!need_uptime || build_state->need_uptime)) { @@ -842,6 +849,7 @@ circuit_predict_and_launch_new(void) /* First, count how many of each type of circuit we have already. */ for (circ=global_circuitlist;circ;circ = circ->next) { cpath_build_state_t *build_state; + origin_circuit_t *origin_circ; if (!CIRCUIT_IS_ORIGIN(circ)) continue; if (circ->marked_for_close) @@ -850,7 +858,10 @@ circuit_predict_and_launch_new(void) continue; /* only count clean circs */ if (circ->purpose != CIRCUIT_PURPOSE_C_GENERAL) continue; /* only pay attention to general-purpose circs */ - build_state = TO_ORIGIN_CIRCUIT(circ)->build_state; + origin_circ = TO_ORIGIN_CIRCUIT(circ); + if (origin_circ->unusable_for_new_conns) + continue; + build_state = origin_circ->build_state; if (build_state->onehop_tunnel) continue; num++; @@ -2272,3 +2283,22 @@ circuit_change_purpose(circuit_t *circ, uint8_t new_purpose) } } +/** Mark circ so that no more connections can be attached to it. */ +void +mark_circuit_unusable_for_new_conns(origin_circuit_t *circ) +{ + const or_options_t *options = get_options(); + tor_assert(circ); + + /* XXXX025 This is a kludge; we're only keeping it around in case there's + * something that doesn't check unusable_for_new_conns, and to avoid + * deeper refactoring of our expiration logic. */ + if (! circ->base_.timestamp_dirty) + circ->base_.timestamp_dirty = approx_time(); + if (options->MaxCircuitDirtiness >= circ->base_.timestamp_dirty) + circ->base_.timestamp_dirty = 1; /* prevent underflow */ + else + circ->base_.timestamp_dirty -= options->MaxCircuitDirtiness; + + circ->unusable_for_new_conns = 1; +} diff --git a/src/or/circuituse.h b/src/or/circuituse.h index d4d68aad9..11e5a6416 100644 --- a/src/or/circuituse.h +++ b/src/or/circuituse.h @@ -55,6 +55,7 @@ void circuit_change_purpose(circuit_t *circ, uint8_t new_purpose); int hostname_in_track_host_exits(const or_options_t *options, const char *address); +void mark_circuit_unusable_for_new_conns(origin_circuit_t *circ); #endif diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index fcbcb9591..76c5f6a9f 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -674,12 +674,10 @@ connection_ap_expire_beginning(void) /* un-mark it as ending, since we're going to reuse it */ conn->edge_has_sent_end = 0; conn->end_reason = 0; - /* kludge to make us not try this circuit again, yet to allow - * current streams on it to survive if they can: make it - * unattractive to use for new streams */ - /* XXXX024 this is a kludgy way to do this. */ - tor_assert(circ->timestamp_dirty); - circ->timestamp_dirty -= options->MaxCircuitDirtiness; + /* make us not try this circuit again, but allow + * current streams on it to survive if they can */ + mark_circuit_unusable_for_new_conns(TO_ORIGIN_CIRCUIT(circ)); + /* give our stream another 'cutoff' seconds to try */ conn->base_.timestamp_lastread += cutoff; if (entry_conn->num_socks_retries < 250) /* avoid overflow */ @@ -1806,9 +1804,7 @@ connection_ap_handshake_send_begin(entry_connection_t *ap_conn) connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL); /* Mark this circuit "unusable for new streams". */ - /* XXXX024 this is a kludgy way to do this. */ - tor_assert(circ->base_.timestamp_dirty); - circ->base_.timestamp_dirty -= get_options()->MaxCircuitDirtiness; + mark_circuit_unusable_for_new_conns(circ); return -1; } @@ -1899,9 +1895,7 @@ connection_ap_handshake_send_resolve(entry_connection_t *ap_conn) connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL); /* Mark this circuit "unusable for new streams". */ - /* XXXX024 this is a kludgy way to do this. */ - tor_assert(circ->base_.timestamp_dirty); - circ->base_.timestamp_dirty -= get_options()->MaxCircuitDirtiness; + mark_circuit_unusable_for_new_conns(circ); return -1; } diff --git a/src/or/or.h b/src/or/or.h index 45eb4673c..e5c60452f 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2944,6 +2944,10 @@ typedef struct origin_circuit_t { */ ENUM_BF(path_state_t) path_state : 3; + /* If this flag is set, we should not consider attaching any more + * connections to this circuit. */ + unsigned int unusable_for_new_conns : 1; + /** * Tristate variable to guard against pathbias miscounting * due to circuit purpose transitions changing the decision diff --git a/src/or/relay.c b/src/or/relay.c index 9ff9e1e1f..fb15141ef 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -17,6 +17,7 @@ #include "channel.h" #include "circuitbuild.h" #include "circuitlist.h" +#include "circuituse.h" #include "config.h" #include "connection.h" #include "connection_edge.h" @@ -851,9 +852,7 @@ connection_ap_process_end_not_open( /* We haven't retried too many times; reattach the connection. */ circuit_log_path(LOG_INFO,LD_APP,circ); /* Mark this circuit "unusable for new streams". */ - /* XXXX024 this is a kludgy way to do this. */ - tor_assert(circ->base_.timestamp_dirty); - circ->base_.timestamp_dirty -= get_options()->MaxCircuitDirtiness; + mark_circuit_unusable_for_new_conns(circ); if (conn->chosen_exit_optional) { /* stop wanting a specific exit */ From 7bb51fdd89feb5ea3eb7e0a0b76c0dda0e50a82e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 19 Feb 2013 18:37:03 -0500 Subject: [PATCH 08/99] Rename circuit_expire_all_dirty_circs The new name is circuit_mark_all_dirty_circs_as_unusable. This resolves an XXX024 --- src/or/circuitbuild.c | 2 +- src/or/circuitlist.c | 3 +-- src/or/circuitlist.h | 2 +- src/or/config.c | 2 +- src/or/main.c | 4 ++-- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 8a3a36acc..5097f19e9 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -901,7 +901,7 @@ circuit_note_clock_jumped(int seconds_elapsed) control_event_client_status(severity, "CIRCUIT_NOT_ESTABLISHED REASON=%s", "CLOCK_JUMPED"); circuit_mark_all_unused_circs(); - circuit_expire_all_dirty_circs(); + circuit_mark_all_dirty_circs_as_unusable(); } /** Take the 'extend' cell, pull out addr/port plus the onion diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index ae0955d12..d1720b983 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -1300,9 +1300,8 @@ circuit_mark_all_unused_circs(void) * This is useful for letting the user change pseudonyms, so new * streams will not be linkable to old streams. */ -/* XXX024 this is a bad name for what this function does */ void -circuit_expire_all_dirty_circs(void) +circuit_mark_all_dirty_circs_as_unusable(void) { circuit_t *circ; diff --git a/src/or/circuitlist.h b/src/or/circuitlist.h index e81c0785f..d67f80b06 100644 --- a/src/or/circuitlist.h +++ b/src/or/circuitlist.h @@ -46,7 +46,7 @@ or_circuit_t *circuit_get_intro_point(const char *digest); origin_circuit_t *circuit_find_to_cannibalize(uint8_t purpose, extend_info_t *info, int flags); void circuit_mark_all_unused_circs(void); -void circuit_expire_all_dirty_circs(void); +void circuit_mark_all_dirty_circs_as_unusable(void); void circuit_mark_for_close_(circuit_t *circ, int reason, int line, const char *file); int circuit_get_cpath_len(origin_circuit_t *circ); diff --git a/src/or/config.c b/src/or/config.c index f88842624..c98c81a00 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1500,7 +1500,7 @@ options_act(const or_options_t *old_options) "preferred or excluded node lists. " "Abandoning previous circuits."); circuit_mark_all_unused_circs(); - circuit_expire_all_dirty_circs(); + circuit_mark_all_dirty_circs_as_unusable(); revise_trackexithosts = 1; } diff --git a/src/or/main.c b/src/or/main.c index b5d1e2da3..5add6a055 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1129,7 +1129,7 @@ signewnym_impl(time_t now) return; } - circuit_expire_all_dirty_circs(); + circuit_mark_all_dirty_circs_as_unusable(); addressmap_clear_transient(); rend_client_purge_state(); time_of_last_signewnym = now; @@ -1848,7 +1848,7 @@ do_hup(void) /* Rotate away from the old dirty circuits. This has to be done * after we've read the new options, but before we start using * circuits for directory fetches. */ - circuit_expire_all_dirty_circs(); + circuit_mark_all_dirty_circs_as_unusable(); /* retry appropriate downloads */ router_reset_status_download_failures(); From 365e302f6153a99fc79b7bad8fafa1d61e839e55 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 23 Feb 2013 23:03:24 -0500 Subject: [PATCH 09/99] Remove a bunch of unused macro definitions --- src/common/crypto.c | 4 ++-- src/common/util.h | 1 - src/or/dirserv.h | 1 - src/or/hibernate.c | 4 ---- src/or/main.c | 4 ---- src/or/or.h | 9 --------- src/or/routerlist.c | 1 - src/or/transports.c | 4 ---- src/test/test.c | 5 ----- src/test/test_dir.c | 2 -- 10 files changed, 2 insertions(+), 33 deletions(-) diff --git a/src/common/crypto.c b/src/common/crypto.c index 22d57c7c8..84688aee4 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -113,8 +113,8 @@ crypto_get_rsa_padding_overhead(int padding) { switch (padding) { - case RSA_PKCS1_OAEP_PADDING: return 42; - case RSA_PKCS1_PADDING: return 11; + case RSA_PKCS1_OAEP_PADDING: return PKCS1_OAEP_PADDING_OVERHEAD; + case RSA_PKCS1_PADDING: return PKCS1_PADDING_OVERHEAD; default: tor_assert(0); return -1; } } diff --git a/src/common/util.h b/src/common/util.h index ac88f1ca1..c6e1c1aad 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -112,7 +112,6 @@ extern int dmalloc_free(const char *file, const int line, void *pnt, #define tor_malloc(size) tor_malloc_(size DMALLOC_ARGS) #define tor_malloc_zero(size) tor_malloc_zero_(size DMALLOC_ARGS) #define tor_calloc(nmemb,size) tor_calloc_(nmemb, size DMALLOC_ARGS) -#define tor_malloc_roundup(szp) _tor_malloc_roundup(szp DMALLOC_ARGS) #define tor_realloc(ptr, size) tor_realloc_(ptr, size DMALLOC_ARGS) #define tor_strdup(s) tor_strdup_(s DMALLOC_ARGS) #define tor_strndup(s, n) tor_strndup_(s, n DMALLOC_ARGS) diff --git a/src/or/dirserv.h b/src/or/dirserv.h index 0caf55f83..0f8cb4150 100644 --- a/src/or/dirserv.h +++ b/src/or/dirserv.h @@ -76,7 +76,6 @@ int directory_fetches_from_authorities(const or_options_t *options); int directory_fetches_dir_info_early(const or_options_t *options); int directory_fetches_dir_info_later(const or_options_t *options); int directory_caches_v2_dir_info(const or_options_t *options); -#define directory_caches_v1_dir_info(o) directory_caches_v2_dir_info(o) int directory_caches_unknown_auth_certs(const or_options_t *options); int directory_caches_dir_info(const or_options_t *options); int directory_permits_begindir_requests(const or_options_t *options); diff --git a/src/or/hibernate.c b/src/or/hibernate.c index 36af4d8f8..a41257133 100644 --- a/src/or/hibernate.c +++ b/src/or/hibernate.c @@ -506,10 +506,6 @@ accounting_run_housekeeping(time_t now) } } -/** When we have no idea how fast we are, how long do we assume it will take - * us to exhaust our bandwidth? */ -#define GUESS_TIME_TO_USE_BANDWIDTH (24*60*60) - /** Based on our interval and our estimated bandwidth, choose a * deterministic (but random-ish) time to wake up. */ static void diff --git a/src/or/main.c b/src/or/main.c index b5d1e2da3..75a097153 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -158,10 +158,6 @@ int can_complete_circuit=0; /** How long do we let a directory connection stall before expiring it? */ #define DIR_CONN_MAX_STALL (5*60) -/** How long do we let OR connections handshake before we decide that - * they are obsolete? */ -#define TLS_HANDSHAKE_TIMEOUT (60) - /** Decides our behavior when no logs are configured/before any * logs have been configured. For 0, we log notice to stdout as normal. * For 1, we log warnings only. For 2, we log nothing. diff --git a/src/or/or.h b/src/or/or.h index 45eb4673c..2968457d8 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4452,15 +4452,6 @@ typedef struct vote_timing_t { /********************************* geoip.c **************************/ -/** Round all GeoIP results to the next multiple of this value, to avoid - * leaking information. */ -#define DIR_RECORD_USAGE_GRANULARITY 8 -/** Time interval: Flush geoip data to disk this often. */ -#define DIR_ENTRY_RECORD_USAGE_RETAIN_IPS (24*60*60) -/** How long do we have to have observed per-country request history before - * we are willing to talk about it? */ -#define DIR_RECORD_USAGE_MIN_OBSERVATION_TIME (12*60*60) - /** Indicates an action that we might be noting geoip statistics on. * Note that if we're noticing CONNECT, we're a bridge, and if we're noticing * the others, we're not. diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 2f08167f1..265c3da85 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -339,7 +339,6 @@ trusted_dirs_remove_old_certs(void) time_t now = time(NULL); #define DEAD_CERT_LIFETIME (2*24*60*60) #define OLD_CERT_LIFETIME (7*24*60*60) -#define CERT_EXPIRY_SKEW (60*60) if (!trusted_dir_certs) return; diff --git a/src/or/transports.c b/src/or/transports.c index 647b29316..44401eb3a 100644 --- a/src/or/transports.c +++ b/src/or/transports.c @@ -124,10 +124,6 @@ static INLINE void free_execve_args(char **arg); #define PROTO_CMETHODS_DONE "CMETHODS DONE" #define PROTO_SMETHODS_DONE "SMETHODS DONE" -/** Number of environment variables for managed proxy clients/servers. */ -#define ENVIRON_SIZE_CLIENT 3 -#define ENVIRON_SIZE_SERVER 7 /* XXX known to be too high, but that's ok */ - /** The first and only supported - at the moment - configuration protocol version. */ #define PROTO_VERSION_ONE 1 diff --git a/src/test/test.c b/src/test/test.c index 6c64d3599..d3d3bd50b 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1979,11 +1979,6 @@ const struct testcase_setup_t legacy_setup = { #define ENT(name) \ { #name, legacy_test_helper, 0, &legacy_setup, test_ ## name } -#define SUBENT(group, name) \ - { #group "_" #name, legacy_test_helper, 0, &legacy_setup, \ - test_ ## group ## _ ## name } -#define DISABLED(name) \ - { #name, legacy_test_helper, TT_SKIP, &legacy_setup, test_ ## name } #define FORK(name) \ { #name, legacy_test_helper, TT_FORK, &legacy_setup, test_ ## name } diff --git a/src/test/test_dir.c b/src/test/test_dir.c index fbd49b710..f734b0fc6 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -407,10 +407,8 @@ test_dir_split_fps(void *testdata) "0123456789ABCdef0123456789ABCdef0123456789ABCdef0123456789ABCdef" #define B64_1 "/g2v+JEnOJvGdVhpEjEjRVEZPu4" #define B64_2 "3q2+75mZmZERERmZmRERERHwC6Q" -#define B64_3 "sz/wDbM/8A2zP/ANsz/wDbM/8A0" #define B64_256_1 "8/Pz8/u7vz8/Pz+7vz8/Pz+7u/Pz8/P7u/Pz8/P7u78" #define B64_256_2 "zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMw" -#define B64_256_3 "ASNFZ4mrze8BI0VniavN7wEjRWeJq83vASNFZ4mrze8" /* no flags set */ dir_split_resource_into_fingerprints("A+C+B", sl, NULL, 0); From 5bfa373eeeb2d76879fe8b0ea130724176f54e81 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 23 Feb 2013 23:31:31 -0500 Subject: [PATCH 10/99] Remove some totally unused functions --- src/common/address.c | 113 ----------------------------------------- src/common/address.h | 4 -- src/common/container.h | 5 -- src/common/util.c | 36 ------------- src/common/util.h | 3 -- src/or/networkstatus.c | 12 ----- src/or/networkstatus.h | 1 - src/or/rendcommon.c | 7 --- src/or/rendcommon.h | 1 - src/or/router.c | 17 ------- src/or/router.h | 2 - src/or/routerlist.c | 49 ------------------ src/or/routerlist.h | 2 - 13 files changed, 252 deletions(-) diff --git a/src/common/address.c b/src/common/address.c index 6fc9fb3c4..69e7f6810 100644 --- a/src/common/address.c +++ b/src/common/address.c @@ -1565,32 +1565,6 @@ addr_mask_get_bits(uint32_t mask) return -1; } -/** Compare two addresses a1 and a2 for equality under a - * netmask of mbits bits. Return -1, 0, or 1. - * - * XXXX_IP6 Temporary function to allow masks as bitcounts everywhere. This - * will be replaced with an IPv6-aware version as soon as 32-bit addresses are - * no longer passed around. - */ -int -addr_mask_cmp_bits(uint32_t a1, uint32_t a2, maskbits_t bits) -{ - if (bits > 32) - bits = 32; - else if (bits == 0) - return 0; - - a1 >>= (32-bits); - a2 >>= (32-bits); - - if (a1 < a2) - return -1; - else if (a1 > a2) - return 1; - else - return 0; -} - /** Parse a string s in the format of (*|port(-maxport)?)?, setting the * various *out pointers as appropriate. Return 0 on success, -1 on failure. */ @@ -1643,93 +1617,6 @@ parse_port_range(const char *port, uint16_t *port_min_out, return 0; } -/** Parse a string s in the format of - * (IP(/mask|/mask-bits)?|*)(:(*|port(-maxport))?)?, setting the various - * *out pointers as appropriate. Return 0 on success, -1 on failure. - */ -int -parse_addr_and_port_range(const char *s, uint32_t *addr_out, - maskbits_t *maskbits_out, uint16_t *port_min_out, - uint16_t *port_max_out) -{ - char *address; - char *mask, *port, *endptr; - struct in_addr in; - int bits; - - tor_assert(s); - tor_assert(addr_out); - tor_assert(maskbits_out); - tor_assert(port_min_out); - tor_assert(port_max_out); - - address = tor_strdup(s); - /* Break 'address' into separate strings. - */ - mask = strchr(address,'/'); - port = strchr(mask?mask:address,':'); - if (mask) - *mask++ = '\0'; - if (port) - *port++ = '\0'; - /* Now "address" is the IP|'*' part... - * "mask" is the Mask|Maskbits part... - * and "port" is the *|port|min-max part. - */ - - if (strcmp(address,"*")==0) { - *addr_out = 0; - } else if (tor_inet_aton(address, &in) != 0) { - *addr_out = ntohl(in.s_addr); - } else { - log_warn(LD_GENERAL, "Malformed IP %s in address pattern; rejecting.", - escaped(address)); - goto err; - } - - if (!mask) { - if (strcmp(address,"*")==0) - *maskbits_out = 0; - else - *maskbits_out = 32; - } else { - endptr = NULL; - bits = (int) strtol(mask, &endptr, 10); - if (!*endptr) { - /* strtol handled the whole mask. */ - if (bits < 0 || bits > 32) { - log_warn(LD_GENERAL, - "Bad number of mask bits on address range; rejecting."); - goto err; - } - *maskbits_out = bits; - } else if (tor_inet_aton(mask, &in) != 0) { - bits = addr_mask_get_bits(ntohl(in.s_addr)); - if (bits < 0) { - log_warn(LD_GENERAL, - "Mask %s on address range isn't a prefix; dropping", - escaped(mask)); - goto err; - } - *maskbits_out = bits; - } else { - log_warn(LD_GENERAL, - "Malformed mask %s on address range; rejecting.", - escaped(mask)); - goto err; - } - } - - if (parse_port_range(port, port_min_out, port_max_out)<0) - goto err; - - tor_free(address); - return 0; - err: - tor_free(address); - return -1; -} - /** Given an IPv4 in_addr struct *in (in network order, as usual), * write it as a string into the buf_len-byte buffer in * buf. diff --git a/src/common/address.h b/src/common/address.h index 9cbc32ce9..77e585534 100644 --- a/src/common/address.h +++ b/src/common/address.h @@ -219,11 +219,7 @@ int addr_port_lookup(int severity, const char *addrport, char **address, uint32_t *addr, uint16_t *port_out); int parse_port_range(const char *port, uint16_t *port_min_out, uint16_t *port_max_out); -int parse_addr_and_port_range(const char *s, uint32_t *addr_out, - maskbits_t *maskbits_out, uint16_t *port_min_out, - uint16_t *port_max_out); int addr_mask_get_bits(uint32_t mask); -int addr_mask_cmp_bits(uint32_t a1, uint32_t a2, maskbits_t bits); /** Length of a buffer to allocate to hold the results of tor_inet_ntoa.*/ #define INET_NTOA_BUF_LEN 16 int tor_inet_ntoa(const struct in_addr *in, char *buf, size_t buf_len); diff --git a/src/common/container.h b/src/common/container.h index e247fb7ea..1a68b8f67 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -675,11 +675,6 @@ median_int32(int32_t *array, int n_elements) { return find_nth_int32(array, n_elements, (n_elements-1)/2); } -static INLINE long -median_long(long *array, int n_elements) -{ - return find_nth_long(array, n_elements, (n_elements-1)/2); -} #endif diff --git a/src/common/util.c b/src/common/util.c index 6a6963559..ed9a1c938 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -1253,42 +1253,6 @@ wrap_string(smartlist_t *out, const char *string, size_t width, * Time * ===== */ -/** - * Converts struct timeval to a double value. - * Preserves microsecond precision, but just barely. - * Error is approx +/- 0.1 usec when dealing with epoch values. - */ -double -tv_to_double(const struct timeval *tv) -{ - double conv = tv->tv_sec; - conv += tv->tv_usec/1000000.0; - return conv; -} - -/** - * Converts timeval to milliseconds. - */ -int64_t -tv_to_msec(const struct timeval *tv) -{ - int64_t conv = ((int64_t)tv->tv_sec)*1000L; - /* Round ghetto-style */ - conv += ((int64_t)tv->tv_usec+500)/1000L; - return conv; -} - -/** - * Converts timeval to microseconds. - */ -int64_t -tv_to_usec(const struct timeval *tv) -{ - int64_t conv = ((int64_t)tv->tv_sec)*1000000L; - conv += tv->tv_usec; - return conv; -} - /** Return the number of microseconds elapsed between *start and *end. */ long diff --git a/src/common/util.h b/src/common/util.h index c6e1c1aad..d4c55bffc 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -239,9 +239,6 @@ void base16_encode(char *dest, size_t destlen, const char *src, size_t srclen); int base16_decode(char *dest, size_t destlen, const char *src, size_t srclen); /* Time helpers */ -double tv_to_double(const struct timeval *tv); -int64_t tv_to_msec(const struct timeval *tv); -int64_t tv_to_usec(const struct timeval *tv); long tv_udiff(const struct timeval *start, const struct timeval *end); long tv_mdiff(const struct timeval *start, const struct timeval *end); int tor_timegm(const struct tm *tm, time_t *time_out); diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c index c63c76fcc..8846cd063 100644 --- a/src/or/networkstatus.c +++ b/src/or/networkstatus.c @@ -1432,18 +1432,6 @@ consensus_is_waiting_for_certs(void) ? 1 : 0; } -/** Return the network status with a given identity digest. */ -networkstatus_v2_t * -networkstatus_v2_get_by_digest(const char *digest) -{ - SMARTLIST_FOREACH(networkstatus_v2_list, networkstatus_v2_t *, ns, - { - if (tor_memeq(ns->identity_digest, digest, DIGEST_LEN)) - return ns; - }); - return NULL; -} - /** Return the most recent consensus that we have downloaded, or NULL if we * don't have one. */ networkstatus_t * diff --git a/src/or/networkstatus.h b/src/or/networkstatus.h index b64e4b8e1..761f8e7f0 100644 --- a/src/or/networkstatus.h +++ b/src/or/networkstatus.h @@ -75,7 +75,6 @@ void update_certificate_downloads(time_t now); int consensus_is_waiting_for_certs(void); int client_would_use_router(const routerstatus_t *rs, time_t now, const or_options_t *options); -networkstatus_v2_t *networkstatus_v2_get_by_digest(const char *digest); networkstatus_t *networkstatus_get_latest_consensus(void); networkstatus_t *networkstatus_get_latest_consensus_by_flavor( consensus_flavor_t f); diff --git a/src/or/rendcommon.c b/src/or/rendcommon.c index 79c1a724e..2cfc364c3 100644 --- a/src/or/rendcommon.c +++ b/src/or/rendcommon.c @@ -1452,13 +1452,6 @@ rend_process_relay_cell(circuit_t *circ, const crypt_path_t *layer_hint, command); } -/** Return the number of entries in our rendezvous descriptor cache. */ -int -rend_cache_size(void) -{ - return strmap_size(rend_cache); -} - /** Allocate and return a new rend_data_t with the same * contents as query. */ rend_data_t * diff --git a/src/or/rendcommon.h b/src/or/rendcommon.h index 189891b74..f476593d2 100644 --- a/src/or/rendcommon.h +++ b/src/or/rendcommon.h @@ -49,7 +49,6 @@ int rend_cache_store(const char *desc, size_t desc_len, int published, int rend_cache_store_v2_desc_as_client(const char *desc, const rend_data_t *rend_query); int rend_cache_store_v2_desc_as_dir(const char *desc); -int rend_cache_size(void); int rend_encode_v2_descriptors(smartlist_t *descs_out, rend_service_descriptor_t *desc, time_t now, uint8_t period, rend_auth_type_t auth_type, diff --git a/src/or/router.c b/src/or/router.c index 95aa70a9c..0c3b67110 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -2966,23 +2966,6 @@ router_get_verbose_nickname(char *buf, const routerinfo_t *router) strlcpy(buf+1+HEX_DIGEST_LEN+1, router->nickname, MAX_NICKNAME_LEN+1); } -/** Set buf (which must have MAX_VERBOSE_NICKNAME_LEN+1 bytes) to the - * verbose representation of the identity of router. The format is: - * A dollar sign. - * The upper-case hexadecimal encoding of the SHA1 hash of router's identity. - * A "=" if the router is named; a "~" if it is not. - * The router's nickname. - **/ -void -routerstatus_get_verbose_nickname(char *buf, const routerstatus_t *router) -{ - buf[0] = '$'; - base16_encode(buf+1, HEX_DIGEST_LEN+1, router->identity_digest, - DIGEST_LEN); - buf[1+HEX_DIGEST_LEN] = router->is_named ? '=' : '~'; - strlcpy(buf+1+HEX_DIGEST_LEN+1, router->nickname, MAX_NICKNAME_LEN+1); -} - /** Forget that we have issued any router-related warnings, so that we'll * warn again if we see the same errors. */ void diff --git a/src/or/router.h b/src/or/router.h index fd2076af0..96749b53c 100644 --- a/src/or/router.h +++ b/src/or/router.h @@ -132,8 +132,6 @@ const char *routerstatus_describe(const routerstatus_t *ri); const char *extend_info_describe(const extend_info_t *ei); void router_get_verbose_nickname(char *buf, const routerinfo_t *router); -void routerstatus_get_verbose_nickname(char *buf, - const routerstatus_t *router); void router_reset_warnings(void); void router_reset_reachability(void); void router_free_all(void); diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 265c3da85..7f4e88cf0 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -54,8 +54,6 @@ static const routerstatus_t *router_pick_dirserver_generic( smartlist_t *sourcelist, dirinfo_type_t type, int flags); static void mark_all_dirservers_up(smartlist_t *server_list); -static int router_nickname_matches(const routerinfo_t *router, - const char *nickname); static void dir_server_free(dir_server_t *ds); static int signed_desc_digest_is_recognized(signed_descriptor_t *desc); static const char *signed_descriptor_get_body_impl( @@ -1461,30 +1459,6 @@ routerlist_add_node_and_family(smartlist_t *sl, const routerinfo_t *router) nodelist_add_node_and_family(sl, node); } -/** Return 1 iff any member of the (possibly NULL) comma-separated list - * list is an acceptable nickname or hexdigest for router. Else - * return 0. - */ -int -router_nickname_is_in_list(const routerinfo_t *router, const char *list) -{ - smartlist_t *nickname_list; - int v = 0; - - if (!list) - return 0; /* definitely not */ - tor_assert(router); - - nickname_list = smartlist_new(); - smartlist_split_string(nickname_list, list, ",", - SPLIT_SKIP_SPACE|SPLIT_STRIP_SPACE|SPLIT_IGNORE_BLANK, 0); - SMARTLIST_FOREACH(nickname_list, const char *, cp, - if (router_nickname_matches(router, cp)) {v=1;break;}); - SMARTLIST_FOREACH(nickname_list, char *, cp, tor_free(cp)); - smartlist_free(nickname_list); - return v; -} - /** Add every suitable node from our nodelist to sl, so that * we can pick a node for a circuit. */ @@ -2311,18 +2285,6 @@ router_hex_digest_matches(const routerinfo_t *router, const char *hexdigest) router_is_named(router)); } -/** Return true if router's nickname matches nickname - * (case-insensitive), or if router's identity key digest - * matches a hexadecimal value stored in nickname. Return - * false otherwise. */ -static int -router_nickname_matches(const routerinfo_t *router, const char *nickname) -{ - if (nickname[0]!='$' && !strcasecmp(router->nickname, nickname)) - return 1; - return router_hex_digest_matches(router, nickname); -} - /** Return true iff digest is the digest of the identity key of a * trusted directory matching at least one bit of type. If type * is zero, any authority is okay. */ @@ -4051,17 +4013,6 @@ clear_dir_servers(void) router_dir_info_changed(); } -/** Return 1 if any trusted dir server supports v1 directories, - * else return 0. */ -int -any_trusted_dir_is_v1_authority(void) -{ - if (trusted_dir_servers) - return get_n_authorities(V1_DIRINFO) > 0; - - return 0; -} - /** For every current directory connection whose purpose is purpose, * and where the resource being downloaded begins with prefix, split * rest of the resource into base16 fingerprints (or base64 fingerprints if diff --git a/src/or/routerlist.h b/src/or/routerlist.h index 1849fff31..28b2f5893 100644 --- a/src/or/routerlist.h +++ b/src/or/routerlist.h @@ -42,7 +42,6 @@ int router_get_my_share_of_directory_requests(double *v2_share_out, double *v3_share_out); void router_reset_status_download_failures(void); int routers_have_same_or_addrs(const routerinfo_t *r1, const routerinfo_t *r2); -int router_nickname_is_in_list(const routerinfo_t *router, const char *list); const routerinfo_t *routerlist_find_my_routerinfo(void); uint32_t router_get_advertised_bandwidth(const routerinfo_t *router); uint32_t router_get_advertised_bandwidth_capped(const routerinfo_t *router); @@ -146,7 +145,6 @@ void dir_server_add(dir_server_t *ent); void authority_cert_free(authority_cert_t *cert); void clear_dir_servers(void); -int any_trusted_dir_is_v1_authority(void); void update_consensus_router_descriptor_downloads(time_t now, int is_vote, networkstatus_t *consensus); void update_router_descriptor_downloads(time_t now); From a4e9d672924f027c3e66220a8f70427d42154fe2 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 23 Feb 2013 23:38:43 -0500 Subject: [PATCH 11/99] Remove some functions which were unused except for their tests --- src/common/crypto.c | 17 ---------- src/common/crypto.h | 1 - src/common/util.c | 73 ------------------------------------------ src/common/util.h | 2 -- src/test/test_crypto.c | 16 --------- src/test/test_util.c | 73 ------------------------------------------ 6 files changed, 182 deletions(-) diff --git a/src/common/crypto.c b/src/common/crypto.c index 84688aee4..cfa11cbaa 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -1294,23 +1294,6 @@ crypto_pk_get_fingerprint(crypto_pk_t *pk, char *fp_out, int add_space) return 0; } -/** Return true iff s is in the correct format for a fingerprint. - */ -int -crypto_pk_check_fingerprint_syntax(const char *s) -{ - int i; - for (i = 0; i < FINGERPRINT_LEN; ++i) { - if ((i%5) == 4) { - if (!TOR_ISSPACE(s[i])) return 0; - } else { - if (!TOR_ISXDIGIT(s[i])) return 0; - } - } - if (s[FINGERPRINT_LEN]) return 0; - return 1; -} - /* symmetric crypto */ /** Return a pointer to the key set for the cipher in env. diff --git a/src/common/crypto.h b/src/common/crypto.h index 12fcfae27..b78323078 100644 --- a/src/common/crypto.h +++ b/src/common/crypto.h @@ -183,7 +183,6 @@ crypto_pk_t *crypto_pk_asn1_decode(const char *str, size_t len); int crypto_pk_get_digest(crypto_pk_t *pk, char *digest_out); int crypto_pk_get_all_digests(crypto_pk_t *pk, digests_t *digests_out); int crypto_pk_get_fingerprint(crypto_pk_t *pk, char *fp_out,int add_space); -int crypto_pk_check_fingerprint_syntax(const char *s); /* symmetric crypto */ const char *crypto_cipher_get_key(crypto_cipher_t *env); diff --git a/src/common/util.c b/src/common/util.c index ed9a1c938..17fb9496c 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -1176,79 +1176,6 @@ escaped(const char *s) return escaped_val_; } -/** Rudimentary string wrapping code: given a un-wrapped string (no - * newlines!), break the string into newline-terminated lines of no more than - * width characters long (not counting newline) and insert them into - * out in order. Precede the first line with prefix0, and subsequent - * lines with prefixRest. - */ -/* This uses a stupid greedy wrapping algorithm right now: - * - For each line: - * - Try to fit as much stuff as possible, but break on a space. - * - If the first "word" of the line will extend beyond the allowable - * width, break the word at the end of the width. - */ -void -wrap_string(smartlist_t *out, const char *string, size_t width, - const char *prefix0, const char *prefixRest) -{ - size_t p0Len, pRestLen, pCurLen; - const char *eos, *prefixCur; - tor_assert(out); - tor_assert(string); - tor_assert(width); - if (!prefix0) - prefix0 = ""; - if (!prefixRest) - prefixRest = ""; - - p0Len = strlen(prefix0); - pRestLen = strlen(prefixRest); - tor_assert(width > p0Len && width > pRestLen); - eos = strchr(string, '\0'); - tor_assert(eos); - pCurLen = p0Len; - prefixCur = prefix0; - - while ((eos-string)+pCurLen > width) { - const char *eol = string + width - pCurLen; - while (eol > string && *eol != ' ') - --eol; - /* eol is now the last space that can fit, or the start of the string. */ - if (eol > string) { - size_t line_len = (eol-string) + pCurLen + 2; - char *line = tor_malloc(line_len); - memcpy(line, prefixCur, pCurLen); - memcpy(line+pCurLen, string, eol-string); - line[line_len-2] = '\n'; - line[line_len-1] = '\0'; - smartlist_add(out, line); - string = eol + 1; - } else { - size_t line_len = width + 2; - char *line = tor_malloc(line_len); - memcpy(line, prefixCur, pCurLen); - memcpy(line+pCurLen, string, width - pCurLen); - line[line_len-2] = '\n'; - line[line_len-1] = '\0'; - smartlist_add(out, line); - string += width-pCurLen; - } - prefixCur = prefixRest; - pCurLen = pRestLen; - } - - if (string < eos) { - size_t line_len = (eos-string) + pCurLen + 2; - char *line = tor_malloc(line_len); - memcpy(line, prefixCur, pCurLen); - memcpy(line+pCurLen, string, eos-string); - line[line_len-2] = '\n'; - line[line_len-1] = '\0'; - smartlist_add(out, line); - } -} - /* ===== * Time * ===== */ diff --git a/src/common/util.h b/src/common/util.h index d4c55bffc..8206a6d8a 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -215,8 +215,6 @@ int tor_digest256_is_zero(const char *digest); char *esc_for_log(const char *string) ATTR_MALLOC; const char *escaped(const char *string); struct smartlist_t; -void wrap_string(struct smartlist_t *out, const char *string, size_t width, - const char *prefix0, const char *prefixRest); int tor_vsscanf(const char *buf, const char *pattern, va_list ap) #ifdef __GNUC__ __attribute__((format(scanf, 2, 0))) diff --git a/src/test/test_crypto.c b/src/test/test_crypto.c index afb338a69..c531c6083 100644 --- a/src/test/test_crypto.c +++ b/src/test/test_crypto.c @@ -636,22 +636,6 @@ test_crypto_formats(void) tor_free(data2); } - /* Check fingerprint */ - { - test_assert(crypto_pk_check_fingerprint_syntax( - "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 0000")); - test_assert(!crypto_pk_check_fingerprint_syntax( - "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 000")); - test_assert(!crypto_pk_check_fingerprint_syntax( - "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 00000")); - test_assert(!crypto_pk_check_fingerprint_syntax( - "ABCD 1234 ABCD 5678 0000 ABCD1234 ABCD 5678 0000")); - test_assert(!crypto_pk_check_fingerprint_syntax( - "ABCD 1234 ABCD 5678 0000 ABCD1234 ABCD 5678 00000")); - test_assert(!crypto_pk_check_fingerprint_syntax( - "ACD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 00000")); - } - done: tor_free(data1); tor_free(data2); diff --git a/src/test/test_util.c b/src/test/test_util.c index c2cb4448e..7ab54e153 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -1054,79 +1054,6 @@ test_util_strmisc(void) test_assert(!tor_memstr(haystack, 7, "ababcade")); } - /* Test wrap_string */ - { - smartlist_t *sl = smartlist_new(); - wrap_string(sl, - "This is a test of string wrapping functionality: woot. " - "a functionality? w00t w00t...!", - 10, "", ""); - cp = smartlist_join_strings(sl, "", 0, NULL); - test_streq(cp, - "This is a\ntest of\nstring\nwrapping\nfunctional\nity: woot.\n" - "a\nfunctional\nity? w00t\nw00t...!\n"); - tor_free(cp); - SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); - smartlist_clear(sl); - - wrap_string(sl, "This is a test of string wrapping functionality: woot.", - 16, "### ", "# "); - cp = smartlist_join_strings(sl, "", 0, NULL); - test_streq(cp, - "### This is a\n# test of string\n# wrapping\n# functionality:\n" - "# woot.\n"); - tor_free(cp); - SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); - smartlist_clear(sl); - - wrap_string(sl, "A test of string wrapping...", 6, "### ", "# "); - cp = smartlist_join_strings(sl, "", 0, NULL); - test_streq(cp, - "### A\n# test\n# of\n# stri\n# ng\n# wrap\n# ping\n# ...\n"); - tor_free(cp); - SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); - smartlist_clear(sl); - - wrap_string(sl, "Wrapping test", 6, "#### ", "# "); - cp = smartlist_join_strings(sl, "", 0, NULL); - test_streq(cp, "#### W\n# rapp\n# ing\n# test\n"); - tor_free(cp); - SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); - smartlist_clear(sl); - - wrap_string(sl, "Small test", 6, "### ", "#### "); - cp = smartlist_join_strings(sl, "", 0, NULL); - test_streq(cp, "### Sm\n#### a\n#### l\n#### l\n#### t\n#### e" - "\n#### s\n#### t\n"); - tor_free(cp); - SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); - smartlist_clear(sl); - - wrap_string(sl, "First null", 6, NULL, "> "); - cp = smartlist_join_strings(sl, "", 0, NULL); - test_streq(cp, "First\n> null\n"); - tor_free(cp); - SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); - smartlist_clear(sl); - - wrap_string(sl, "Second null", 6, "> ", NULL); - cp = smartlist_join_strings(sl, "", 0, NULL); - test_streq(cp, "> Seco\nnd\nnull\n"); - tor_free(cp); - SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); - smartlist_clear(sl); - - wrap_string(sl, "Both null", 6, NULL, NULL); - cp = smartlist_join_strings(sl, "", 0, NULL); - test_streq(cp, "Both\nnull\n"); - tor_free(cp); - SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); - smartlist_free(sl); - - /* Can't test prefixes that have the same length as the line width, because - the function has an assert */ - } - /* Test hex_str */ { char binary_data[68]; From 4740d2e8bcf72cc92bae72762ccae904015b9b2f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 27 Feb 2013 19:38:32 -0500 Subject: [PATCH 12/99] Remove some lingering tsocks cruft. Now the manpages no longer refer to tsocks or tsocks.conf, and we no longer have or ship a tor-tsocks.conf. The only remaining instances of "tsocks" in our repository are old ChangeLog and ReleaseNotes entries, and the torify script saying that it doesn't support tsocks. Fixes bug 8290. --- changes/bug8290 | 9 +++++++++ contrib/include.am | 3 --- contrib/tor-tsocks.conf | 13 ------------- doc/tor.1.txt | 2 +- doc/torify.1.txt | 18 +++--------------- 5 files changed, 13 insertions(+), 32 deletions(-) create mode 100644 changes/bug8290 delete mode 100644 contrib/tor-tsocks.conf diff --git a/changes/bug8290 b/changes/bug8290 new file mode 100644 index 000000000..d1fce7d8b --- /dev/null +++ b/changes/bug8290 @@ -0,0 +1,9 @@ + o Removed files: + - The tor-tsocks.conf is no longer distributed or installed. We + recommend that tsocks users use torsocks instead. Resolves + ticket 8290. + + o Documentation fixes: + - The torify manpage no longer refers to tsocks; torify hasn't + supported tsocks since 0.2.3.14-alpha. + - The manpages no longer reference tsocks. diff --git a/contrib/include.am b/contrib/include.am index 4a995a37d..6d7fb16f9 100644 --- a/contrib/include.am +++ b/contrib/include.am @@ -9,12 +9,9 @@ EXTRA_DIST+= \ contrib/tor-ctrl.sh \ contrib/tor-exit-notice.html \ contrib/tor-mingw.nsi.in \ - contrib/tor-tsocks.conf \ contrib/tor.ico \ contrib/tor.nsi.in \ contrib/tor.sh \ contrib/torctl -conf_DATA+= contrib/tor-tsocks.conf - bin_SCRIPTS+= contrib/torify diff --git a/contrib/tor-tsocks.conf b/contrib/tor-tsocks.conf deleted file mode 100644 index 3dddaddbc..000000000 --- a/contrib/tor-tsocks.conf +++ /dev/null @@ -1,13 +0,0 @@ -# This is the configuration for libtsocks (transparent socks) for use -# with tor, which is providing a socks server on port 9050 by default. -# -# See tsocks.conf(5) and torify(1) manpages. - -server = 127.0.0.1 -server_port = 9050 - -# We specify local as 127.0.0.0 - 127.191.255.255 because the -# Tor MAPADDRESS virtual IP range is the rest of net 127. -local = 127.0.0.0/255.128.0.0 -local = 127.128.0.0/255.192.0.0 - diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 75bca7937..b598a54a1 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -2134,7 +2134,7 @@ __HiddenServiceDirectory__**/client_keys**:: SEE ALSO -------- -**privoxy**(1), **tsocks**(1), **torify**(1) + +**privoxy**(1), **torsocks**(1), **torify**(1) + **https://www.torproject.org/** diff --git a/doc/torify.1.txt b/doc/torify.1.txt index 22b3fe537..8dca90131 100644 --- a/doc/torify.1.txt +++ b/doc/torify.1.txt @@ -9,7 +9,7 @@ torify(1) NAME ---- -torify - wrapper for torsocks or tsocks and tor +torify - wrapper for torsocks and tor SYNOPSIS -------- @@ -18,36 +18,24 @@ SYNOPSIS DESCRIPTION ----------- **torify** is a simple wrapper that attempts to find the best underlying Tor -wrapper available on a system. It calls torsocks or tsocks with a tor specific +wrapper available on a system. It calls torsocks with a tor specific configuration file. + torsocks is an improved wrapper that explicitly rejects UDP, safely resolves DNS lookups and properly socksifies your TCP connections. + -tsocks itself is a wrapper between the tsocks library and the application that -you would like to run socksified. + - Please note that since both method use LD_PRELOAD, torify cannot be applied to suid binaries. WARNING ------- -You should also be aware that the way tsocks currently works only TCP -connections are socksified. Be aware that this will in most circumstances not -include hostname lookups which would still be routed through your normal system -resolver to your usual resolving nameservers. The **tor-resolve**(1) tool can be -useful as a workaround in some cases. The Tor FAQ at -https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ might have further -information on this subject. + - When used with torsocks, torify should not leak DNS requests or UDP data. + Both will leak ICMP data. SEE ALSO -------- -**tor**(1), **tor-resolve**(1), **torsocks**(1), **tsocks**(1), -**tsocks.conf**(5). +**tor**(1), **tor-resolve**(1), **torsocks**(1) AUTHORS ------- From b5a164bde4f33fdd33c83a8425c6464c0f5ef60d Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Wed, 27 Feb 2013 19:43:50 -0800 Subject: [PATCH 13/99] Prefer measured bandwidths over advertised when computing things for votes on a dirauth --- changes/bug8273 | 3 + src/or/dirserv.c | 206 +++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 201 insertions(+), 8 deletions(-) create mode 100644 changes/bug8273 diff --git a/changes/bug8273 b/changes/bug8273 new file mode 100644 index 000000000..257f57e7a --- /dev/null +++ b/changes/bug8273 @@ -0,0 +1,3 @@ + o Critical bugfixes: + - When dirserv.c computes flags and thresholds, use measured bandwidths + in preference to advertised ones. diff --git a/src/or/dirserv.c b/src/or/dirserv.c index badacd683..1c78d2d3b 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -85,6 +85,14 @@ static const signed_descriptor_t *get_signed_descriptor_by_fp( time_t publish_cutoff); static was_router_added_t dirserv_add_extrainfo(extrainfo_t *ei, const char **msg); +static void dirserv_cache_measured_bw(measured_bw_line_t *parsed_line, + time_t as_of); +static void dirserv_clear_measured_bw_cache(void); +static void dirserv_expire_measured_bw_cache(time_t now); +static int dirserv_get_measured_bw_cache_size(void); +static int dirserv_query_measured_bw_cache(char *node_id, long *bw_out, + time_t *as_of_out); +static uint32_t dirserv_get_bandwidth_for_router(routerinfo_t *ri); /************** Measured Bandwidth parsing code ******/ #define MAX_MEASUREMENT_AGE (3*24*60*60) /* 3 days */ @@ -1824,7 +1832,7 @@ dirserv_thinks_router_is_unreliable(time_t now, } } if (need_capacity) { - uint32_t bw = router_get_advertised_bandwidth(router); + uint32_t bw = dirserv_get_bandwidth_for_router(router); if (bw < fast_bandwidth) return 1; } @@ -1883,7 +1891,7 @@ router_counts_toward_thresholds(const node_t *node, time_t now, { return node->ri && router_is_active(node->ri, node, now) && !digestmap_get(omit_as_sybil, node->ri->cache_info.identity_digest) && - (router_get_advertised_bandwidth(node->ri) >= + (dirserv_get_bandwidth_for_router(node->ri) >= ABSOLUTE_MIN_BW_VALUE_TO_CONSIDER); } @@ -1947,7 +1955,7 @@ dirserv_compute_performance_thresholds(routerlist_t *rl, uptimes[n_active] = (uint32_t)real_uptime(ri, now); mtbfs[n_active] = rep_hist_get_stability(id, now); tks [n_active] = rep_hist_get_weighted_time_known(id, now); - bandwidths[n_active] = bw = router_get_advertised_bandwidth(ri); + bandwidths[n_active] = bw = dirserv_get_bandwidth_for_router(ri); total_bandwidth += bw; if (node->is_exit && !node->is_bad_exit) { total_exit_bandwidth += bw; @@ -2046,6 +2054,165 @@ dirserv_compute_performance_thresholds(routerlist_t *rl, tor_free(wfus); } +/** Measured bandwidth cache entry */ +typedef struct mbw_cache_entry_s { + long mbw; + time_t as_of; +} mbw_cache_entry_t; + +/** Measured bandwidth cache - keys are identity_digests, values are + * mbw_cache_entry_t *. */ +static digestmap_t *mbw_cache = NULL; + +/** Store a measured bandwidth cache entry when reading the measured + * bandwidths file. */ +static void +dirserv_cache_measured_bw(measured_bw_line_t *parsed_line, time_t as_of) +{ + mbw_cache_entry_t *e = NULL; + + tor_assert(parsed_line); + + /* Allocate a cache if we need */ + if (!mbw_cache) mbw_cache = digestmap_new(); + + /* Check if we have an existing entry */ + e = digestmap_get(mbw_cache, parsed_line->node_id); + /* If we do, we can re-use it */ + if (e) { + /* Check that we really are newer, and update */ + if (as_of > e->as_of) { + e->mbw = parsed_line->bw; + e->as_of = as_of; + } + } else { + /* We'll have to insert a new entry */ + e = tor_malloc(sizeof(*e)); + e->mbw = parsed_line->bw; + e->as_of = as_of; + digestmap_set(mbw_cache, parsed_line->node_id, e); + } +} + +/** Clear and free the measured bandwidth cache */ +static void +dirserv_clear_measured_bw_cache(void) +{ + if (mbw_cache) { + /* Free the map and all entries */ + digestmap_free(mbw_cache, tor_free_); + mbw_cache = NULL; + } +} + +/** Scan the measured bandwidth cache and remove expired entries */ +static void +dirserv_expire_measured_bw_cache(time_t now) +{ + digestmap_iter_t *itr = NULL; + const char *k = NULL; + void *e_v = NULL; + mbw_cache_entry_t *e = NULL; + int rmv; + + if (mbw_cache) { + /* Start iterating */ + itr = digestmap_iter_init(mbw_cache); + while (!digestmap_iter_done(itr)) { + rmv = 0; + digestmap_iter_get(itr, &k, &e_v); + e = (mbw_cache_entry_t *)e_v; + if (e) { + /* Check for expiration and remove if so */ + if (now - e->as_of > MAX_MEASUREMENT_AGE) { + tor_free(e); + rmv = 1; + } + } else { + /* Weird; remove it and complain */ + log_warn(LD_BUG, "Saw NULL entry in measured bandwidth cache"); + rmv = 1; + } + + /* Advance, or remove and advance */ + if (rmv) { + itr = digestmap_iter_next_rmv(mbw_cache, itr); + } else { + itr = digestmap_iter_next(mbw_cache, itr); + } + } + + /* Check if we cleared the whole thing and free if so */ + if (digestmap_size(mbw_cache) == 0) { + digestmap_free(mbw_cache, tor_free_); + mbw_cache = 0; + } + } +} + +/** Get the current size of the measured bandwidth cache */ +static int +dirserv_get_measured_bw_cache_size(void) +{ + if (mbw_cache) return digestmap_size(mbw_cache); + else return 0; +} + +/** Query the cache by identity digest, return value indicates whether + * we found it. */ +static int +dirserv_query_measured_bw_cache(char *node_id, long *bw_out, + time_t *as_of_out) +{ + mbw_cache_entry_t *v = NULL; + int rv = 0; + + if (mbw_cache && node_id) { + v = digestmap_get(mbw_cache, node_id); + if (v) { + /* Found something */ + rv = 1; + if (bw_out) *bw_out = v->mbw; + if (as_of_out) *as_of_out = v->as_of; + } + } + + return rv; +} + +/** Get the best estimate of a router's bandwidth for dirauth purposes, + * preferring measured to advertised values if available. */ + +static uint32_t +dirserv_get_bandwidth_for_router(routerinfo_t *ri) +{ + uint32_t bw = 0; + /* + * Yeah, measured bandwidths in measured_bw_line_t are (implicitly + * signed) longs and the ones router_get_advertised_bandwidth() returns + * are uint32_t. + */ + long mbw = 0; + + if (ri) { + /* + * * First try to see if we have a measured bandwidth; don't bother with + * as_of_out here, on the theory that a stale measured bandwidth is still + * better to trust than an advertised one. + */ + if (dirserv_query_measured_bw_cache(ri->cache_info.identity_digest, + &mbw, NULL)) { + /* Got one! */ + bw = (uint32_t)mbw; + } else { + /* If not, fall back to advertised */ + bw = router_get_advertised_bandwidth(ri); + } + } + + return bw; +} + /** Give a statement of our current performance thresholds for inclusion * in a vote document. */ char * @@ -2327,8 +2494,8 @@ compare_routerinfo_by_ip_and_bw_(const void **a, const void **b) else if (!first_is_running && second_is_running) return 1; - bw_first = router_get_advertised_bandwidth(first); - bw_second = router_get_advertised_bandwidth(second); + bw_first = dirserv_get_bandwidth_for_router(first); + bw_second = dirserv_get_bandwidth_for_router(second); if (bw_first > bw_second) return -1; @@ -2468,7 +2635,7 @@ set_routerstatus_from_routerinfo(routerstatus_t *rs, int listbaddirs, int vote_on_hsdirs) { const or_options_t *options = get_options(); - uint32_t routerbw = router_get_advertised_bandwidth(ri); + uint32_t routerbw = dirserv_get_bandwidth_for_router(ri); memset(rs, 0, sizeof(routerstatus_t)); @@ -2670,8 +2837,9 @@ dirserv_read_measured_bandwidths(const char *from_file, char line[256]; FILE *fp = tor_fopen_cloexec(from_file, "r"); int applied_lines = 0; - time_t file_time; + time_t file_time, now; int ok; + if (fp == NULL) { log_warn(LD_CONFIG, "Can't open bandwidth file at configured location: %s", from_file); @@ -2695,7 +2863,8 @@ dirserv_read_measured_bandwidths(const char *from_file, return -1; } - if ((time(NULL) - file_time) > MAX_MEASUREMENT_AGE) { + now = time(NULL); + if ((now - file_time) > MAX_MEASUREMENT_AGE) { log_warn(LD_DIRSERV, "Bandwidth measurement file stale. Age: %u", (unsigned)(time(NULL) - file_time)); fclose(fp); @@ -2709,12 +2878,17 @@ dirserv_read_measured_bandwidths(const char *from_file, measured_bw_line_t parsed_line; if (fgets(line, sizeof(line), fp) && strlen(line)) { if (measured_bw_line_parse(&parsed_line, line) != -1) { + /* Also cache the line for dirserv_get_bandwidth_for_router() */ + dirserv_cache_measured_bw(&parsed_line, file_time); if (measured_bw_line_apply(&parsed_line, routerstatuses) > 0) applied_lines++; } } } + /* Now would be a nice time to clean the cache, too */ + dirserv_expire_measured_bw_cache(now); + fclose(fp); log_info(LD_DIRSERV, "Bandwidth measurement file successfully read. " @@ -2778,6 +2952,14 @@ dirserv_generate_networkstatus_vote_obj(crypto_pk_t *private_key, if (!contact) contact = "(none)"; + /* + * Do this so dirserv_compute_performance_thresholds() and + * set_routerstatus_from_routerinfo() see up-to-date bandwidth info. + */ + if (options->V3BandwidthsFile) { + dirserv_read_measured_bandwidths(options->V3BandwidthsFile, NULL); + } + /* precompute this part, since we need it to decide what "stable" * means. */ SMARTLIST_FOREACH(rl->routers, routerinfo_t *, ri, { @@ -2841,6 +3023,14 @@ dirserv_generate_networkstatus_vote_obj(crypto_pk_t *private_key, if (options->V3BandwidthsFile) { dirserv_read_measured_bandwidths(options->V3BandwidthsFile, routerstatuses); + } else { + /* + * No bandwidths file; clear the measured bandwidth cache in case we had + * one last time around. + */ + if (dirserv_get_measured_bw_cache_size() > 0) { + dirserv_clear_measured_bw_cache(); + } } v3_out = tor_malloc_zero(sizeof(networkstatus_t)); From b528aaef035213dee93663599dc46b1898ae3f8e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 1 Mar 2013 12:22:57 -0500 Subject: [PATCH 14/99] Make sure that [::1] is recognized as a private address Fixes bug 8377; bugfix on 0.2.1.3-alpha. --- changes/bug8377 | 3 +++ src/common/address.c | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 changes/bug8377 diff --git a/changes/bug8377 b/changes/bug8377 new file mode 100644 index 000000000..c9ad151bc --- /dev/null +++ b/changes/bug8377 @@ -0,0 +1,3 @@ + o Minor bugfixes: + - Correctly recognize that [::1] is a loopback address. Fixes bug #8377; + bugfix on 0.2.1.3-alpha. diff --git a/src/common/address.c b/src/common/address.c index e88869f1d..df26f61f8 100644 --- a/src/common/address.c +++ b/src/common/address.c @@ -779,7 +779,8 @@ tor_addr_is_loopback(const tor_addr_t *addr) case AF_INET6: { /* ::1 */ uint32_t *a32 = tor_addr_to_in6_addr32(addr); - return (a32[0] == 0) && (a32[1] == 0) && (a32[2] == 0) && (a32[3] == 1); + return (a32[0] == 0) && (a32[1] == 0) && (a32[2] == 0) && + (ntohl(a32[3]) == 1); } case AF_INET: /* 127.0.0.1 */ From 165b2c0123f0ffb1f9507aaa31cdd536b91bccdf Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 1 Mar 2013 12:40:41 -0500 Subject: [PATCH 15/99] Add unit test for tor_addr_is_loopback --- src/test/test_addr.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/test/test_addr.c b/src/test/test_addr.c index 9007a23c5..e3f38073e 100644 --- a/src/test/test_addr.c +++ b/src/test/test_addr.c @@ -623,12 +623,48 @@ test_addr_ip6_helpers(void) ; } +static void +test_addr_is_loopback(void *data) +{ + static const struct loopback_item { + const char *name; + int is_loopback; + } loopback_items[] = { + { "::1", 1 }, + { "127.0.0.1", 1 }, + { "127.99.100.101", 1 }, + { "128.99.100.101", 0 }, + { "8.8.8.8", 0 }, + { "0.0.0.0", 0 }, + { "::2", 0 }, + { "::", 0 }, + { "::1.0.0.0", 0 }, + { NULL, 0 } + }; + + int i; + tor_addr_t addr; + (void)data; + + for (i=0; loopback_items[i].name; ++i) { + tt_int_op(tor_addr_parse(&addr, loopback_items[i].name), >=, 0); + tt_int_op(tor_addr_is_loopback(&addr), ==, loopback_items[i].is_loopback); + } + + tor_addr_make_unspec(&addr); + tt_int_op(tor_addr_is_loopback(&addr), ==, 0); + + done: + ; +} + #define ADDR_LEGACY(name) \ { #name, legacy_test_helper, 0, &legacy_setup, test_addr_ ## name } struct testcase_t addr_tests[] = { ADDR_LEGACY(basic), ADDR_LEGACY(ip6_helpers), + { "is_loopback", test_addr_is_loopback, 0, NULL, NULL }, END_OF_TESTCASES }; From 0efe96cae81a078301ba8806d821175c830627b9 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Tue, 5 Mar 2013 13:11:43 -0800 Subject: [PATCH 16/99] Call dirserv_clear_measured_bw_cache() from dirserv_free_all() --- src/or/dirserv.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 1c78d2d3b..b3a5177ee 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -4098,5 +4098,7 @@ dirserv_free_all(void) cached_v2_networkstatus = NULL; strmap_free(cached_consensuses, free_cached_dir_); cached_consensuses = NULL; + + dirserv_clear_measured_bw_cache(); } From 75eb79a6aa4ab46ddd6bd5f9c1d7567f80ace68c Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 7 Mar 2013 03:42:14 -0800 Subject: [PATCH 17/99] Make dirserv_cache_measured_bw() use a const measured_bw_line_t * --- src/or/dirserv.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index b3a5177ee..1160f6baf 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -85,7 +85,7 @@ static const signed_descriptor_t *get_signed_descriptor_by_fp( time_t publish_cutoff); static was_router_added_t dirserv_add_extrainfo(extrainfo_t *ei, const char **msg); -static void dirserv_cache_measured_bw(measured_bw_line_t *parsed_line, +static void dirserv_cache_measured_bw(const measured_bw_line_t *parsed_line, time_t as_of); static void dirserv_clear_measured_bw_cache(void); static void dirserv_expire_measured_bw_cache(time_t now); @@ -2067,7 +2067,8 @@ static digestmap_t *mbw_cache = NULL; /** Store a measured bandwidth cache entry when reading the measured * bandwidths file. */ static void -dirserv_cache_measured_bw(measured_bw_line_t *parsed_line, time_t as_of) +dirserv_cache_measured_bw(const measured_bw_line_t *parsed_line, + time_t as_of) { mbw_cache_entry_t *e = NULL; From c7947619df826f6c4568c857178d54b8dee17749 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 7 Mar 2013 05:05:56 -0800 Subject: [PATCH 18/99] More constness in dirserv.c --- src/or/dirserv.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 1160f6baf..1846dc1ba 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -90,9 +90,9 @@ static void dirserv_cache_measured_bw(const measured_bw_line_t *parsed_line, static void dirserv_clear_measured_bw_cache(void); static void dirserv_expire_measured_bw_cache(time_t now); static int dirserv_get_measured_bw_cache_size(void); -static int dirserv_query_measured_bw_cache(char *node_id, long *bw_out, +static int dirserv_query_measured_bw_cache(const char *node_id, long *bw_out, time_t *as_of_out); -static uint32_t dirserv_get_bandwidth_for_router(routerinfo_t *ri); +static uint32_t dirserv_get_bandwidth_for_router(const routerinfo_t *ri); /************** Measured Bandwidth parsing code ******/ #define MAX_MEASUREMENT_AGE (3*24*60*60) /* 3 days */ @@ -2162,7 +2162,7 @@ dirserv_get_measured_bw_cache_size(void) /** Query the cache by identity digest, return value indicates whether * we found it. */ static int -dirserv_query_measured_bw_cache(char *node_id, long *bw_out, +dirserv_query_measured_bw_cache(const char *node_id, long *bw_out, time_t *as_of_out) { mbw_cache_entry_t *v = NULL; @@ -2185,7 +2185,7 @@ dirserv_query_measured_bw_cache(char *node_id, long *bw_out, * preferring measured to advertised values if available. */ static uint32_t -dirserv_get_bandwidth_for_router(routerinfo_t *ri) +dirserv_get_bandwidth_for_router(const routerinfo_t *ri) { uint32_t bw = 0; /* From 302d1dae6c468fd2bd5551de654e36b8464a7eab Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 7 Mar 2013 05:10:54 -0800 Subject: [PATCH 19/99] Make sure expiry check in dirserv_expire_measured_bw_cache() works if time_t is unsigned --- src/or/dirserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 1846dc1ba..3dfa1e74d 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2125,7 +2125,7 @@ dirserv_expire_measured_bw_cache(time_t now) e = (mbw_cache_entry_t *)e_v; if (e) { /* Check for expiration and remove if so */ - if (now - e->as_of > MAX_MEASUREMENT_AGE) { + if (now > e->as_of + MAX_MEASUREMENT_AGE) { tor_free(e); rmv = 1; } From 6e978ab8294eda5bb9a658c8d062bdd0098a9ac5 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 7 Mar 2013 15:41:22 -0800 Subject: [PATCH 20/99] Add unit test for dirserv measured bandwidth cache --- src/or/dirserv.c | 20 +++--------- src/or/dirserv.h | 12 +++++++ src/test/test_dir.c | 78 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 95 insertions(+), 15 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 3dfa1e74d..e97def718 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -85,18 +85,8 @@ static const signed_descriptor_t *get_signed_descriptor_by_fp( time_t publish_cutoff); static was_router_added_t dirserv_add_extrainfo(extrainfo_t *ei, const char **msg); -static void dirserv_cache_measured_bw(const measured_bw_line_t *parsed_line, - time_t as_of); -static void dirserv_clear_measured_bw_cache(void); -static void dirserv_expire_measured_bw_cache(time_t now); -static int dirserv_get_measured_bw_cache_size(void); -static int dirserv_query_measured_bw_cache(const char *node_id, long *bw_out, - time_t *as_of_out); static uint32_t dirserv_get_bandwidth_for_router(const routerinfo_t *ri); -/************** Measured Bandwidth parsing code ******/ -#define MAX_MEASUREMENT_AGE (3*24*60*60) /* 3 days */ - /************** Fingerprint handling code ************/ #define FP_NAMED 1 /**< Listed in fingerprint file. */ @@ -2066,7 +2056,7 @@ static digestmap_t *mbw_cache = NULL; /** Store a measured bandwidth cache entry when reading the measured * bandwidths file. */ -static void +void dirserv_cache_measured_bw(const measured_bw_line_t *parsed_line, time_t as_of) { @@ -2096,7 +2086,7 @@ dirserv_cache_measured_bw(const measured_bw_line_t *parsed_line, } /** Clear and free the measured bandwidth cache */ -static void +void dirserv_clear_measured_bw_cache(void) { if (mbw_cache) { @@ -2107,7 +2097,7 @@ dirserv_clear_measured_bw_cache(void) } /** Scan the measured bandwidth cache and remove expired entries */ -static void +void dirserv_expire_measured_bw_cache(time_t now) { digestmap_iter_t *itr = NULL; @@ -2152,7 +2142,7 @@ dirserv_expire_measured_bw_cache(time_t now) } /** Get the current size of the measured bandwidth cache */ -static int +int dirserv_get_measured_bw_cache_size(void) { if (mbw_cache) return digestmap_size(mbw_cache); @@ -2161,7 +2151,7 @@ dirserv_get_measured_bw_cache_size(void) /** Query the cache by identity digest, return value indicates whether * we found it. */ -static int +int dirserv_query_measured_bw_cache(const char *node_id, long *bw_out, time_t *as_of_out) { diff --git a/src/or/dirserv.h b/src/or/dirserv.h index 0caf55f83..887a4992e 100644 --- a/src/or/dirserv.h +++ b/src/or/dirserv.h @@ -138,10 +138,22 @@ void cached_dir_decref(cached_dir_t *d); cached_dir_t *new_cached_dir(char *s, time_t published); #ifdef DIRSERV_PRIVATE + +/* Put the MAX_MEASUREMENT_AGE #define here so unit tests can see it */ +#define MAX_MEASUREMENT_AGE (3*24*60*60) /* 3 days */ + int measured_bw_line_parse(measured_bw_line_t *out, const char *line); int measured_bw_line_apply(measured_bw_line_t *parsed_line, smartlist_t *routerstatuses); + +void dirserv_cache_measured_bw(const measured_bw_line_t *parsed_line, + time_t as_of); +void dirserv_clear_measured_bw_cache(void); +void dirserv_expire_measured_bw_cache(time_t now); +int dirserv_get_measured_bw_cache_size(void); +int dirserv_query_measured_bw_cache(const char *node_id, long *bw_out, + time_t *as_of_out); #endif int dirserv_read_measured_bandwidths(const char *from_file, diff --git a/src/test/test_dir.c b/src/test/test_dir.c index fbd49b710..667e8f423 100644 --- a/src/test/test_dir.c +++ b/src/test/test_dir.c @@ -575,6 +575,83 @@ test_dir_measured_bw(void) return; } +#define MBWC_INIT_TIME 1000 + +/** Do the measured bandwidth cache unit test */ +static void +test_dir_measured_bw_cache(void) +{ + /* Initial fake time_t for testing */ + time_t curr = MBWC_INIT_TIME; + /* Some measured_bw_line_ts */ + measured_bw_line_t mbwl[3]; + /* For receiving output on cache queries */ + long bw; + time_t as_of; + + /* First, clear the cache and assert that it's empty */ + dirserv_clear_measured_bw_cache(); + test_eq(dirserv_get_measured_bw_cache_size(), 0); + /* + * Set up test mbwls; none of the dirserv_cache_*() functions care about + * the node_hex field. + */ + memset(mbwl[0].node_id, 0x01, DIGEST_LEN); + mbwl[0].bw = 20; + memset(mbwl[1].node_id, 0x02, DIGEST_LEN); + mbwl[1].bw = 40; + memset(mbwl[2].node_id, 0x03, DIGEST_LEN); + mbwl[2].bw = 80; + /* Try caching something */ + dirserv_cache_measured_bw(&(mbwl[0]), curr); + test_eq(dirserv_get_measured_bw_cache_size(), 1); + /* Okay, let's see if we can retrieve it */ + test_assert(dirserv_query_measured_bw_cache(mbwl[0].node_id, &bw, &as_of)); + test_eq(bw, 20); + test_eq(as_of, MBWC_INIT_TIME); + /* Try retrieving it without some outputs */ + test_assert(dirserv_query_measured_bw_cache(mbwl[0].node_id, NULL, NULL)); + test_assert(dirserv_query_measured_bw_cache(mbwl[0].node_id, &bw, NULL)); + test_eq(bw, 20); + test_assert(dirserv_query_measured_bw_cache(mbwl[0].node_id, NULL, &as_of)); + test_eq(as_of, MBWC_INIT_TIME); + /* Now expire it */ + curr += MAX_MEASUREMENT_AGE + 1; + dirserv_expire_measured_bw_cache(curr); + /* Check that the cache is empty */ + test_eq(dirserv_get_measured_bw_cache_size(), 0); + /* Check that we can't retrieve it */ + test_assert(!dirserv_query_measured_bw_cache(mbwl[0].node_id, NULL, NULL)); + /* Try caching a few things now */ + dirserv_cache_measured_bw(&(mbwl[0]), curr); + test_eq(dirserv_get_measured_bw_cache_size(), 1); + curr += MAX_MEASUREMENT_AGE / 4; + dirserv_cache_measured_bw(&(mbwl[1]), curr); + test_eq(dirserv_get_measured_bw_cache_size(), 2); + curr += MAX_MEASUREMENT_AGE / 4; + dirserv_cache_measured_bw(&(mbwl[2]), curr); + test_eq(dirserv_get_measured_bw_cache_size(), 3); + curr += MAX_MEASUREMENT_AGE / 4 + 1; + /* Do an expire that's too soon to get any of them */ + dirserv_expire_measured_bw_cache(curr); + test_eq(dirserv_get_measured_bw_cache_size(), 3); + /* Push the oldest one off the cliff */ + curr += MAX_MEASUREMENT_AGE / 4; + dirserv_expire_measured_bw_cache(curr); + test_eq(dirserv_get_measured_bw_cache_size(), 2); + /* And another... */ + curr += MAX_MEASUREMENT_AGE / 4; + dirserv_expire_measured_bw_cache(curr); + test_eq(dirserv_get_measured_bw_cache_size(), 1); + /* This should empty it out again */ + curr += MAX_MEASUREMENT_AGE / 4; + dirserv_expire_measured_bw_cache(curr); + test_eq(dirserv_get_measured_bw_cache_size(), 0); + + done: + return; +} + static void test_dir_param_voting(void) { @@ -2141,6 +2218,7 @@ struct testcase_t dir_tests[] = { DIR(scale_bw), DIR_LEGACY(clip_unmeasured_bw), DIR_LEGACY(clip_unmeasured_bw_alt), + DIR_LEGACY(measured_bw_cache), END_OF_TESTCASES }; From b5224348340238f231f81138c09f7f16541d0f1d Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 7 Mar 2013 15:55:01 -0800 Subject: [PATCH 21/99] Use DIGESTMAP_FOREACH_MODIFY in dirserv_expire_measured_bw_cache() for concision --- src/or/dirserv.c | 35 ++++++----------------------------- 1 file changed, 6 insertions(+), 29 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index e97def718..b6ff6f694 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2100,38 +2100,15 @@ dirserv_clear_measured_bw_cache(void) void dirserv_expire_measured_bw_cache(time_t now) { - digestmap_iter_t *itr = NULL; - const char *k = NULL; - void *e_v = NULL; - mbw_cache_entry_t *e = NULL; - int rmv; if (mbw_cache) { - /* Start iterating */ - itr = digestmap_iter_init(mbw_cache); - while (!digestmap_iter_done(itr)) { - rmv = 0; - digestmap_iter_get(itr, &k, &e_v); - e = (mbw_cache_entry_t *)e_v; - if (e) { - /* Check for expiration and remove if so */ - if (now > e->as_of + MAX_MEASUREMENT_AGE) { - tor_free(e); - rmv = 1; - } - } else { - /* Weird; remove it and complain */ - log_warn(LD_BUG, "Saw NULL entry in measured bandwidth cache"); - rmv = 1; + /* Iterate through the cache and check each entry */ + DIGESTMAP_FOREACH_MODIFY(mbw_cache, k, mbw_cache_entry_t *, e) { + if (now > e->as_of + MAX_MEASUREMENT_AGE) { + tor_free(e); + MAP_DEL_CURRENT(k); } - - /* Advance, or remove and advance */ - if (rmv) { - itr = digestmap_iter_next_rmv(mbw_cache, itr); - } else { - itr = digestmap_iter_next(mbw_cache, itr); - } - } + } DIGESTMAP_FOREACH_END; /* Check if we cleared the whole thing and free if so */ if (digestmap_size(mbw_cache) == 0) { From 8027ebb5fdf43b5aa63e498c1f8e3c6b2c87bbb7 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Thu, 7 Mar 2013 15:59:30 -0800 Subject: [PATCH 22/99] Better comment for dirserv_query_measured_bw_cache() --- src/or/dirserv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index b6ff6f694..37934a032 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2127,7 +2127,8 @@ dirserv_get_measured_bw_cache_size(void) } /** Query the cache by identity digest, return value indicates whether - * we found it. */ + * we found it. The bw_out and as_of_out pointers receive the cached + * bandwidth value and the time it was cached if not NULL. */ int dirserv_query_measured_bw_cache(const char *node_id, long *bw_out, time_t *as_of_out) From d13b996d83cb346cf81f5d9b46486556d98073d1 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 9 Mar 2013 19:45:17 -0500 Subject: [PATCH 23/99] Fix to test for bug8444 / 6034 --- src/or/circuitbuild.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index f8521c5cf..24362460c 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -540,6 +540,7 @@ circuit_build_times_get_initial_timeout(void) * Check if we have LearnCircuitBuildTimeout, and if we don't, * always use CircuitBuildTimeout, no questions asked. */ + /*XXXX025 this logic could be cleaned up a lot. */ if (get_options()->LearnCircuitBuildTimeout) { if (!unit_tests && get_options()->CircuitBuildTimeout) { timeout = get_options()->CircuitBuildTimeout*1000; @@ -552,7 +553,10 @@ circuit_build_times_get_initial_timeout(void) timeout = circuit_build_times_initial_timeout(); } } else { - timeout = get_options()->CircuitBuildTimeout*1000; + if (get_options()->CircuitBuildTimeout > 0) + timeout = get_options()->CircuitBuildTimeout*1000; + else + timeout = circuit_build_times_initial_timeout(); } return timeout; From b9037521c6ba333178c3f3197c39be360aba229c Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 12:29:28 -0400 Subject: [PATCH 24/99] Fix a framing bug when reading versions from a versions cell. Our ++ should have been += 2. This means that we'd accept version numbers even when they started at an odd position. This bug should be harmless in practice for so long as every version number we allow begins with a 0 byte, but if we ever have a version number starting with 1, 2, 3, or 4, there will be trouble here. Fix for bug 8059, reported pseudonymously. Bugfix on 0.2.0.10-alpha -- specifically, commit 6fcda529, where during development I increased the width of a version to 16 bits without changing the loop step. --- changes/bug8059 | 6 ++++++ src/or/channeltls.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 changes/bug8059 diff --git a/changes/bug8059 b/changes/bug8059 new file mode 100644 index 000000000..47273ed0a --- /dev/null +++ b/changes/bug8059 @@ -0,0 +1,6 @@ + o Minor bugfixes (protocol conformance): + - Fix a misframing issue when reading the version numbers in a + VERSIONS cell. Previously we would recognize [00 01 00 02] as + 'version 1, version 2, and version 0x100', when it should have + only included versions 1 and 2. Fixes bug 8059; bugfix on + 0.2.0.10-alpha. Reported pseudonymously. diff --git a/src/or/channeltls.c b/src/or/channeltls.c index 1035a1412..60693daeb 100644 --- a/src/or/channeltls.c +++ b/src/or/channeltls.c @@ -1208,7 +1208,7 @@ channel_tls_process_versions_cell(var_cell_t *cell, channel_tls_t *chan) tor_assert(chan->conn->handshake_state); end = cell->payload + cell->payload_len; - for (cp = cell->payload; cp+1 < end; ++cp) { + for (cp = cell->payload; cp+1 < end; cp += 2) { uint16_t v = ntohs(get_uint16(cp)); if (is_or_protocol_version_known(v) && v > highest_supported_version) highest_supported_version = v; From fca578d9b56d7d80fc43f21b77153d7e5cad92d6 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 12:34:14 -0400 Subject: [PATCH 25/99] Increase link_proto field to 2 bytes This should have been 2 bytes all along, since version numbers can be 16 bits long. This isn't a live bug, since the call to is_or_protocol_version_known in channel_tls_process_versions_cell will reject any version number not in the range 1..4. Still, let's fix this before we accidentally start supporting version 256. Reported pseudonymously. Fixes bug 8062; bugfix on 0.2.0.10-alpha -- specifically, on commit 6fcda529, where during development I increased the width of a version to 16 bits without changing the type of link_proto. --- changes/bug8062 | 5 +++++ src/or/or.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 changes/bug8062 diff --git a/changes/bug8062 b/changes/bug8062 new file mode 100644 index 000000000..805e51ed4 --- /dev/null +++ b/changes/bug8062 @@ -0,0 +1,5 @@ + o Minor bugfixes: + - Increase the width of the field used to remember a connection's + link protocol version to two bytes. Harmless for now, since the + only currently recognized versions are one byte long. Reported + pseudynmously. Fixes bug 8062, bugfix on 0.2.0.10-alpha. diff --git a/src/or/or.h b/src/or/or.h index c7d259853..2fe36ba19 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1417,8 +1417,8 @@ typedef struct or_connection_t { unsigned int is_outgoing:1; unsigned int proxy_type:2; /**< One of PROXY_NONE...PROXY_SOCKS5 */ unsigned int wide_circ_ids:1; - uint8_t link_proto; /**< What protocol version are we using? 0 for - * "none negotiated yet." */ + uint16_t link_proto; /**< What protocol version are we using? 0 for + * "none negotiated yet." */ or_handshake_state_t *handshake_state; /**< If we are setting this connection * up, state information to do so. */ From fdafe11a25ad3e7ca8893c8630f86973431217b9 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 13:23:10 -0400 Subject: [PATCH 26/99] Give an #error when we want threads and OpenSSL has disabled threads Fixes ticket 6673. --- changes/bug6673 | 4 ++++ src/common/crypto.c | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 changes/bug6673 diff --git a/changes/bug6673 b/changes/bug6673 new file mode 100644 index 000000000..506b44989 --- /dev/null +++ b/changes/bug6673 @@ -0,0 +1,4 @@ + o Minor features (build): + - Detect and reject attempts to build Tor with threading support + when OpenSSL have been compiled with threading support disabled. + Fixes bug 6673. diff --git a/src/common/crypto.c b/src/common/crypto.c index 22d57c7c8..3d8b1ba4f 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -3000,6 +3000,12 @@ memwipe(void *mem, uint8_t byte, size_t sz) } #ifdef TOR_IS_MULTITHREADED + +#ifndef OPENSSL_THREADS +#error OpenSSL has been built without thread support. Tor requires an \ + OpenSSL library with thread support enabled. +#endif + /** Helper: OpenSSL uses this callback to manipulate mutexes. */ static void openssl_locking_cb_(int mode, int n, const char *file, int line) From d54ccbe9fd5c9ca6ff53ad7d0efc4d0e837062ab Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 14:37:44 -0400 Subject: [PATCH 27/99] Use fds, not stdio, to manage microdescriptor files This is part of an attempt to mitigate 8031. --- src/or/microdesc.c | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/or/microdesc.c b/src/or/microdesc.c index b4d22c1c6..0a9724fda 100644 --- a/src/or/microdesc.c +++ b/src/or/microdesc.c @@ -70,7 +70,7 @@ HT_GENERATE(microdesc_map, microdesc_t, node, * *annotation_len_out to the number of bytes written as * annotations. */ static ssize_t -dump_microdescriptor(FILE *f, microdesc_t *md, size_t *annotation_len_out) +dump_microdescriptor(int fd, microdesc_t *md, size_t *annotation_len_out) { ssize_t r = 0; size_t written; @@ -80,10 +80,10 @@ dump_microdescriptor(FILE *f, microdesc_t *md, size_t *annotation_len_out) char annotation[ISO_TIME_LEN+32]; format_iso_time(buf, md->last_listed); tor_snprintf(annotation, sizeof(annotation), "@last-listed %s\n", buf); - if (fputs(annotation, f) < 0) { + if (write_all(fd, annotation, strlen(annotation), 0) < 0) { log_warn(LD_DIR, "Couldn't write microdescriptor annotation: %s", - strerror(ferror(f))); + strerror(errno)); return -1; } r += strlen(annotation); @@ -92,13 +92,13 @@ dump_microdescriptor(FILE *f, microdesc_t *md, size_t *annotation_len_out) *annotation_len_out = 0; } - md->off = (off_t) ftell(f); - written = fwrite(md->body, 1, md->bodylen, f); + md->off = tor_fd_getpos(fd); + written = write_all(fd, md->body, md->bodylen, 0); if (written != md->bodylen) { log_warn(LD_DIR, "Couldn't dump microdescriptor (wrote %lu out of %lu): %s", (unsigned long)written, (unsigned long)md->bodylen, - strerror(ferror(f))); + strerror(errno)); return -1; } r += md->bodylen; @@ -197,15 +197,15 @@ microdescs_add_list_to_cache(microdesc_cache_t *cache, { smartlist_t *added; open_file_t *open_file = NULL; - FILE *f = NULL; + int fd = -1; // int n_added = 0; ssize_t size = 0; if (where == SAVED_NOWHERE && !no_save) { - f = start_writing_to_stdio_file(cache->journal_fname, - OPEN_FLAGS_APPEND|O_BINARY, - 0600, &open_file); - if (!f) { + fd = start_writing_to_file(cache->journal_fname, + OPEN_FLAGS_APPEND|O_BINARY, + 0600, &open_file); + if (fd < 0) { log_warn(LD_DIR, "Couldn't append to journal in %s: %s", cache->journal_fname, strerror(errno)); return NULL; @@ -227,9 +227,9 @@ microdescs_add_list_to_cache(microdesc_cache_t *cache, } /* Okay, it's a new one. */ - if (f) { + if (fd >= 0) { size_t annotation_len; - size = dump_microdescriptor(f, md, &annotation_len); + size = dump_microdescriptor(fd, md, &annotation_len); if (size < 0) { /* we already warned in dump_microdescriptor; */ abort_writing_to_file(open_file); @@ -251,7 +251,7 @@ microdescs_add_list_to_cache(microdesc_cache_t *cache, cache->total_len_seen += md->bodylen; } SMARTLIST_FOREACH_END(md); - if (f) + if (fd >= 0) finish_writing_to_file(open_file); /*XXX Check me.*/ { @@ -405,7 +405,7 @@ int microdesc_cache_rebuild(microdesc_cache_t *cache, int force) { open_file_t *open_file; - FILE *f; + int fd = -1; microdesc_t **mdp; smartlist_t *wrote; ssize_t size; @@ -429,10 +429,10 @@ microdesc_cache_rebuild(microdesc_cache_t *cache, int force) orig_size = (int)(cache->cache_content ? cache->cache_content->size : 0); orig_size += (int)cache->journal_len; - f = start_writing_to_stdio_file(cache->cache_fname, - OPEN_FLAGS_REPLACE|O_BINARY, - 0600, &open_file); - if (!f) + fd = start_writing_to_file(cache->cache_fname, + OPEN_FLAGS_REPLACE|O_BINARY, + 0600, &open_file); + if (fd < 0) return -1; wrote = smartlist_new(); @@ -443,7 +443,7 @@ microdesc_cache_rebuild(microdesc_cache_t *cache, int force) if (md->no_save) continue; - size = dump_microdescriptor(f, md, &annotation_len); + size = dump_microdescriptor(fd, md, &annotation_len); if (size < 0) { /* XXX handle errors from dump_microdescriptor() */ /* log? return -1? die? coredump the universe? */ From 6905c1f60d2d0e658481df70fdcaa73251becacc Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 14:50:41 -0400 Subject: [PATCH 28/99] Check more error codes when writing microdescriptors. Possible partial fix, or diagnosis tool, for bug 8031. --- changes/bug8031 | 7 +++++++ src/or/microdesc.c | 18 ++++++++++++++---- 2 files changed, 21 insertions(+), 4 deletions(-) create mode 100644 changes/bug8031 diff --git a/changes/bug8031 b/changes/bug8031 new file mode 100644 index 000000000..17329ec5b --- /dev/null +++ b/changes/bug8031 @@ -0,0 +1,7 @@ + o Minor bugfixes: + - Use direct writes rather than stdio when building microdescriptor + caches, in an attempt to mitigate bug 8031, or at least make it + less common. + - Warn more aggressively when flushing microdescriptors to a + microdescriptor cache fails, in an attempt to mitegate bug 8031, + or at least make it more diagnosable. diff --git a/src/or/microdesc.c b/src/or/microdesc.c index 0a9724fda..7d3f631a3 100644 --- a/src/or/microdesc.c +++ b/src/or/microdesc.c @@ -251,8 +251,14 @@ microdescs_add_list_to_cache(microdesc_cache_t *cache, cache->total_len_seen += md->bodylen; } SMARTLIST_FOREACH_END(md); - if (fd >= 0) - finish_writing_to_file(open_file); /*XXX Check me.*/ + if (fd >= 0) { + if (finish_writing_to_file(open_file) < 0) { + log_warn(LD_DIR, "Error appending to microdescriptor file: %s", + strerror(errno)); + smartlist_clear(added); + return added; + } + } { networkstatus_t *ns = networkstatus_get_latest_consensus(); @@ -459,11 +465,15 @@ microdesc_cache_rebuild(microdesc_cache_t *cache, int force) smartlist_add(wrote, md); } + if (finish_writing_to_file(open_file) < 0) { + log_warn(LD_DIR, "Error rebuilding microdescriptor cache: %s", + strerror(errno)); + return -1; + } + if (cache->cache_content) tor_munmap_file(cache->cache_content); - finish_writing_to_file(open_file); /*XXX Check me.*/ - cache->cache_content = tor_mmap_file(cache->cache_fname); if (!cache->cache_content && smartlist_len(wrote)) { From 1eebb566911380c22768a8d25061a8f917688349 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 14:52:56 -0400 Subject: [PATCH 29/99] Another possible diagnostic for 8031. This time, I'm checking whether our calculated offset matches our real offset, in each case, as we go along. I don't think this is the bug, but it can't hurt to check. --- src/or/microdesc.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/or/microdesc.c b/src/or/microdesc.c index 7d3f631a3..bb9668da5 100644 --- a/src/or/microdesc.c +++ b/src/or/microdesc.c @@ -415,7 +415,7 @@ microdesc_cache_rebuild(microdesc_cache_t *cache, int force) microdesc_t **mdp; smartlist_t *wrote; ssize_t size; - off_t off = 0; + off_t off = 0, off_real; int orig_size, new_size; if (cache == NULL) { @@ -458,6 +458,14 @@ microdesc_cache_rebuild(microdesc_cache_t *cache, int force) tor_assert(((size_t)size) == annotation_len + md->bodylen); md->off = off + annotation_len; off += size; + off_real = tor_fd_getpos(fd); + if (off_real != off) { + log_warn(LD_BUG, "Discontinuity in position in microdescriptor cache." + "By my count, I'm at "I64_FORMAT + ", but I should be at "I64_FORMAT, + I64_PRINTF_ARG(off), I64_PRINTF_ARG(off_real)); + off = off_real; + } if (md->saved_location != SAVED_IN_CACHE) { tor_free(md->body); md->saved_location = SAVED_IN_CACHE; From 2f98bf5c9fac4dfd1bb07564ce08b13d1e330252 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 15:33:44 -0400 Subject: [PATCH 30/99] Warn at configure time when time_t is unsigned Inspired by #8042. As far as I know, OpenVMS is the only place you're likely to hit an unsigned time_t these days, and Tor's VMS support is... lacking. Still worth letting people know about it, though. --- changes/warn-unsigned-time_t | 5 +++++ configure.ac | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 changes/warn-unsigned-time_t diff --git a/changes/warn-unsigned-time_t b/changes/warn-unsigned-time_t new file mode 100644 index 000000000..5f0c36d09 --- /dev/null +++ b/changes/warn-unsigned-time_t @@ -0,0 +1,5 @@ + o Build improvements: + - Warn if building on a platform with an unsigned time_t: there + are too many places where Tor currently assumes that time_t can + hold negative values. We'd like to fix them all, but probably + some will remain. diff --git a/configure.ac b/configure.ac index 864477b8f..21a83bc4c 100644 --- a/configure.ac +++ b/configure.ac @@ -972,6 +972,10 @@ AX_CHECK_SIGN([time_t], #endif ]) +if test "$ax_cv_decl_time_t_signed" = no; then + AC_MSG_WARN([You have an unsigned time_t; some things will probably break. Please tell the Tor developers about your interesting platform.]) +fi + AX_CHECK_SIGN([size_t], [ tor_cv_size_t_signed=yes ], [ tor_cv_size_t_signed=no ], [ From 051b1e8ac4114fb23904cdf8dead72d585904e0a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 16:29:06 -0400 Subject: [PATCH 31/99] Look at the right variable when warning about signed size_t. In 81d69f4c2d8a451 (0.2.21-alpha) we added a compile-time check for a (totally broken) signed size_t. In 0e597471af (not yet released) I switched to a better configure-time check, which stored its output in a different variable. I didn't change the code which looked at the output, however. This bug is not in any released version of Tor, and would not affect anybody with a working Tor. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 864477b8f..4bc0db363 100644 --- a/configure.ac +++ b/configure.ac @@ -980,7 +980,7 @@ AX_CHECK_SIGN([size_t], #endif ]) -if test "$tor_cv_size_t_signed" = yes; then +if test "$ax_cv_decl_size_t_signed" = yes; then AC_MSG_ERROR([You have a signed size_t; that's grossly nonconformant.]) fi From 8c211c3cdae1c6cb0f2d004f8dfaf15569b7501a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 17:57:27 -0400 Subject: [PATCH 32/99] Fix option names in tor-fw-helper manpage fix for bug 7768 --- changes/bug7768 | 3 +++ doc/tor-fw-helper.1.txt | 10 +++++----- 2 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 changes/bug7768 diff --git a/changes/bug7768 b/changes/bug7768 new file mode 100644 index 000000000..f523b5b77 --- /dev/null +++ b/changes/bug7768 @@ -0,0 +1,3 @@ + o Documentation fixes: + - Update tor-fw-helper.1.txt to describe its options with their + correct names. Fixes bug 7768. diff --git a/doc/tor-fw-helper.1.txt b/doc/tor-fw-helper.1.txt index cf769d965..f51ffc4bd 100644 --- a/doc/tor-fw-helper.1.txt +++ b/doc/tor-fw-helper.1.txt @@ -15,8 +15,7 @@ tor-fw-helper - Manage upstream firewall/NAT devices SYNOPSIS -------- **tor-fw-helper** [-h|--help] [-T|--test] [-v|--verbose] [-g|--fetch-public-ip] - -i|--internal-or-port __TCP port__ [-e|--external-or-port _TCP port_] - [-d|--internal-dir-port _TCP port_] [-p|--external-dir-port _TCP port_] + [-p __external port__:__internal_port__] DESCRIPTION ----------- @@ -31,7 +30,7 @@ OPTIONS **-h** or **--help**:: Display help text and exit. -**-v**:: +**-v** or **--verbose**:: Display verbose output. **-T** or **--test**:: @@ -41,8 +40,9 @@ OPTIONS **-g** or **--fetch-public-ip**:: Fetch the the public ip address for each supported NAT helper method. -**-p** or **--forward-port** __external_port__:__internal_port__:: - Forward external_port to internal_port. +**-p** or **--port** __external_port__:__internal_port__:: + Forward external_port to internal_port. This option can appear + more than once. BUGS ---- From 452cfaacfc6e6b4313d2170c29e18d6399038999 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 22:06:07 -0400 Subject: [PATCH 33/99] Track TLS overhead: diagnostic for bug 7707 --- changes/bug7707_diagnostic | 5 +++++ src/common/tortls.c | 25 +++++++++++++++++++++++++ src/common/tortls.h | 2 ++ src/or/status.c | 6 ++++++ 4 files changed, 38 insertions(+) create mode 100644 changes/bug7707_diagnostic diff --git a/changes/bug7707_diagnostic b/changes/bug7707_diagnostic new file mode 100644 index 000000000..0c3138e78 --- /dev/null +++ b/changes/bug7707_diagnostic @@ -0,0 +1,5 @@ + o Minor features: + - Add another diagnostic to the heartbeat message: track and log + overhead that TLS is adding to the data we write. If this is + high, we are sending too little data to SSL_write at a time. + Diagnostic for bug 7707. diff --git a/src/common/tortls.c b/src/common/tortls.c index a08910b3a..b7e5bc1a5 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -1997,6 +1997,10 @@ tor_tls_free(tor_tls_t *tls) if (!tls) return; tor_assert(tls->ssl); + { + size_t r,w; + tor_tls_get_n_raw_bytes(tls,&r,&w); /* ensure written_by_tls is updated */ + } #ifdef SSL_set_tlsext_host_name SSL_set_tlsext_host_name(tls->ssl, NULL); #endif @@ -2048,6 +2052,13 @@ tor_tls_read(tor_tls_t *tls, char *cp, size_t len) } } +/** Total number of bytes that we've used TLS to send. Used to track TLS + * overhead. */ +static uint64_t total_bytes_written_over_tls = 0; +/** Total number of bytes that TLS has put on the network for us. Used to + * track TLS overhead. */ +static uint64_t total_bytes_written_by_tls = 0; + /** Underlying function for TLS writing. Write up to n * characters from cp onto tls. On success, returns the * number of characters written. On failure, returns TOR_TLS_ERROR, @@ -2074,6 +2085,7 @@ tor_tls_write(tor_tls_t *tls, const char *cp, size_t n) r = SSL_write(tls->ssl, cp, (int)n); err = tor_tls_get_error(tls, r, 0, "writing", LOG_INFO, LD_NET); if (err == TOR_TLS_DONE) { + total_bytes_written_over_tls += r; return r; } if (err == TOR_TLS_WANTWRITE || err == TOR_TLS_WANTREAD) { @@ -2563,10 +2575,23 @@ tor_tls_get_n_raw_bytes(tor_tls_t *tls, size_t *n_read, size_t *n_written) "r=%lu, last_read=%lu, w=%lu, last_written=%lu", r, tls->last_read_count, w, tls->last_write_count); } + total_bytes_written_by_tls += *n_written; tls->last_read_count = r; tls->last_write_count = w; } +/** Return a ratio of the bytes that TLS has sent to the bytes that we've told + * it to send. Used to track whether our TLS records are getting too tiny. */ +double +tls_get_write_overhead_ratio(void) +{ + if (total_bytes_written_over_tls == 0) + return 1.0; + + return U64_TO_DBL(total_bytes_written_by_tls) / + U64_TO_DBL(total_bytes_written_over_tls); +} + /** Implement check_no_tls_errors: If there are any pending OpenSSL * errors, log an error message. */ void diff --git a/src/common/tortls.h b/src/common/tortls.h index 1ae6344d0..49c488b36 100644 --- a/src/common/tortls.h +++ b/src/common/tortls.h @@ -95,6 +95,8 @@ void tor_tls_get_buffer_sizes(tor_tls_t *tls, size_t *rbuf_capacity, size_t *rbuf_bytes, size_t *wbuf_capacity, size_t *wbuf_bytes); +double tls_get_write_overhead_ratio(void); + int tor_tls_used_v1_handshake(tor_tls_t *tls); int tor_tls_received_v3_certificate(tor_tls_t *tls); int tor_tls_get_num_server_handshakes(tor_tls_t *tls); diff --git a/src/or/status.c b/src/or/status.c index 126167dcb..e44de635c 100644 --- a/src/or/status.c +++ b/src/or/status.c @@ -85,6 +85,7 @@ log_heartbeat(time_t now) char *bw_rcvd = NULL; char *uptime = NULL; const routerinfo_t *me; + double r = tls_get_write_overhead_ratio(); const or_options_t *options = get_options(); (void)now; @@ -112,6 +113,11 @@ log_heartbeat(time_t now) 100*(U64_TO_DBL(stats_n_data_bytes_packaged) / U64_TO_DBL(stats_n_data_cells_packaged*RELAY_PAYLOAD_SIZE)) ); + if (r > 1.0) { + double overhead = ( r - 1.0 ) * 100.0; + log_notice(LD_HEARTBEAT, "TLS write overhead: %.f%%", overhead); + } + tor_free(uptime); tor_free(bw_sent); tor_free(bw_rcvd); From 2b22c0aeef6e71d56b12411d10484aaece769178 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 23:37:47 -0400 Subject: [PATCH 34/99] On END_REASON_EXITPOLICY, mark circuit as unusable for that address. Also, don't call the exit node 'reject *' unless our decision to pick that node was based on a non-summarized version of that node's exit policy. rransom and arma came up with the ideas for this fix. Fix for 7582; the summary-related part is a bugfix on 0.2.3.2-alpha. --- changes/bug7582 | 9 ++++++ src/or/circuituse.c | 13 +++++++-- src/or/nodelist.c | 18 ++++++++++++ src/or/nodelist.h | 1 + src/or/or.h | 4 +++ src/or/policies.c | 18 ++++++++++++ src/or/policies.h | 2 ++ src/or/relay.c | 68 +++++++++++++++++++++++++++++++++++---------- 8 files changed, 116 insertions(+), 17 deletions(-) create mode 100644 changes/bug7582 diff --git a/changes/bug7582 b/changes/bug7582 new file mode 100644 index 000000000..f3b063576 --- /dev/null +++ b/changes/bug7582 @@ -0,0 +1,9 @@ + o Major bugfixes: + + - When an exit node tells us that it is rejecting because of its + exit policy a stream we expected it to accept (because of its exit + policy), do not mark the node as useless for exiting if our + expectation was only based on an exit policy summary. Instead, + mark the circuit as unsuitable for that particular address. Fixes + part of bug 7582; bugfix on 0.2.3.2-alpha. + diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 51d8716fa..6b5ca9011 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -105,6 +105,8 @@ circuit_is_acceptable(const origin_circuit_t *origin_circ, return 0; if (purpose == CIRCUIT_PURPOSE_C_GENERAL) { + tor_addr_t addr; + const int family = tor_addr_parse(&addr, conn->socks_request->address); if (!exitnode && !build_state->onehop_tunnel) { log_debug(LD_CIRC,"Not considering circuit with unknown router."); return 0; /* this circuit is screwed and doesn't know it yet, @@ -125,9 +127,7 @@ circuit_is_acceptable(const origin_circuit_t *origin_circ, return 0; /* this is a circuit to somewhere else */ if (tor_digest_is_zero(digest)) { /* we don't know the digest; have to compare addr:port */ - tor_addr_t addr; - int r = tor_addr_parse(&addr, conn->socks_request->address); - if (r < 0 || + if (family < 0 || !tor_addr_eq(&build_state->chosen_exit->addr, &addr) || build_state->chosen_exit->port != conn->socks_request->port) return 0; @@ -139,6 +139,13 @@ circuit_is_acceptable(const origin_circuit_t *origin_circ, return 0; } } + if (origin_circ->prepend_policy && family != -1) { + int r = compare_tor_addr_to_addr_policy(&addr, + conn->socks_request->port, + origin_circ->prepend_policy); + if (r == ADDR_POLICY_REJECTED) + return 0; + } if (exitnode && !connection_ap_can_use_exit(conn, exitnode)) { /* can't exit from this router */ return 0; diff --git a/src/or/nodelist.c b/src/or/nodelist.c index ee1bc392e..5f3b843d0 100644 --- a/src/or/nodelist.c +++ b/src/or/nodelist.c @@ -688,6 +688,24 @@ node_exit_policy_rejects_all(const node_t *node) return 1; } +/** Return true iff the exit policy for node is such that we can treat + * rejecting an address of type family unexpectedly as a sign of that + * node's failure. */ +int +node_exit_policy_is_exact(const node_t *node, sa_family_t family) +{ + if (family == AF_UNSPEC) { + return 1; /* Rejecting an address but not telling us what address + * is a bad sign. */ + } else if (family == AF_INET) { + return node->ri != NULL; + } else if (family == AF_INET6) { + return 0; + } + tor_fragile_assert(); + return 1; +} + /** Return list of tor_addr_port_t with all OR ports (in the sense IP * addr + TCP port) for node. Caller must free all elements * using tor_free() and free the list using smartlist_free(). diff --git a/src/or/nodelist.h b/src/or/nodelist.h index 65cf0d028..8a4665a8b 100644 --- a/src/or/nodelist.h +++ b/src/or/nodelist.h @@ -41,6 +41,7 @@ int node_get_purpose(const node_t *node); (node_get_purpose((node)) == ROUTER_PURPOSE_BRIDGE) int node_is_me(const node_t *node); int node_exit_policy_rejects_all(const node_t *node); +int node_exit_policy_is_exact(const node_t *node, sa_family_t family); smartlist_t *node_get_all_orports(const node_t *node); int node_allows_single_hop_exits(const node_t *node); const char *node_get_nickname(const node_t *node); diff --git a/src/or/or.h b/src/or/or.h index c7d259853..c893fba39 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3059,6 +3059,10 @@ typedef struct origin_circuit_t { * ISO_STREAM. */ uint64_t associated_isolated_stream_global_id; /**@}*/ + /** A list of addr_policy_t for this circuit in particular. Used by + * adjust_exit_policy_from_exitpolicy_failure. + */ + smartlist_t *prepend_policy; } origin_circuit_t; struct onion_queue_t; diff --git a/src/or/policies.c b/src/or/policies.c index 9696b8123..be4da5506 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -837,6 +837,24 @@ append_exit_policy_string(smartlist_t **policy, const char *more) } } +/** Add "reject addr:*" to dest, creating the list as needed. */ +void +addr_policy_append_reject_addr(smartlist_t **dest, const tor_addr_t *addr) +{ + addr_policy_t p, *add; + memset(&p, 0, sizeof(p)); + p.policy_type = ADDR_POLICY_REJECT; + p.maskbits = tor_addr_family(addr) == AF_INET6 ? 128 : 32; + tor_addr_copy(&p.addr, addr); + p.prt_min = 1; + p.prt_max = 65535; + + add = addr_policy_get_canonical_entry(&p); + if (!*dest) + *dest = smartlist_new(); + smartlist_add(*dest, add); +} + /** Detect and excise "dead code" from the policy *dest. */ static void exit_policy_remove_redundancies(smartlist_t *dest) diff --git a/src/or/policies.h b/src/or/policies.h index da375c442..c0e7a9efc 100644 --- a/src/or/policies.h +++ b/src/or/policies.h @@ -47,6 +47,8 @@ int policies_parse_exit_policy(config_line_t *cfg, smartlist_t **dest, int rejectprivate, const char *local_address, int add_default_policy); void policies_exit_policy_append_reject_star(smartlist_t **dest); +void addr_policy_append_reject_addr(smartlist_t **dest, + const tor_addr_t *addr); void policies_set_node_exitpolicy_to_reject_all(node_t *exitrouter); int exit_policy_is_general_exit(smartlist_t *policy); int policy_is_reject_star(const smartlist_t *policy, sa_family_t family); diff --git a/src/or/relay.c b/src/or/relay.c index 9ff9e1e1f..a4f402de4 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -53,6 +53,10 @@ static int circuit_resume_edge_reading_helper(edge_connection_t *conn, static int circuit_consider_stop_edge_reading(circuit_t *circ, crypt_path_t *layer_hint); static int circuit_queue_streams_are_blocked(circuit_t *circ); +static void adjust_exit_policy_from_exitpolicy_failure(origin_circuit_t *circ, + entry_connection_t *conn, + node_t *node, + const tor_addr_t *addr); /** Stop reading on edge connections when we have this many cells * waiting on the appropriate queue. */ @@ -710,7 +714,6 @@ connection_ap_process_end_not_open( relay_header_t *rh, cell_t *cell, origin_circuit_t *circ, entry_connection_t *conn, crypt_path_t *layer_hint) { - struct in_addr in; node_t *exitrouter; int reason = *(cell->payload+RELAY_HEADER_SIZE); int control_reason; @@ -753,10 +756,10 @@ connection_ap_process_end_not_open( stream_end_reason_to_string(reason)); exitrouter = node_get_mutable_by_id(chosen_exit_digest); switch (reason) { - case END_STREAM_REASON_EXITPOLICY: + case END_STREAM_REASON_EXITPOLICY: { + tor_addr_t addr; + tor_addr_make_unspec(&addr); if (rh->length >= 5) { - tor_addr_t addr; - int ttl = -1; tor_addr_make_unspec(&addr); if (rh->length == 5 || rh->length == 9) { @@ -808,16 +811,11 @@ connection_ap_process_end_not_open( } } /* check if he *ought* to have allowed it */ - if (exitrouter && - (rh->length < 5 || - (tor_inet_aton(conn->socks_request->address, &in) && - !conn->chosen_exit_name))) { - log_info(LD_APP, - "Exitrouter %s seems to be more restrictive than its exit " - "policy. Not using this router as exit for now.", - node_describe(exitrouter)); - policies_set_node_exitpolicy_to_reject_all(exitrouter); - } + + adjust_exit_policy_from_exitpolicy_failure(circ, + conn, + exitrouter, + &addr); if (conn->chosen_exit_optional || conn->chosen_exit_retries) { @@ -837,6 +835,7 @@ connection_ap_process_end_not_open( return 0; /* else, conn will get closed below */ break; + } case END_STREAM_REASON_CONNECTREFUSED: if (!conn->chosen_exit_optional) break; /* break means it'll close, below */ @@ -901,6 +900,47 @@ connection_ap_process_end_not_open( return 0; } +/** Called when we have gotten an END_REASON_EXITPOLICY failure on circ + * for conn, while attempting to connect via node. If the node + * told us which address it rejected, then addr is that address; + * otherwise it is AF_UNSPEC. + * + * If we are sure the node should have allowed this address, mark the node as + * having a reject *:* exit policy. Otherwise, mark the circuit as unusable + * for this particular address. + **/ +static void +adjust_exit_policy_from_exitpolicy_failure(origin_circuit_t *circ, + entry_connection_t *conn, + node_t *node, + const tor_addr_t *addr) +{ + int make_reject_all = 0; + const sa_family_t family = tor_addr_family(addr); + + if (node) { + tor_addr_t tmp; + int asked_for_family = tor_addr_parse(&tmp, conn->socks_request->address); + if (family == AF_UNSPEC) { + make_reject_all = 1; + } else if (node_exit_policy_is_exact(node, family) && + asked_for_family != -1 && !conn->chosen_exit_name) { + make_reject_all = 1; + } + + if (make_reject_all) { + log_info(LD_APP, + "Exitrouter %s seems to be more restrictive than its exit " + "policy. Not using this router as exit for now.", + node_describe(node)); + policies_set_node_exitpolicy_to_reject_all(node); + } + } + + if (family != AF_UNSPEC) + addr_policy_append_reject_addr(&circ->prepend_policy, addr); +} + /** Helper: change the socks_request->address field on conn to the * dotted-quad representation of new_addr, * and send an appropriate REMAP event. */ From 16f2e4aa8ce76387c19687dd0c78c97929a852d6 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 12 Mar 2013 17:36:09 -0400 Subject: [PATCH 35/99] Don't warn about not sending a socks reply if we get a write error If we get a write error on a SOCKS connection, we can't send a SOCKS reply, now can we? This bug has been here since 36baf7219, where we added the "hey, I'm closing an AP connection but I haven't finished the socks handshake!" message. It's bug 8427. --- changes/bug8427 | 5 +++++ src/or/connection.c | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 changes/bug8427 diff --git a/changes/bug8427 b/changes/bug8427 new file mode 100644 index 000000000..22b003fc3 --- /dev/null +++ b/changes/bug8427 @@ -0,0 +1,5 @@ + o Minor bugfixes: + - If we encounter a write failure on a SOCKS connection before we + finish our SOCKS handshake, don't warn that we closed the + connection before we could send a SOCKS reply. Fixes bug 8427; + bugfix on 0.1.0.1-rc. diff --git a/src/or/connection.c b/src/or/connection.c index eac9c4f32..75c165620 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -3286,6 +3286,10 @@ connection_handle_write_impl(connection_t *conn, int force) if (result < 0) { if (CONN_IS_EDGE(conn)) connection_edge_end_errno(TO_EDGE_CONN(conn)); + if (conn->type == CONN_TYPE_AP) { + /* writing failed; we couldn't send a SOCKS reply if we wanted to */ + TO_ENTRY_CONN(conn)->socks_request->has_finished = 1; + } connection_close_immediate(conn); /* Don't flush; connection is dead. */ connection_mark_for_close(conn); From 7543fb61e34e9235c6c330270d0c370c64c3322a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 13 Mar 2013 09:11:31 -0400 Subject: [PATCH 36/99] Simplify the logic of circuit_build_times_get_initial_timeout. --- src/or/circuitbuild.c | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 24362460c..fb8240b94 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -540,23 +540,16 @@ circuit_build_times_get_initial_timeout(void) * Check if we have LearnCircuitBuildTimeout, and if we don't, * always use CircuitBuildTimeout, no questions asked. */ - /*XXXX025 this logic could be cleaned up a lot. */ - if (get_options()->LearnCircuitBuildTimeout) { - if (!unit_tests && get_options()->CircuitBuildTimeout) { - timeout = get_options()->CircuitBuildTimeout*1000; - if (timeout < circuit_build_times_min_timeout()) { - log_warn(LD_CIRC, "Config CircuitBuildTimeout too low. Setting to %ds", - circuit_build_times_min_timeout()/1000); - timeout = circuit_build_times_min_timeout(); - } - } else { - timeout = circuit_build_times_initial_timeout(); + if (!unit_tests && get_options()->CircuitBuildTimeout) { + timeout = get_options()->CircuitBuildTimeout*1000; + if (get_options()->LearnCircuitBuildTimeout && + timeout < circuit_build_times_min_timeout()) { + log_warn(LD_CIRC, "Config CircuitBuildTimeout too low. Setting to %ds", + circuit_build_times_min_timeout()/1000); + timeout = circuit_build_times_min_timeout(); } } else { - if (get_options()->CircuitBuildTimeout > 0) - timeout = get_options()->CircuitBuildTimeout*1000; - else - timeout = circuit_build_times_initial_timeout(); + timeout = circuit_build_times_initial_timeout(); } return timeout; From b9a8f8c17ce11dd867e0afec7cbb65c55a3d7e8c Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 13 Mar 2013 09:17:43 -0400 Subject: [PATCH 37/99] Fix the warning about LearnCircuitBuildTimeout && !CircuitBuildTimeout This is for bug 6304. Add a changes file too --- changes/bug6304 | 4 ++++ src/or/config.c | 12 ++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 changes/bug6304 diff --git a/changes/bug6304 b/changes/bug6304 new file mode 100644 index 000000000..445560a8e --- /dev/null +++ b/changes/bug6304 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Behave correctly when the user disables LearnCircuitBuildTimeout + but doesn't tell us what they would like the timeout to be. Fixes + bug 6304; bugfix on 0.2.2.14-alpha. diff --git a/src/or/config.c b/src/or/config.c index 90a5dfbda..b04a8745f 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3761,15 +3761,19 @@ options_validate(or_options_t *old_options, or_options_t *options, options->LearnCircuitBuildTimeout = 0; } - if (!(options->LearnCircuitBuildTimeout) && - options->CircuitBuildTimeout < RECOMMENDED_MIN_CIRCUIT_BUILD_TIMEOUT) { + if (!options->LearnCircuitBuildTimeout && options->CircuitBuildTimeout && + options->CircuitBuildTimeout < RECOMMENDED_MIN_CIRCUIT_BUILD_TIMEOUT) { log_warn(LD_CONFIG, - "CircuitBuildTimeout is shorter (%d seconds) than recommended " - "(%d seconds), and LearnCircuitBuildTimeout is disabled. " + "CircuitBuildTimeout is shorter (%d seconds) than the recommended " + "minimum (%d seconds), and LearnCircuitBuildTimeout is disabled. " "If tor isn't working, raise this value or enable " "LearnCircuitBuildTimeout.", options->CircuitBuildTimeout, RECOMMENDED_MIN_CIRCUIT_BUILD_TIMEOUT ); + } else if (!options->LearnCircuitBuildTimeout && + !options->CircuitBuildTimeout) { + log_notice(LD_CONFIG, "You disabled LearnCircuitBuildTimeout, but didn't " + "a CircuitBuildTimeout. I'll pick a plausible default."); } if (options->MaxCircuitDirtiness < MIN_MAX_CIRCUIT_DIRTINESS) { From adfc3de83308982f91c88e1e6c68dc37d2467746 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 13 Mar 2013 10:42:58 -0400 Subject: [PATCH 38/99] Log fname:lineno in log messages for #7164 This should help us track down #7164 at last. --- changes/bug7164_diagnostic | 4 ++++ src/or/microdesc.c | 20 +++++++++++--------- src/or/microdesc.h | 4 +++- 3 files changed, 18 insertions(+), 10 deletions(-) create mode 100644 changes/bug7164_diagnostic diff --git a/changes/bug7164_diagnostic b/changes/bug7164_diagnostic new file mode 100644 index 000000000..8bedfc4bd --- /dev/null +++ b/changes/bug7164_diagnostic @@ -0,0 +1,4 @@ + o Minor features (bug diagnostic): + - If we fail to free a microdescriptor because of bug #7164, log + the filename and line number from which we tried to free it. + This should help us finally fix #7164. diff --git a/src/or/microdesc.c b/src/or/microdesc.c index ac48930fa..e835f9842 100644 --- a/src/or/microdesc.c +++ b/src/or/microdesc.c @@ -532,7 +532,7 @@ microdesc_check_counts(void) /** Deallocate a single microdescriptor. Note: the microdescriptor MUST have * previously been removed from the cache if it had ever been inserted. */ void -microdesc_free(microdesc_t *md) +microdesc_free_(microdesc_t *md, const char *fname, int lineno) { if (!md) return; @@ -543,12 +543,12 @@ microdesc_free(microdesc_t *md) microdesc_cache_t *cache = get_microdesc_cache(); microdesc_t *md2 = HT_FIND(microdesc_map, &cache->map, md); if (md2 == md) { - log_warn(LD_BUG, "microdesc_free() called, but md was still in " - "microdesc_map"); + log_warn(LD_BUG, "microdesc_free() called from %s:%d, but md was still " + "in microdesc_map", fname, lineno); HT_REMOVE(microdesc_map, &cache->map, md); } else { - log_warn(LD_BUG, "microdesc_free() called with held_in_map set, but " - "microdesc was not in the map."); + log_warn(LD_BUG, "microdesc_free() called from %s:%d with held_in_map " + "set, but microdesc was not in the map.", fname, lineno); } tor_fragile_assert(); } @@ -562,11 +562,13 @@ microdesc_free(microdesc_t *md) } }); if (found) { - log_warn(LD_BUG, "microdesc_free() called, but md was still referenced " - "%d node(s); held_by_nodes == %u", found, md->held_by_nodes); + log_warn(LD_BUG, "microdesc_free() called from %s:%d, but md was still " + "referenced %d node(s); held_by_nodes == %u", + fname, lineno, found, md->held_by_nodes); } else { - log_warn(LD_BUG, "microdesc_free() called with held_by_nodes set to %u, " - "but md was not referenced by any nodes", md->held_by_nodes); + log_warn(LD_BUG, "microdesc_free() called from %s:%d with held_by_nodes " + "set to %u, but md was not referenced by any nodes", + fname, lineno, md->held_by_nodes); } tor_fragile_assert(); } diff --git a/src/or/microdesc.h b/src/or/microdesc.h index 4e58aa33f..7adb8c68a 100644 --- a/src/or/microdesc.h +++ b/src/or/microdesc.h @@ -39,7 +39,9 @@ smartlist_t *microdesc_list_missing_digest256(networkstatus_t *ns, int downloadable_only, digestmap_t *skip); -void microdesc_free(microdesc_t *md); +void microdesc_free_(microdesc_t *md, const char *fname, int line); +#define microdesc_free(md) \ + microdesc_free_((md), __FILE__, __LINE__) void microdesc_free_all(void); void update_microdesc_downloads(time_t now); From 1b28f366b8796a9e6d27af74146dbc7836100263 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 14 Mar 2013 11:19:08 -0400 Subject: [PATCH 39/99] Apply ClientDNSRejectInternalAddresses to IPv6 in RESOLVED cells Fixes bug 8475; bugfix on 0.2.0.7-alpha. --- changes/bug8475 | 4 ++++ src/or/relay.c | 13 ++++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 changes/bug8475 diff --git a/changes/bug8475 b/changes/bug8475 new file mode 100644 index 000000000..eb8debedb --- /dev/null +++ b/changes/bug8475 @@ -0,0 +1,4 @@ + o Major bugfixes: + - If configured via ClientDNSRejectInternalAddresses not to report + DNS queries which have resolved to internal addresses, apply that + rule to IPv6 as well. Fixes bug 8475; bugfix on 0.2.0.7-alpha. diff --git a/src/or/relay.c b/src/or/relay.c index a17c33331..e69eade97 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -969,12 +969,15 @@ connection_edge_process_relay_cell_not_open( 2+answer_len)); else ttl = -1; - if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) { - uint32_t addr = ntohl(get_uint32(cell->payload+RELAY_HEADER_SIZE+2)); - if (get_options()->ClientDNSRejectInternalAddresses && - is_internal_IP(addr, 0)) { + if (answer_type == RESOLVED_TYPE_IPV4 || + answer_type == RESOLVED_TYPE_IPV6) { + tor_addr_t addr; + if (decode_address_from_payload(&addr, cell->payload+RELAY_HEADER_SIZE, + rh->length) && + tor_addr_is_internal(&addr, 0) && + get_options()->ClientDNSRejectInternalAddresses) { log_info(LD_APP,"Got a resolve with answer %s. Rejecting.", - fmt_addr32(addr)); + fmt_addr(&addr)); connection_ap_handshake_socks_resolved(entry_conn, RESOLVED_TYPE_ERROR_TRANSIENT, 0, NULL, 0, TIME_MAX); From 653b09e1ec27bc2c8676c3c1ec40264972540637 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 14 Mar 2013 12:06:03 -0400 Subject: [PATCH 40/99] Make circuit_purpose_to_string handle CIRCUIT_PURPOSE_PATH_BIAS_TESTING --- changes/bug8477-easypart | 3 +++ src/or/circuitlist.c | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 changes/bug8477-easypart diff --git a/changes/bug8477-easypart b/changes/bug8477-easypart new file mode 100644 index 000000000..0f8f1031c --- /dev/null +++ b/changes/bug8477-easypart @@ -0,0 +1,3 @@ + o Minor bugfixes: + - Log the purpose of a path-bias testing circuit correctly. + Improves a log message from bug 8477; bugfix on 0.2.4.8-alpha. diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 17e18c760..d4c07fc82 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -531,6 +531,9 @@ circuit_purpose_to_string(uint8_t purpose) case CIRCUIT_PURPOSE_CONTROLLER: return "Circuit made by controller"; + case CIRCUIT_PURPOSE_PATH_BIAS_TESTING: + return "Path-bias testing circuit"; + default: tor_snprintf(buf, sizeof(buf), "UNKNOWN_%d", (int)purpose); return buf; From 10fb3398087133add9aff93740aff8f818edf242 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 Mar 2013 10:48:33 -0400 Subject: [PATCH 41/99] Be explicit that we want not only nacl but nacl-with-a-fast-curve25519 Resolves the user experience part of #8014. --- changes/bug8014 | 5 +++++ configure.ac | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 changes/bug8014 diff --git a/changes/bug8014 b/changes/bug8014 new file mode 100644 index 000000000..c09a86098 --- /dev/null +++ b/changes/bug8014 @@ -0,0 +1,5 @@ + o Minor usability improvements (build): + - Clarify that when autconf is checking for nacl, it is checking + specifically for nacl with a fast curve25519 implementation. + Fixes bug 8014. + diff --git a/configure.ac b/configure.ac index 4bc0db363..d58898416 100644 --- a/configure.ac +++ b/configure.ac @@ -693,7 +693,7 @@ if test x$enable_curve25519 != xno; then AC_CHECK_HEADERS([crypto_scalarmult_curve25519.h \ nacl/crypto_scalarmult_curve25519.h]) - AC_CACHE_CHECK([whether we can use curve25519 from nacl], + AC_CACHE_CHECK([for nacl compiled with a fast curve25519 implementation], tor_cv_can_use_curve25519_nacl, [tor_saved_LIBS="$LIBS" LIBS="$LIBS -lnacl" @@ -705,7 +705,7 @@ if test x$enable_curve25519 != xno; then #include #endif #ifdef crypto_scalarmult_curve25519_ref_BYTES - #error Hey, this is the reference implementation! + #error Hey, this is the reference implementation! That's not fast. #endif ], [ unsigned char *a, *b, *c; crypto_scalarmult_curve25519(a,b,c); From aa051b7573d4b7ab9867560b190808d5e67a34c7 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 Mar 2013 11:17:08 -0400 Subject: [PATCH 42/99] Improve asciidoc-helper's suggestion of what to install Fixes bug #7766. Patch by David Fifield, revised by Peter Palfrader. --- doc/asciidoc-helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/asciidoc-helper.sh b/doc/asciidoc-helper.sh index dd420f7c4..c06b57026 100755 --- a/doc/asciidoc-helper.sh +++ b/doc/asciidoc-helper.sh @@ -52,8 +52,8 @@ elif [ "$1" = "man" ]; then You need a working asciidoc installed to be able to build the manpage. a2x is installed, but for some reason it isn't working. Sometimes -This happens because required docbook support files are missing. -Please install docbook-xsl, docbook-xml, and libxml2-utils (Debian) or +this happens because required docbook support files are missing. +Please install docbook-xsl, docbook-xml, and xmlto (Debian) or similar. If you use homebrew on Mac OS X, install the docbook formula and add "export XML_CATALOG_FILES=/usr/local/etc/xml/catalog" to your .bashrc From a0b92cd8008982a71b99e2938df19c8bc40c5436 Mon Sep 17 00:00:00 2001 From: David Fifield Date: Thu, 20 Dec 2012 12:40:50 -0800 Subject: [PATCH 43/99] Fix brackets in tor-fw-helper help output. Change nesting from [(]) to [()]. Formerly it made it look to me at first glance that "internal port" was optional. [Trivial change; fixes #7767 --nickm] --- src/tools/tor-fw-helper/tor-fw-helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/tor-fw-helper/tor-fw-helper.c b/src/tools/tor-fw-helper/tor-fw-helper.c index d92445e08..adeb63b73 100644 --- a/src/tools/tor-fw-helper/tor-fw-helper.c +++ b/src/tools/tor-fw-helper/tor-fw-helper.c @@ -100,7 +100,7 @@ usage(void) " [-T|--Test]\n" " [-v|--verbose]\n" " [-g|--fetch-public-ip]\n" - " [-p|--forward-port ([]:])\n"); + " [-p|--forward-port ([]:)]\n"); } /** Log commandline options to a hardcoded file tor-fw-helper.log in the From 18da1e0cf268bb56adc1a45fa4877e6a1bd2b470 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 Mar 2013 11:25:45 -0400 Subject: [PATCH 44/99] Remove incentives.txt from tor git; putting it into torspec. --- doc/contrib/incentives.txt | 479 ------------------------------------- 1 file changed, 479 deletions(-) delete mode 100644 doc/contrib/incentives.txt diff --git a/doc/contrib/incentives.txt b/doc/contrib/incentives.txt deleted file mode 100644 index 850a0d01e..000000000 --- a/doc/contrib/incentives.txt +++ /dev/null @@ -1,479 +0,0 @@ - - Tor Incentives Design Brainstorms - -1. Goals: what do we want to achieve with an incentive scheme? - -1.1. Encourage users to provide good relay service (throughput, latency). -1.2. Encourage users to allow traffic to exit the Tor network from - their node. - -2. Approaches to learning who should get priority. - -2.1. "Hard" or quantitative reputation tracking. - - In this design, we track the number of bytes and throughput in and - out of nodes we interact with. When a node asks to send or receive - bytes, we provide service proportional to our current record of the - node's value. One approach is to let each circuit be either a normal - circuit or a premium circuit, and nodes can "spend" their value by - sending and receiving bytes on premium circuits: see section 4.1 for - details of this design. Another approach (section 4.2) would treat - all traffic from the node with the same priority class, and so nodes - that provide resources will get and provide better service on average. - - This approach could be complemented with an anonymous e-cash - implementation to let people spend reputations gained from one context - in another context. - -2.2. "Soft" or qualitative reputation tracking. - - Rather than accounting for every byte (if I owe you a byte, I don't - owe it anymore once you've spent it), instead I keep a general opinion - about each server: my opinion increases when they do good work for me, - and it decays with time, but it does not decrease as they send traffic. - Therefore we reward servers who provide value to the system without - nickle and diming them at each step. We also let them benefit from - relaying traffic for others without having to "reserve" some of the - payment for their own use. See section 4.3 for a possible design. - -2.3. Centralized opinions from the reputation servers. - - The above approaches are complex and we don't have all the answers - for them yet. A simpler approach is just to let some central set - of trusted servers (say, the Tor directory servers) measure whether - people are contributing to the network, and provide a signal about - which servers should be rewarded. They can even do the measurements - via Tor so servers can't easily perform only when they're being - tested. See section 4.4. - -2.4. Reputation servers that aggregate opinions. - - The option above has the directory servers doing all of the - measurements. This doesn't scale. We can set it up so we have "deputy - testers" -- trusted other nodes that do performance testing and report - their results. - - If we want to be really adventurous, we could even - accept claims from every Tor user and build a complex weighting / - reputation system to decide which claims are "probably" right. - One possible way to implement the latter is something similar to - EigenTrust [http://www.stanford.edu/~sdkamvar/papers/eigentrust.pdf], - where the opinion of nodes with high reputation more is weighted - higher. - -3. Related issues we need to keep in mind. - -3.1. Relay and exit configuration needs to be easy and usable. - - Implicit in all of the above designs is the need to make it easy to - run a Tor server out of the box. We need to make it stable on all - common platforms (including XP), it needs to detect its available - bandwidth and not overreach that, and it needs to help the operator - through opening up ports on his firewall. Then we need a slick GUI - that lets people click a button or two rather than editing text files. - - Once we've done all this, we'll hit our first big question: is - most of the barrier to growth caused by the unusability of the current - software? If so, are the rest of these incentive schemes superfluous? - -3.2. The network effect: how many nodes will you interact with? - - One of the concerns with pairwise reputation systems is that as the - network gets thousands of servers, the chance that you're going to - interact with a given server decreases. So if 90% of interactions - don't have any prior information, the "local" incentive schemes above - are going to degrade. This doesn't mean they're pointless -- it just - means we need to be aware that this is a limitation, and plan in the - background for what step to take next. (It seems that e-cash solutions - would scale better, though they have issues of their own.) - -3.3. Guard nodes - - As of Tor 0.1.1.11, Tor users pick from a small set of semi-permanent - "guard nodes" for their first hop of each circuit. This seems like it - would have a big impact on pairwise reputation systems since you - will only be cashing in on your reputation to a few people, and it is - unlikely that a given pair of nodes will use each other as guard nodes. - - What does this imply? For one, it means that we don't care at all - about the opinions of most of the servers out there -- we should - focus on keeping our guard nodes happy with us. - - One conclusion from that is that our design needs to judge performance - not just through direct interaction (beginning of the circuit) but - also through indirect interaction (middle of the circuit). That way - you can never be sure when your guards are measuring you. - - Both 3.2 and 3.3 may be solved by having a global notion of reputation, - as in 2.3 and 2.4. However, computing the global reputation from local - views could be expensive (O(n^2)) when the network is really large. - -3.4. Restricted topology: benefits and roadmap. - - As the Tor network continues to grow, we will need to make design - changes to the network topology so that each node does not need - to maintain connections to an unbounded number of other nodes. For - anonymity's sake, we may partition the network such that all - the nodes have the same belief about the divisions and each node is - in only one partition. (The alternative is that every user fetches - his own random subset of the overall node list -- this is bad because - of intersection attacks.) - - Therefore the "network horizon" for each user will stay bounded, - which helps against the above issues in 3.2 and 3.3. - - It could be that the core of long-lived servers will all get to know - each other, and so the critical point that decides whether you get - good service is whether the core likes you. Or perhaps it will turn - out to work some other way. - - A special case here is the social network, where the network isn't - partitioned randomly but instead based on some external properties. - Social network topologies can provide incentives in other ways, because - people may be more inclined to help out their friends, and more willing - to relay traffic if most of the traffic they are relaying comes - from their friends. It also opens the door for out-of-band incentive - schemes because of the out-of-band links in the graph. - -3.5. Profit-maximizing vs. Altruism. - - There are some interesting game theory questions here. - - First, in a volunteer culture, success is measured in public utility - or in public esteem. If we add a reward mechanism, there's a risk that - reward-maximizing behavior will surpass utility- or esteem-maximizing - behavior. - - Specifically, if most of our servers right now are relaying traffic - for the good of the community, we may actually *lose* those volunteers - if we turn the act of relaying traffic into a selfish act. - - I am not too worried about this issue for now, since we're aiming - for an incentive scheme so effective that it produces tens of - thousands of new servers. - -3.6. What part of the node's performance do you measure? - - We keep referring to having a node measure how well the other nodes - receive bytes. But don't leeching clients receive bytes just as well - as servers? - - Further, many transactions in Tor involve fetching lots of - bytes and not sending very many. So it seems that we want to turn - things around: we need to measure how quickly a node is _sending_ - us bytes, and then only send it bytes in proportion to that. - - However, a sneaky user could simply connect to a node and send some - traffic through it, and voila, he has performed for the network. This - is no good. The first fix is that we only count if you're receiving - bytes "backwards" in the circuit. Now the sneaky user needs to - construct a circuit such that his node appears later in the circuit, - and then send some bytes back quickly. - - Maybe that complexity is sufficient to deter most lazy users. Or - maybe it's an argument in favor of a more penny-counting reputation - approach. - - Addendum: I was more thinking of measuring based on who is the service - provider and service receiver for the circuit. Say Alice builds a - circuit to Bob. Then Bob is providing service to Alice, since he - otherwise wouldn't need to spend his bandwidth. So traffic in either - direction should be charged to Alice. Of course, the same attack would - work, namely, Bob could cheat by sending bytes back quickly. So someone - close to the origin needs to detect this and close the circuit, if - necessary. -JN - -3.7. What is the appropriate resource balance for servers vs. clients? - - If we build a good incentive system, we'll still need to tune it - to provide the right bandwidth allocation -- if we reserve too much - bandwidth for fast servers, then we're wasting some potential, but - if we reserve too little, then fewer people will opt to become servers. - In fact, finding an optimum balance is especially hard because it's - a moving target: the better our incentive mechanism (and the lower - the barrier to setup), the more servers there will be. How do we find - the right balance? - - One answer is that it doesn't have to be perfect: we can err on the - side of providing extra resources to servers. Then we will achieve our - desired goal -- when people complain about speed, we can tell them to - run a server, and they will in fact get better performance. - -3.8. Anonymity attack: fast connections probably come from good servers. - - If only fast servers can consistently get good performance in the - network, they will stand out. "Oh, that connection probably came from - one of the top ten servers in the network." Intersection attacks over - time can improve the certainty of the attack. - - I'm not too worried about this. First, in periods of low activity, - many different people might be getting good performance. This dirties - the intersection attack. Second, with many of these schemes, we will - still be uncertain whether the fast node originated the traffic, or - was the entry node for some other lucky user -- and we already accept - this level of attack in other cases such as the Murdoch-Danezis attack - [http://freehaven.net/anonbib/#torta05]. - -3.9. How do we allocate bandwidth over the course of a second? - - This may be a simple matter of engineering, but it still needs to be - addressed. Our current token bucket design refills each bucket once a - second. If we have N tokens in our bucket, and we don't know ahead of - time how many connections are going to want to send out how many bytes, - how do we balance providing quick service to the traffic that is - already here compared to providing service to potential high-importance - future traffic? - - If we have only two classes of service, here is a simple design: - At each point, when we are 1/t through the second, the total number - of non-priority bytes we are willing to send out is N/t. Thus if N - priority bytes are waiting at the beginning of the second, we drain - our whole bucket then, and otherwise we provide some delayed service - to the non-priority bytes. - - Does this design expand to cover the case of three priority classes? - Ideally we'd give each remote server its own priority number. Or - hopefully there's an easy design in the literature to point to -- - this is clearly not my field. - - Is our current flow control mechanism (each circuit and each stream - start out with a certain window, and once they've exhausted it they - need to receive an ack before they can send more) going to have - problems with this new design now that we'll be queueing more bytes - for less preferred nodes? If it turns out we do, the first fix is - to have the windows start out at zero rather than start out full -- - it will slow down the startup phase but protect us better. - - While we have outgoing cells queued for a given server, we have the - option of reordering them based on the priority of the previous hop. - Is this going to turn out to be useful? If we're the exit node (that - is, there is no previous hop) what priority do those cells get? - - Should we do this prioritizing just for sending out bytes (as I've - described here) or would it help to do it also for receiving bytes? - See next section. - -3.10. Different-priority cells arriving on the same TCP connection. - - In some of the proposed designs, servers want to give specific circuits - priority rather than having all circuits from them get the same class - of service. - - Since Tor uses TCP's flow control for rate limiting, this constraints - our design choices -- it is easy to give different TCP connections - different priorities, but it is hard to give different cells on the - same connection priority, because you have to read them to know what - priority they're supposed to get. - - There are several possible solutions though. First is that we rely on - the sender to reorder them so the highest priority cells (circuits) are - more often first. Second is that if we open two TCP connections -- one - for the high-priority cells, and one for the low-priority cells. (But - this prevents us from changing the priority of a circuit because - we would need to migrate it from one connection to the other.) A - third approach is to remember which connections have recently sent - us high-priority cells, and preferentially read from those connections. - - Hopefully we can get away with not solving this section at all. But if - necessary, we can consult Ed Knightly, a Professor at Rice - [http://www.ece.rice.edu/~knightly/], for his extensive experience on - networking QoS. - -3.11. Global reputation system: Congestion on high reputation servers? - - If the notion of reputation is global (as in 2.3 or 2.4), circuits that - go through successive high reputation servers would be the fastest and - most reliable. This would incentivize everyone, regardless of their own - reputation, to choose only the highest reputation servers in its - circuits, causing an over-congestion on those servers. - - One could argue, though, that once those servers are over-congested, - their bandwidth per circuit drops, which would in turn lower their - reputation in the future. A question is whether this would overall - stabilize. - - Another possible way is to keep a cap on reputation. In this way, a - fraction of servers would have the same high reputation, thus balancing - such load. - -3.12. Another anonymity attack: learning from service levels. - - If reputation is local, it may be possible for an evil node to learn - the identity of the origin through provision of differential service. - For instance, the evil node provides crappy bandwidth to everyone, - until it finds a circuit that it wants to trace the origin, then it - provides good bandwidth. Now, as only those directly or indirectly - observing this circuit would like the evil node, it can test each node - by building a circuit via each node to another evil node. If the - bandwidth is high, it is (somewhat) likely that the node was a part of - the circuit. - - This problem does not exist if the reputation is global and nodes only - follow the global reputation, i.e., completely ignore their own view. - -3.13. DoS through high priority traffic. - - Assume there is an evil node with high reputation (or high value on - Alice) and this evil node wants to deny the service to Alice. What it - needs to do is to send a lot of traffic to Alice. To Alice, all traffic - from this evil node is of high priority. If the choice of circuits are - too based toward high priority circuits, Alice would spend most of her - available bandwidth on this circuit, thus providing poor bandwidth to - everyone else. Everyone else would start to dislike Alice, making it - even harder for her to forward other nodes' traffic. This could cause - Alice to have a low reputation, and the only high bandwidth circuit - Alice could use would be via the evil node. - -3.14. If you run a fast server, can you run your client elsewhere? - - A lot of people want to run a fast server at a colocation facility, - and then reap the rewards using their cablemodem or DSL Tor client. - - If we use anonymous micropayments, where reputation can literally - be transferred, this is trivial. - - If we pick a design where servers accrue reputation and can only - use it themselves, though, the clients can configure the servers as - their entry nodes and "inherit" their reputation. In this approach - we would let servers configure a set of IP addresses or keys that get - "like local" service. - -4. Sample designs. - -4.1. Two classes of service for circuits. - - Whenever a circuit is built, it is specified by the origin which class, - either "premium" or "normal", this circuit belongs. A premium circuit - gets preferred treatment at each node. A node "spends" its value, which - it earned a priori by providing service, to the next node by sending - and receiving bytes. Once a node has overspent its values, the circuit - cannot stay as premium. It either breaks or converts into a normal - circuit. Each node also reserves a small portion of bandwidth for - normal circuits to prevent starvation. - - Pro: Even if a node has no value to spend, it can still use normal - circuits. This allow casual user to use Tor without forcing them to run - a server. - - Pro: Nodes have incentive to forward traffic as quick and as much as - possible to accumulate value. - - Con: There is no proactive method for a node to rebalance its debt. It - has to wait until there happens to be a circuit in the opposite - direction. - - Con: A node needs to build circuits in such a way that each node in the - circuit has to have good values to the next node. This requires - non-local knowledge and makes circuits less reliable as the values are - used up in the circuit. - - Con: May discourage nodes to forward traffic in some circuits, as they - worry about spending more useful values to get less useful values in - return. - -4.2. Treat all the traffic from the node with the same service; - hard reputation system. - - This design is similar to 4.1, except that instead of having two - classes of circuits, there is only one. All the circuits are - prioritized based on the value of the interacting node. - - Pro: It is simpler to design and give priority based on connections, - not circuits. - - Con: A node only needs to keep a few guard nodes happy to forward their - traffic. - - Con: Same as in 4.1, may discourage nodes to forward traffic in some - circuits, as they worry about spending more useful values to get less - useful values in return. - -4.3. Treat all the traffic from the node with the same service; - soft reputation system. - - Rather than a guaranteed system with accounting (as 4.1 and 4.2), - we instead try for a best-effort system. All bytes are in the same - class of service. You keep track of other Tors by key, and give them - service proportional to the service they have given you. That is, in - the past when you have tried to push bytes through them, you track the - number of bytes and the average bandwidth, and use that to weight the - priority of their connections if they try to push bytes through you. - - Now you're going to get minimum service if you don't ever push bytes - for other people, and you get increasingly improved service the more - active you are. We should have memories fade over time (we'll have - to tune that, which could be quite hard). - - Pro: Sybil attacks are pointless because new identities get lowest - priority. - - Pro: Smoothly handles periods of both low and high network load. Rather - than keeping track of the ratio/difference between what he's done for - you and what you've done for him, simply keep track of what he's done - for you, and give him priority based on that. - - Based on 3.3 above, it seems we should reward all the nodes in our - path, not just the first one -- otherwise the node can provide good - service only to its guards. On the other hand, there might be a - second-order effect where you want nodes to like you so that *when* - your guards choose you for a circuit, they'll be able to get good - performance. This tradeoff needs more simulation/analysis. - - This approach focuses on incenting people to relay traffic, but it - doesn't do much for incenting them to allow exits. It may help in - one way through: if there are few exits, then they will attract a - lot of use, so lots of people will like them, so when they try to - use the network they will find their first hop to be particularly - pleasant. After that they're like the rest of the world though. (An - alternative would be to reward exit nodes with higher values. At the - extreme, we could even ask the directory servers to suggest the extra - values, based on the current availability of exit nodes.) - - Pro: this is a pretty easy design to add; and it can be phased in - incrementally simply by having new nodes behave differently. - -4.4. Centralized opinions from the reputation servers. - - Have a set of official measurers who spot-check servers from the - directory to see if they really do offer roughly the bandwidth - they advertise. Include these observations in the directory. (For - simplicity, the directory servers could be the measurers.) Then Tor - servers give priority to other servers. We'd like to weight the - priority by advertised bandwidth to encourage people to donate more, - but it seems hard to distinguish between a slow server and a busy - server. - - The spot-checking can be done anonymously to prevent selectively - performing only for the measurers, because hey, we have an anonymity - network. - - We could also reward exit nodes by giving them better priority, but - like above this only will affect their first hop. Another problem - is that it's darn hard to spot-check whether a server allows exits - to all the pieces of the Internet that it claims to. If necessary, - perhaps this can be solved by a distributed reporting mechanism, - where clients that can reach a site from one exit but not another - anonymously submit that site to the measurers, who verify. - - A last problem is that since directory servers will be doing their - tests directly (easy to detect) or indirectly (through other Tor - servers), then we know that we can get away with poor performance for - people that aren't listed in the directory. Maybe we can turn this - around and call it a feature though -- another reason to get listed - in the directory. - -5. Recommendations and next steps. - -5.1. Simulation. - - For simulation trace, we can use two: one is what we obtained from Tor - and one from existing web traces. - - We want to simulate all the four cases in 4.1-4. For 4.4, we may want - to look at two variations: (1) the directory servers check the - bandwidth themselves through Tor; (2) each node reports their perceived - values on other nodes, while the directory servers use EigenTrust to - compute global reputation and broadcast those. - -5.2. Deploying into existing Tor network. - From e4d2177d31225f5884dd94038b457dfd9954b11b Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 Mar 2013 12:11:38 -0400 Subject: [PATCH 45/99] Fix some basic socket issues with tor-fw-helper-natpmp on windows This isn't going to be the last of these issues, but we might as well take the fixes as we find them. Patch from Gisle Vanem, fixes bug 7280. --- changes/bug7280 | 4 ++++ src/tools/tor-fw-helper/tor-fw-helper-natpmp.c | 14 +++++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) create mode 100644 changes/bug7280 diff --git a/changes/bug7280 b/changes/bug7280 new file mode 100644 index 000000000..ef5d36a80 --- /dev/null +++ b/changes/bug7280 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Fix some bugs in tor-fw-helper-natpmp when trying to build and + run it on Windows. More bugs likely remain. Patch from Gisle Vanem. + Fixes bug 7280; bugfix on 0.2.3.1-alpha. diff --git a/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c b/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c index e288a1ecf..41eb9dcb7 100644 --- a/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c +++ b/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c @@ -93,16 +93,20 @@ wait_until_fd_readable(tor_socket_t fd, struct timeval *timeout) { int r; fd_set fds; + +#ifndef WIN32 if (fd >= FD_SETSIZE) { fprintf(stderr, "E: NAT-PMP FD_SETSIZE error %d\n", fd); return -1; } +#endif + FD_ZERO(&fds); FD_SET(fd, &fds); r = select(fd+1, &fds, NULL, NULL, timeout); if (r == -1) { fprintf(stderr, "V: select failed in wait_until_fd_readable: %s\n", - strerror(errno)); + tor_socket_strerror(tor_socket_errno(fd))); return -1; } /* XXXX we should really check to see whether fd was readable, or we timed @@ -140,12 +144,12 @@ tor_natpmp_add_tcp_mapping(uint16_t internal_port, uint16_t external_port, if (is_verbose) fprintf(stderr, "V: attempting to readnatpmpreponseorretry...\n"); r = readnatpmpresponseorretry(&(state->natpmp), &(state->response)); - sav_errno = errno; + sav_errno = tor_socket_errno(state->natpmp.s); if (r<0 && r!=NATPMP_TRYAGAIN) { fprintf(stderr, "E: readnatpmpresponseorretry failed %d\n", r); fprintf(stderr, "E: errno=%d '%s'\n", sav_errno, - strerror(sav_errno)); + tor_socket_strerror(sav_errno)); } } while (r == NATPMP_TRYAGAIN); @@ -198,7 +202,7 @@ tor_natpmp_fetch_public_ip(tor_fw_options_t *tor_fw_options, if (tor_fw_options->verbose) fprintf(stderr, "V: NAT-PMP attempting to read reponse...\n"); r = readnatpmpresponseorretry(&(state->natpmp), &(state->response)); - sav_errno = errno; + sav_errno = tor_socket_errno(state->natpmp.s); if (tor_fw_options->verbose) fprintf(stderr, "V: NAT-PMP readnatpmpresponseorretry returned" @@ -208,7 +212,7 @@ tor_natpmp_fetch_public_ip(tor_fw_options_t *tor_fw_options, fprintf(stderr, "E: NAT-PMP readnatpmpresponseorretry failed %d\n", r); fprintf(stderr, "E: NAT-PMP errno=%d '%s'\n", sav_errno, - strerror(sav_errno)); + tor_socket_strerror(sav_errno)); } } while (r == NATPMP_TRYAGAIN ); From 686aaa5c4c95ebd2c3ddfe46a237014e2813a9e7 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 Mar 2013 10:42:17 -0400 Subject: [PATCH 46/99] Upgrade the warn for EntryNodes without UseEntryGuards to an error fixes bug 8180 --- changes/bug8180 | 7 +++++++ src/or/config.c | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 changes/bug8180 diff --git a/changes/bug8180 b/changes/bug8180 new file mode 100644 index 000000000..39e6ce7f9 --- /dev/null +++ b/changes/bug8180 @@ -0,0 +1,7 @@ + o Minor bugfixes (security usability): + - Elevate the severity of the warning message when setting + EntryNodes but disabling UseGuardNodes to an error. The outcome + of letting Tor procede with those options enabled (which causes + EntryNodes to get ignored) is sufficiently different from what + was expected that it's best to just refuse to proceed. Fixes bug + 8180; bugfix on 0.2.3.11-alpha. diff --git a/src/or/config.c b/src/or/config.c index 90a5dfbda..aa34f87ce 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2001 Matej Pfajfar. + /* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2012, The Tor Project, Inc. */ @@ -3664,9 +3664,9 @@ options_validate(or_options_t *old_options, or_options_t *options, if (options->UseBridges && options->EntryNodes) REJECT("You cannot set both UseBridges and EntryNodes."); - if (options->EntryNodes && !options->UseEntryGuards) - log_warn(LD_CONFIG, "EntryNodes is set, but UseEntryGuards is disabled. " - "EntryNodes will be ignored."); + if (options->EntryNodes && !options->UseEntryGuards) { + REJECT("If EntryNodes is set, UseEntryGuards must be enabled."); + } options->_AllowInvalid = 0; if (options->AllowInvalidNodes) { From f93f7e331be94114d82c17108e741eb2482e6bda Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Mon, 18 Mar 2013 11:15:21 -0700 Subject: [PATCH 47/99] Ignore advertised bandwidths if we have enough measured bandwidths available --- changes/bug8435 | 4 ++ src/or/config.c | 1 + src/or/dirserv.c | 97 ++++++++++++++++++++++++++++++++++++++++++++---- src/or/or.h | 4 ++ 4 files changed, 99 insertions(+), 7 deletions(-) create mode 100644 changes/bug8435 diff --git a/changes/bug8435 b/changes/bug8435 new file mode 100644 index 000000000..da7ca7c1f --- /dev/null +++ b/changes/bug8435 @@ -0,0 +1,4 @@ + o Major bugfixes: + - When dirserv.c computes flags and thresholds, ignore advertised + bandwidths if we have more than a threshold number of routers with + measured bandwidths. diff --git a/src/or/config.c b/src/or/config.c index f88842624..f3e408318 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -299,6 +299,7 @@ static config_var_t option_vars_[] = { V(MaxClientCircuitsPending, UINT, "32"), OBSOLETE("MaxOnionsPending"), V(MaxOnionQueueDelay, MSEC_INTERVAL, "1750 msec"), + V(MinMeasuredBWsForAuthToIgnoreAdvertised, INT, "500"), OBSOLETE("MonthlyAccountingStart"), V(MyFamily, STRING, NULL), V(NewCircuitPeriod, INTERVAL, "30 seconds"), diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 37934a032..c769beda8 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -66,6 +66,9 @@ static cached_dir_t *the_directory = NULL; /** For authoritative directories: the current (v1) network status. */ static cached_dir_t the_runningrouters; +/** Total number of routers with measured bandwidth */ +static int routers_with_measured_bw = 0; + static void directory_remove_invalid(void); static cached_dir_t *dirserv_regenerate_directory(void); static char *format_versions_list(config_line_t *ln); @@ -86,6 +89,7 @@ static const signed_descriptor_t *get_signed_descriptor_by_fp( static was_router_added_t dirserv_add_extrainfo(extrainfo_t *ei, const char **msg); static uint32_t dirserv_get_bandwidth_for_router(const routerinfo_t *ri); +static uint32_t dirserv_get_credible_bandwidth(const routerinfo_t *ri); /************** Fingerprint handling code ************/ @@ -1877,12 +1881,18 @@ dirserv_thinks_router_is_hs_dir(const routerinfo_t *router, * include a router in our calculations, and return true iff we should. */ static int router_counts_toward_thresholds(const node_t *node, time_t now, - const digestmap_t *omit_as_sybil) + const digestmap_t *omit_as_sybil, + int require_mbw) { + /* Have measured bw? */ + int have_mbw = + dirserv_query_measured_bw_cache(node->ri->cache_info.identity_digest, + NULL, NULL); + return node->ri && router_is_active(node->ri, node, now) && !digestmap_get(omit_as_sybil, node->ri->cache_info.identity_digest) && - (dirserv_get_bandwidth_for_router(node->ri) >= - ABSOLUTE_MIN_BW_VALUE_TO_CONSIDER); + (dirserv_get_credible_bandwidth(node->ri) >= + ABSOLUTE_MIN_BW_VALUE_TO_CONSIDER) && (have_mbw || !require_mbw); } /** Look through the routerlist, the Mean Time Between Failure history, and @@ -1904,6 +1914,11 @@ dirserv_compute_performance_thresholds(routerlist_t *rl, time_t now = time(NULL); const or_options_t *options = get_options(); + /* Require mbw? */ + int require_mbw = + (routers_with_measured_bw > + options->MinMeasuredBWsForAuthToIgnoreAdvertised) ? 1 : 0; + /* initialize these all here, in case there are no routers */ stable_uptime = 0; stable_mtbf = 0; @@ -1936,7 +1951,8 @@ dirserv_compute_performance_thresholds(routerlist_t *rl, /* Now, fill in the arrays. */ SMARTLIST_FOREACH_BEGIN(nodelist_get_list(), node_t *, node) { - if (router_counts_toward_thresholds(node, now, omit_as_sybil)) { + if (router_counts_toward_thresholds(node, now, omit_as_sybil, + require_mbw)) { routerinfo_t *ri = node->ri; const char *id = ri->cache_info.identity_digest; uint32_t bw; @@ -1945,7 +1961,7 @@ dirserv_compute_performance_thresholds(routerlist_t *rl, uptimes[n_active] = (uint32_t)real_uptime(ri, now); mtbfs[n_active] = rep_hist_get_stability(id, now); tks [n_active] = rep_hist_get_weighted_time_known(id, now); - bandwidths[n_active] = bw = dirserv_get_bandwidth_for_router(ri); + bandwidths[n_active] = bw = dirserv_get_credible_bandwidth(ri); total_bandwidth += bw; if (node->is_exit && !node->is_bad_exit) { total_exit_bandwidth += bw; @@ -2001,7 +2017,8 @@ dirserv_compute_performance_thresholds(routerlist_t *rl, n_familiar = 0; SMARTLIST_FOREACH_BEGIN(nodelist_get_list(), node_t *, node) { - if (router_counts_toward_thresholds(node, now, omit_as_sybil)) { + if (router_counts_toward_thresholds(node, now, + omit_as_sybil, require_mbw)) { routerinfo_t *ri = node->ri; const char *id = ri->cache_info.identity_digest; long tk = rep_hist_get_weighted_time_known(id, now); @@ -2182,6 +2199,59 @@ dirserv_get_bandwidth_for_router(const routerinfo_t *ri) return bw; } +/** Look through the routerlist, and using the measured bandwidth cache count + * how many measured bandwidths we know. This is used to decide whether we + * ever trust advertised bandwidths for purposes of assigning flags. */ +static void +dirserv_count_measured_bws(routerlist_t *rl) +{ + /* Initialize this first */ + routers_with_measured_bw = 0; + + tor_assert(rl); + tor_assert(rl->routers); + + /* Iterate over the routerlist and count measured bandwidths */ + SMARTLIST_FOREACH_BEGIN(rl->routers, routerinfo_t *, ri) { + /* Check if we know a measured bandwidth for this one */ + if (dirserv_query_measured_bw_cache(ri->cache_info.identity_digest, + NULL, NULL)) { + ++routers_with_measured_bw; + } + } SMARTLIST_FOREACH_END(ri); +} + +/** Return the bandwidth we believe for assigning flags; prefer measured + * over advertised, and if we have above a threshold quantity of measured + * bandwidths, we don't want to ever give flags to unmeasured routers, so + * return 0. */ +static uint32_t +dirserv_get_credible_bandwidth(const routerinfo_t *ri) +{ + int threshold; + uint32_t bw = 0; + long mbw; + + tor_assert(ri); + /* Check if we have a measured bandwidth, and check the threshold if not */ + if (!(dirserv_query_measured_bw_cache(ri->cache_info.identity_digest, + &mbw, NULL))) { + threshold = get_options()->MinMeasuredBWsForAuthToIgnoreAdvertised; + if (routers_with_measured_bw > threshold) { + /* Return zero for unmeasured bandwidth if we are above threshold */ + bw = 0; + } else { + /* Return an advertised bandwidth otherwise */ + bw = router_get_advertised_bandwidth(ri); + } + } else { + /* We have the measured bandwidth in mbw */ + bw = (uint32_t)mbw; + } + + return bw; +} + /** Give a statement of our current performance thresholds for inclusion * in a vote document. */ char * @@ -2604,7 +2674,7 @@ set_routerstatus_from_routerinfo(routerstatus_t *rs, int listbaddirs, int vote_on_hsdirs) { const or_options_t *options = get_options(); - uint32_t routerbw = dirserv_get_bandwidth_for_router(ri); + uint32_t routerbw = dirserv_get_credible_bandwidth(ri); memset(rs, 0, sizeof(routerstatus_t)); @@ -2927,6 +2997,14 @@ dirserv_generate_networkstatus_vote_obj(crypto_pk_t *private_key, */ if (options->V3BandwidthsFile) { dirserv_read_measured_bandwidths(options->V3BandwidthsFile, NULL); + } else { + /* + * No bandwidths file; clear the measured bandwidth cache in case we had + * one last time around. + */ + if (dirserv_get_measured_bw_cache_size() > 0) { + dirserv_clear_measured_bw_cache(); + } } /* precompute this part, since we need it to decide what "stable" @@ -2945,6 +3023,10 @@ dirserv_generate_networkstatus_vote_obj(crypto_pk_t *private_key, rep_hist_make_router_pessimal(sybil_id, now); } DIGESTMAP_FOREACH_END; + /* Count how many have measured bandwidths so we know how to assign flags; + * this must come before dirserv_compute_performance_thresholds() */ + dirserv_count_measured_bws(rl); + dirserv_compute_performance_thresholds(rl, omit_as_sybil); routerstatuses = smartlist_new(); @@ -2989,6 +3071,7 @@ dirserv_generate_networkstatus_vote_obj(crypto_pk_t *private_key, smartlist_free(routers); digestmap_free(omit_as_sybil, NULL); + /* This pass through applies the measured bw lines to the routerstatuses */ if (options->V3BandwidthsFile) { dirserv_read_measured_bandwidths(options->V3BandwidthsFile, routerstatuses); diff --git a/src/or/or.h b/src/or/or.h index 45eb4673c..f2605d608 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3870,6 +3870,10 @@ typedef struct { * consensus vote on the 'params' line. */ char *ConsensusParams; + /** Authority only: minimum number of measured bandwidths we must see + * before we only beliee measured bandwidths to assign flags. */ + int MinMeasuredBWsForAuthToIgnoreAdvertised; + /** The length of time that we think an initial consensus should be fresh. * Only altered on testing networks. */ int TestingV3AuthInitialVotingInterval; From eb9420082ddf88462fc1ff7589c58094d7681f64 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 13 Mar 2013 12:47:48 -0400 Subject: [PATCH 48/99] Check for 0.2.4.8, not 0.2.4.7, to determine EXTEND2 support Fixes bug 8464; bugfix on b2863739 in 0.2.4.8-alpha --- changes/bug8464 | 5 +++++ src/or/routerparse.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 changes/bug8464 diff --git a/changes/bug8464 b/changes/bug8464 new file mode 100644 index 000000000..74ff2e39f --- /dev/null +++ b/changes/bug8464 @@ -0,0 +1,5 @@ + o Minor bugfixes: + - Correct our check for which versions of Tor support the EXTEND2 + cell. We had been willing to send it to Tor 0.2.4.7-alpha and + later, when support was really added in version 0.2.4.8-alpha. + Fixes bug 8464; bugfix on 0.2.4.8-alpha. diff --git a/src/or/routerparse.c b/src/or/routerparse.c index ce2cd5c51..b86864b5e 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -1953,7 +1953,7 @@ routerstatus_parse_entry_from_string(memarea_t *area, rs->version_supports_optimistic_data = tor_version_as_new_as(tok->args[0], "0.2.3.1-alpha"); rs->version_supports_extend2_cells = - tor_version_as_new_as(tok->args[0], "0.2.4.7-alpha"); + tor_version_as_new_as(tok->args[0], "0.2.4.8-alpha"); } if (vote_rs) { vote_rs->version = tor_strdup(tok->args[0]); From 63b67577d6df1080e0bca89d66a2e1550da6265d Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 20:58:28 -0400 Subject: [PATCH 49/99] Check return values from fcntl and setsockopt (Based on a patch from flupzor; bug #8206) --- changes/bug6206 | 6 +++++ src/common/compat.c | 54 +++++++++++++++++++++++++++++++++++++-------- src/common/compat.h | 2 +- src/ext/eventdns.c | 8 ++++++- src/or/connection.c | 23 ++++++++++++++----- src/or/cpuworker.c | 7 ++++-- 6 files changed, 82 insertions(+), 18 deletions(-) create mode 100644 changes/bug6206 diff --git a/changes/bug6206 b/changes/bug6206 new file mode 100644 index 000000000..61a16d291 --- /dev/null +++ b/changes/bug6206 @@ -0,0 +1,6 @@ + o Minor bugfixes: + - Always check the return values of functions fcntl() and + setsockopt(). We don't believe these are ever actually failing in + practice, but better safe than sorry. Also, checking these return + values should please some analysis tools (like Coverity). Patch + from 'flupzor'. Fix for bug 8206; bugfix on all versions of Tor. diff --git a/src/common/compat.c b/src/common/compat.c index d7ce89479..25df9a960 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -137,8 +137,13 @@ tor_open_cloexec(const char *path, int flags, unsigned mode) fd = open(path, flags, mode); #ifdef FD_CLOEXEC - if (fd >= 0) - fcntl(fd, F_SETFD, FD_CLOEXEC); + if (fd >= 0) { + if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) { + log_warn(LD_FS,"Couldn't set FD_CLOEXEC: %s", strerror(errno)); + close(fd); + return -1; + } + } #endif return fd; } @@ -150,8 +155,13 @@ tor_fopen_cloexec(const char *path, const char *mode) { FILE *result = fopen(path, mode); #ifdef FD_CLOEXEC - if (result != NULL) - fcntl(fileno(result), F_SETFD, FD_CLOEXEC); + if (result != NULL) { + if (fcntl(fileno(result), F_SETFD, FD_CLOEXEC) == -1) { + log_warn(LD_FS,"Couldn't set FD_CLOEXEC: %s", strerror(errno)); + fclose(result); + return NULL; + } + } #endif return result; } @@ -1024,7 +1034,15 @@ tor_open_socket(int domain, int type, int protocol) return s; #if defined(FD_CLOEXEC) - fcntl(s, F_SETFD, FD_CLOEXEC); + if (fcntl(s, F_SETFD, FD_CLOEXEC) == -1) { + log_warn(LD_FS,"Couldn't set FD_CLOEXEC: %s", strerror(errno)); +#if defined(_WIN32) + closesocket(s); +#else + close(s); +#endif + return -1; + } #endif goto socket_ok; /* So that socket_ok will not be unused. */ @@ -1059,7 +1077,11 @@ tor_accept_socket(tor_socket_t sockfd, struct sockaddr *addr, socklen_t *len) return s; #if defined(FD_CLOEXEC) - fcntl(s, F_SETFD, FD_CLOEXEC); + if (fcntl(s, F_SETFD, FD_CLOEXEC) == -1) { + log_warn(LD_NET, "Couldn't set FD_CLOEXEC: %s", strerror(errno)); + close(s); + return TOR_INVALID_SOCKET; + } #endif goto socket_ok; /* So that socket_ok will not be unused. */ @@ -1083,17 +1105,31 @@ get_n_open_sockets(void) return n; } -/** Turn socket into a nonblocking socket. +/** Turn socket into a nonblocking socket. Return 0 on success, -1 + * on failure. */ -void +int set_socket_nonblocking(tor_socket_t socket) { #if defined(_WIN32) unsigned long nonblocking = 1; ioctlsocket(socket, FIONBIO, (unsigned long*) &nonblocking); #else - fcntl(socket, F_SETFL, O_NONBLOCK); + int flags; + + flags = fcntl(socket, F_GETFL, 0); + if (flags == -1) { + log_warn(LD_NET, "Couldn't get file status flags: %s", strerror(errno)); + return -1; + } + flags |= O_NONBLOCK; + if (fcntl(socket, F_SETFL, flags) == -1) { + log_warn(LD_NET, "Couldn't set file status flags: %s", strerror(errno)); + return -1; + } #endif + + return 0; } /** diff --git a/src/common/compat.h b/src/common/compat.h index f9eb4ba0b..f0a34aae4 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -518,7 +518,7 @@ int tor_inet_aton(const char *cp, struct in_addr *addr) ATTR_NONNULL((1,2)); const char *tor_inet_ntop(int af, const void *src, char *dst, size_t len); int tor_inet_pton(int af, const char *src, void *dst); int tor_lookup_hostname(const char *name, uint32_t *addr) ATTR_NONNULL((1,2)); -void set_socket_nonblocking(tor_socket_t socket); +int set_socket_nonblocking(tor_socket_t socket); int tor_socketpair(int family, int type, int protocol, tor_socket_t fd[2]); int network_init(void); diff --git a/src/ext/eventdns.c b/src/ext/eventdns.c index 3ee9f7245..0dd7629a1 100644 --- a/src/ext/eventdns.c +++ b/src/ext/eventdns.c @@ -2275,6 +2275,7 @@ _evdns_nameserver_add_impl(const struct sockaddr *address, const struct nameserver *server = server_head, *const started_at = server_head; struct nameserver *ns; + int flags; int err = 0; if (server) { @@ -2306,7 +2307,12 @@ _evdns_nameserver_add_impl(const struct sockaddr *address, ioctlsocket(ns->socket, FIONBIO, &nonblocking); } #else - fcntl(ns->socket, F_SETFL, O_NONBLOCK); + if (fcntl(ns->socket, F_SETFL, O_NONBLOCK) == -1) { + evdns_log(EVDNS_LOG_WARN, "Error %s (%d) while settings file status flags.", + tor_socket_strerror(errno), errno); + err = 2; + goto out2; + } #endif if (global_bind_addr_is_set && diff --git a/src/or/connection.c b/src/or/connection.c index c659e65fe..622eadcff 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -918,8 +918,11 @@ make_socket_reuseable(tor_socket_t sock) * right after somebody else has let it go. But REUSEADDR on win32 * means you can bind to the port _even when somebody else * already has it bound_. So, don't do that on Win32. */ - setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*) &one, - (socklen_t)sizeof(one)); + if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*) &one, + (socklen_t)sizeof(one)) == -1) { + log_warn(LD_NET, "Error setting SO_REUSEADDR flag: %s", + tor_socket_strerror(errno)); + } #endif } @@ -1102,7 +1105,10 @@ connection_listener_new(const struct sockaddr *listensockaddr, tor_assert(0); } - set_socket_nonblocking(s); + if (set_socket_nonblocking(s) == -1) { + tor_close_socket(s); + goto err; + } lis_conn = listener_connection_new(type, listensockaddr->sa_family); conn = TO_CONN(lis_conn); @@ -1265,7 +1271,10 @@ connection_handle_listener_read(connection_t *conn, int new_type) (int)news,(int)conn->s); make_socket_reuseable(news); - set_socket_nonblocking(news); + if (set_socket_nonblocking(news) == -1) { + tor_close_socket(news); + return 0; + } if (options->ConstrainedSockets) set_constrained_socket_buffers(news, (int)options->ConstrainedSockSize); @@ -1494,7 +1503,11 @@ connection_connect(connection_t *conn, const char *address, } } - set_socket_nonblocking(s); + if (set_socket_nonblocking(s) == -1) { + *socket_error = tor_socket_errno(s); + tor_close_socket(s); + return -1; + } if (options->ConstrainedSockets) set_constrained_socket_buffers(s, (int)options->ConstrainedSockSize); diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index 38c6613f0..61f9faa39 100644 --- a/src/or/cpuworker.c +++ b/src/or/cpuworker.c @@ -535,13 +535,16 @@ spawn_cpuworker(void) conn = connection_new(CONN_TYPE_CPUWORKER, AF_UNIX); - set_socket_nonblocking(fd); - /* set up conn so it's got all the data we need to remember */ conn->s = fd; conn->address = tor_strdup("localhost"); tor_addr_make_unspec(&conn->addr); + if (set_socket_nonblocking(fd) == -1) { + connection_free(conn); /* this closes fd */ + return -1; + } + if (connection_add(conn) < 0) { /* no space, forget it */ log_warn(LD_NET,"connection_add for cpuworker failed. Giving up."); connection_free(conn); /* this closes fd */ From 57ffef3f89312be06aea7819cc0a6c6b9dc66452 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 18 Mar 2013 14:30:11 -0400 Subject: [PATCH 50/99] Remove an unused local variable. --- src/ext/eventdns.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ext/eventdns.c b/src/ext/eventdns.c index 0dd7629a1..66280cccd 100644 --- a/src/ext/eventdns.c +++ b/src/ext/eventdns.c @@ -2275,7 +2275,6 @@ _evdns_nameserver_add_impl(const struct sockaddr *address, const struct nameserver *server = server_head, *const started_at = server_head; struct nameserver *ns; - int flags; int err = 0; if (server) { From d64e5969f470a18fe15a6a2863cf4b2b59b1bd27 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Mon, 18 Mar 2013 11:56:42 -0700 Subject: [PATCH 51/99] Add dirserv_has_measured_bw() predicate wrapper for dirserv_query_measured_bw_cache() --- src/or/dirserv.c | 13 +++++++++---- src/or/dirserv.h | 1 + 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index c769beda8..47a4a7305 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1886,8 +1886,7 @@ router_counts_toward_thresholds(const node_t *node, time_t now, { /* Have measured bw? */ int have_mbw = - dirserv_query_measured_bw_cache(node->ri->cache_info.identity_digest, - NULL, NULL); + dirserv_has_measured_bw(node->ri->cache_info.identity_digest); return node->ri && router_is_active(node->ri, node, now) && !digestmap_get(omit_as_sybil, node->ri->cache_info.identity_digest) && @@ -2166,6 +2165,13 @@ dirserv_query_measured_bw_cache(const char *node_id, long *bw_out, return rv; } +/** Predicate wrapper for dirserv_query_measured_bw_cache() */ +int +dirserv_has_measured_bw(const char *node_id) +{ + return dirserv_query_measured_bw_cache(node_id, NULL, NULL); +} + /** Get the best estimate of a router's bandwidth for dirauth purposes, * preferring measured to advertised values if available. */ @@ -2214,8 +2220,7 @@ dirserv_count_measured_bws(routerlist_t *rl) /* Iterate over the routerlist and count measured bandwidths */ SMARTLIST_FOREACH_BEGIN(rl->routers, routerinfo_t *, ri) { /* Check if we know a measured bandwidth for this one */ - if (dirserv_query_measured_bw_cache(ri->cache_info.identity_digest, - NULL, NULL)) { + if (dirserv_has_measured_bw(ri->cache_info.identity_digest)) { ++routers_with_measured_bw; } } SMARTLIST_FOREACH_END(ri); diff --git a/src/or/dirserv.h b/src/or/dirserv.h index 887a4992e..8728a0b70 100644 --- a/src/or/dirserv.h +++ b/src/or/dirserv.h @@ -154,6 +154,7 @@ void dirserv_expire_measured_bw_cache(time_t now); int dirserv_get_measured_bw_cache_size(void); int dirserv_query_measured_bw_cache(const char *node_id, long *bw_out, time_t *as_of_out); +int dirserv_has_measured_bw(const char *node_id); #endif int dirserv_read_measured_bandwidths(const char *from_file, From e9bdb695e82320fd320ba7e9c716ebdc51bfdeb0 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Mon, 18 Mar 2013 11:58:30 -0700 Subject: [PATCH 52/99] Improve comment on router_counts_toward_thresholds() --- src/or/dirserv.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 47a4a7305..cf11e5013 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1878,7 +1878,10 @@ dirserv_thinks_router_is_hs_dir(const routerinfo_t *router, #define ABSOLUTE_MIN_BW_VALUE_TO_CONSIDER 4096 /** Helper for dirserv_compute_performance_thresholds(): Decide whether to - * include a router in our calculations, and return true iff we should. */ + * include a router in our calculations, and return true iff we should; the + * require_mbw parameter is passed in by + * dirserv_compute_performance_thresholds() and controls whether we ever + * count routers with only advertised bandwidths */ static int router_counts_toward_thresholds(const node_t *node, time_t now, const digestmap_t *omit_as_sybil, From 0164f16f70d17da202c8085e620e9cf043eda0b3 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Mon, 18 Mar 2013 12:04:41 -0700 Subject: [PATCH 53/99] Improve comment for routers_with_measured_bw static var in dirserv.c --- src/or/dirserv.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/or/dirserv.c b/src/or/dirserv.c index cf11e5013..5aed3fb6b 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -66,7 +66,11 @@ static cached_dir_t *the_directory = NULL; /** For authoritative directories: the current (v1) network status. */ static cached_dir_t the_runningrouters; -/** Total number of routers with measured bandwidth */ +/** Total number of routers with measured bandwidth; this is set by + * dirserv_count_measured_bws() before the loop in + * dirserv_generate_networkstatus_vote_obj() and checked by + * dirserv_get_credible_bandwidth() and + * dirserv_compute_performance_thresholds() */ static int routers_with_measured_bw = 0; static void directory_remove_invalid(void); From 3f837d4826cce0e7917e79d73b81aefc3fefc6bd Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 18 Mar 2013 15:13:59 -0400 Subject: [PATCH 54/99] Make stream events for RESOLVE lookups more consistent Fixes 8203; patch by Desoxy --- changes/bug8203 | 4 ++++ src/or/connection_edge.c | 15 +++++++++------ src/or/control.c | 10 +++------- src/or/dnsserv.c | 10 ++++++++-- src/or/dnsserv.h | 2 +- 5 files changed, 25 insertions(+), 16 deletions(-) create mode 100644 changes/bug8203 diff --git a/changes/bug8203 b/changes/bug8203 new file mode 100644 index 000000000..d26dc0fcc --- /dev/null +++ b/changes/bug8203 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Make the format and order of STREAM events for DNS lookups consistent + among the various ways to launch DNS lookups. Fix for bug 8203; + bugfix on 0.2.0.24-rc. Patch by "Desoxy." diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 84d556513..0660b1faf 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1945,13 +1945,14 @@ connection_ap_handshake_send_resolve(entry_connection_t *ap_conn) string_addr, payload_len) < 0) return -1; /* circuit is closed, don't continue */ - tor_free(base_conn->address); /* Maybe already set by dnsserv. */ - base_conn->address = tor_strdup("(Tor_internal)"); + if (!base_conn->address) { + /* This might be unnecessary. XXXX */ + base_conn->address = tor_dup_addr(&base_conn->addr); + } base_conn->state = AP_CONN_STATE_RESOLVE_WAIT; log_info(LD_APP,"Address sent for resolve, ap socket "TOR_SOCKET_T_FORMAT ", n_circ_id %u", base_conn->s, (unsigned)circ->base_.n_circ_id); - control_event_stream_status(ap_conn, STREAM_EVENT_NEW, 0); control_event_stream_status(ap_conn, STREAM_EVENT_SENT_RESOLVE, 0); return 0; } @@ -2201,9 +2202,11 @@ connection_ap_handshake_socks_reply(entry_connection_t *conn, char *reply, tor_assert(conn->socks_request); /* make sure it's an AP stream */ - control_event_stream_status(conn, - status==SOCKS5_SUCCEEDED ? STREAM_EVENT_SUCCEEDED : STREAM_EVENT_FAILED, - endreason); + if (!SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command)) { + control_event_stream_status(conn, status==SOCKS5_SUCCEEDED ? + STREAM_EVENT_SUCCEEDED : STREAM_EVENT_FAILED, + endreason); + } /* Flag this stream's circuit as having completed a stream successfully * (for path bias) */ diff --git a/src/or/control.c b/src/or/control.c index 03e5d79c8..2a6846418 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -2939,7 +2939,7 @@ handle_control_resolve(control_connection_t *conn, uint32_t len, failed = smartlist_new(); SMARTLIST_FOREACH(args, const char *, arg, { if (!is_keyval_pair(arg)) { - if (dnsserv_launch_request(arg, is_reverse)<0) + if (dnsserv_launch_request(arg, is_reverse, conn)<0) smartlist_add(failed, (char*)arg); } }); @@ -3742,7 +3742,7 @@ control_event_stream_status(entry_connection_t *conn, stream_status_event_t tp, } } - if (tp == STREAM_EVENT_NEW) { + if (tp == STREAM_EVENT_NEW || tp == STREAM_EVENT_NEW_RESOLVE) { tor_snprintf(addrport_buf,sizeof(addrport_buf), " SOURCE_ADDR=%s:%d", ENTRY_TO_CONN(conn)->address, ENTRY_TO_CONN(conn)->port); } else { @@ -3752,11 +3752,7 @@ control_event_stream_status(entry_connection_t *conn, stream_status_event_t tp, if (tp == STREAM_EVENT_NEW_RESOLVE) { purpose = " PURPOSE=DNS_REQUEST"; } else if (tp == STREAM_EVENT_NEW) { - if (ENTRY_TO_EDGE_CONN(conn)->is_dns_request || - (conn->socks_request && - SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command))) - purpose = " PURPOSE=DNS_REQUEST"; - else if (conn->use_begindir) { + if (conn->use_begindir) { connection_t *linked = ENTRY_TO_CONN(conn)->linked_conn; int linked_dir_purpose = -1; if (linked && linked->type == CONN_TYPE_DIR) diff --git a/src/or/dnsserv.c b/src/or/dnsserv.c index 7032b5814..e877b1891 100644 --- a/src/or/dnsserv.c +++ b/src/or/dnsserv.c @@ -147,7 +147,7 @@ evdns_server_callback(struct evdns_server_request *req, void *data_) return; } - control_event_stream_status(entry_conn, STREAM_EVENT_NEW, 0); + control_event_stream_status(entry_conn, STREAM_EVENT_NEW_RESOLVE, 0); /* Now, unless a controller asked us to leave streams unattached, * throw the connection over to get rewritten (which will @@ -170,7 +170,7 @@ evdns_server_callback(struct evdns_server_request *req, void *data_) * response; -1 if we couldn't launch the request. */ int -dnsserv_launch_request(const char *name, int reverse) +dnsserv_launch_request(const char *name, int reverse, control_connection_t *control_conn) { entry_connection_t *entry_conn; edge_connection_t *conn; @@ -181,6 +181,10 @@ dnsserv_launch_request(const char *name, int reverse) conn = ENTRY_TO_EDGE_CONN(entry_conn); conn->base_.state = AP_CONN_STATE_RESOLVE_WAIT; + tor_addr_copy(&TO_CONN(conn)->addr, &control_conn->base_.addr); + TO_CONN(conn)->port = control_conn->base_.port; + TO_CONN(conn)->address = tor_dup_addr(&control_conn->base_.addr); + if (reverse) entry_conn->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR; else @@ -203,6 +207,8 @@ dnsserv_launch_request(const char *name, int reverse) return -1; } + control_event_stream_status(entry_conn, STREAM_EVENT_NEW_RESOLVE, 0); + /* Now, unless a controller asked us to leave streams unattached, * throw the connection over to get rewritten (which will * answer it immediately if it's in the cache, or completely bogus, or diff --git a/src/or/dnsserv.h b/src/or/dnsserv.h index 6bdb98de7..846284114 100644 --- a/src/or/dnsserv.h +++ b/src/or/dnsserv.h @@ -20,7 +20,7 @@ void dnsserv_resolved(entry_connection_t *conn, const char *answer, int ttl); void dnsserv_reject_request(entry_connection_t *conn); -int dnsserv_launch_request(const char *name, int is_reverse); +int dnsserv_launch_request(const char *name, int is_reverse, control_connection_t *control_conn); #endif From ad8a27a3939be92e94d95fd7bb0f4e4b1e03382b Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 18 Mar 2013 15:39:11 -0400 Subject: [PATCH 55/99] Fix some wide lines --- src/or/dnsserv.c | 3 ++- src/or/dnsserv.h | 3 ++- src/or/entrynodes.c | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/or/dnsserv.c b/src/or/dnsserv.c index e877b1891..a1275cf2b 100644 --- a/src/or/dnsserv.c +++ b/src/or/dnsserv.c @@ -170,7 +170,8 @@ evdns_server_callback(struct evdns_server_request *req, void *data_) * response; -1 if we couldn't launch the request. */ int -dnsserv_launch_request(const char *name, int reverse, control_connection_t *control_conn) +dnsserv_launch_request(const char *name, int reverse, + control_connection_t *control_conn) { entry_connection_t *entry_conn; edge_connection_t *conn; diff --git a/src/or/dnsserv.h b/src/or/dnsserv.h index 846284114..687a77e59 100644 --- a/src/or/dnsserv.h +++ b/src/or/dnsserv.h @@ -20,7 +20,8 @@ void dnsserv_resolved(entry_connection_t *conn, const char *answer, int ttl); void dnsserv_reject_request(entry_connection_t *conn); -int dnsserv_launch_request(const char *name, int is_reverse, control_connection_t *control_conn); +int dnsserv_launch_request(const char *name, int is_reverse, + control_connection_t *control_conn); #endif diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index de80e8862..e92c0c166 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -367,7 +367,7 @@ add_an_entry_guard(const node_t *chosen, int reset_status, int prepend, } else { const routerstatus_t *rs; rs = router_pick_directory_server(MICRODESC_DIRINFO|V3_DIRINFO, - PDS_PREFER_TUNNELED_DIR_CONNS_|PDS_FOR_GUARD); + PDS_PREFER_TUNNELED_DIR_CONNS_|PDS_FOR_GUARD); if (!rs) return NULL; node = node_get_by_id(rs->identity_digest); From 0b827cbcb11abece686d402170bd58724a77e365 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 18 Mar 2013 15:44:23 -0400 Subject: [PATCH 56/99] Fix another case of bug 8206; patch from flupzor --- src/common/compat.c | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/common/compat.c b/src/common/compat.c index 25df9a960..4fa9fee42 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -1172,10 +1172,22 @@ tor_socketpair(int family, int type, int protocol, tor_socket_t fd[2]) return -errno; #if defined(FD_CLOEXEC) - if (SOCKET_OK(fd[0])) - fcntl(fd[0], F_SETFD, FD_CLOEXEC); - if (SOCKET_OK(fd[1])) - fcntl(fd[1], F_SETFD, FD_CLOEXEC); + if (SOCKET_OK(fd[0])) { + r = fcntl(fd[0], F_SETFD, FD_CLOEXEC); + if (r == -1) { + close(fd[0]); + close(fd[1]); + return -errno; + } + } + if (SOCKET_OK(fd[1])) { + r = fcntl(fd[1], F_SETFD, FD_CLOEXEC); + if (r == -1) { + close(fd[0]); + close(fd[1]); + return -errno; + } + } #endif goto sockets_ok; /* So that sockets_ok will not be unused. */ From bd9901bef245b3880c9a60034b9fdf6d4829eb65 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 18 Mar 2013 15:55:55 -0400 Subject: [PATCH 57/99] Handle TRUNCATE correctly if our next channel isn't done yet. Patch from 'cypherpunks'. Fixes bug #7947. Bugfix on 0.0.7.1. --- changes/bug7947 | 4 ++++ src/or/relay.c | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 changes/bug7947 diff --git a/changes/bug7947 b/changes/bug7947 new file mode 100644 index 000000000..6200ba2d8 --- /dev/null +++ b/changes/bug7947 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Fix the handling of a TRUNCATE cell when it arrives while the circuit + extension is in progress. Fixes bug 7947; bugfix on 0.0.7.1. + diff --git a/src/or/relay.c b/src/or/relay.c index 9ff9e1e1f..8e80d14a8 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -1398,6 +1398,14 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, "'truncate' unsupported at origin. Dropping."); return 0; } + if (circ->n_hop) { + if (circ->n_chan) + log_warn(LD_BUG, "n_chan and n_hop set on the same circuit!"); + extend_info_free(circ->n_hop); + circ->n_hop = NULL; + tor_free(circ->n_chan_create_cell); + circuit_set_state(circ, CIRCUIT_STATE_OPEN); + } if (circ->n_chan) { uint8_t trunc_reason = get_uint8(cell->payload + RELAY_HEADER_SIZE); circuit_clear_cell_queue(circ, circ->n_chan); From 73a35dc3c0b4ab6cf79d88fc513c5c2762eff28a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 19 Mar 2013 12:29:08 -0400 Subject: [PATCH 58/99] Free prepend_policy values in origin circuits --- src/or/circuitlist.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 17e18c760..eab3ebff2 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -24,6 +24,7 @@ #include "nodelist.h" #include "onion.h" #include "onion_fast.h" +#include "policies.h" #include "relay.h" #include "rendclient.h" #include "rendcommon.h" @@ -653,6 +654,7 @@ circuit_free(circuit_t *circ) memwipe(ocirc->socks_password, 0x06, ocirc->socks_password_len); tor_free(ocirc->socks_password); } + addr_policy_list_free(ocirc->prepend_policy); } else { or_circuit_t *ocirc = TO_OR_CIRCUIT(circ); /* Remember cell statistics for this circuit before deallocating. */ From 03efe54027e214be51f5cb4bafcbbd57422da7a1 Mon Sep 17 00:00:00 2001 From: David Fifield Date: Wed, 13 Mar 2013 00:43:21 -0700 Subject: [PATCH 59/99] Use option name --test-commandline in tor-fw-helper. It was previously --Test in the help output and --test-commandline in the getopt call. The man page already had --test. (Originally by David, who resolved the tie in favor of "--test"; I chose --test-commandline" instead so that nothing that depended on it could break. -Nick) --- changes/bug7768 | 4 ++-- src/tools/tor-fw-helper/tor-fw-helper.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/changes/bug7768 b/changes/bug7768 index f523b5b77..e3f9600af 100644 --- a/changes/bug7768 +++ b/changes/bug7768 @@ -1,3 +1,3 @@ o Documentation fixes: - - Update tor-fw-helper.1.txt to describe its options with their - correct names. Fixes bug 7768. + - Update tor-fw-helper.1.txt and tor-fw-helper.c to make option + names match. Fixes bug 7768. diff --git a/src/tools/tor-fw-helper/tor-fw-helper.c b/src/tools/tor-fw-helper/tor-fw-helper.c index d92445e08..488fe6741 100644 --- a/src/tools/tor-fw-helper/tor-fw-helper.c +++ b/src/tools/tor-fw-helper/tor-fw-helper.c @@ -97,7 +97,7 @@ usage(void) { fprintf(stderr, "tor-fw-helper usage:\n" " [-h|--help]\n" - " [-T|--Test]\n" + " [-T|--test-commandline]\n" " [-v|--verbose]\n" " [-g|--fetch-public-ip]\n" " [-p|--forward-port ([]:])\n"); From 6fe4e24645e820167322886f12d27e5e161e9228 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 19 Mar 2013 15:11:34 -0400 Subject: [PATCH 60/99] Use --test-commandline name in tor-fw-helper manpage --- doc/tor-fw-helper.1.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tor-fw-helper.1.txt b/doc/tor-fw-helper.1.txt index f51ffc4bd..1c103d925 100644 --- a/doc/tor-fw-helper.1.txt +++ b/doc/tor-fw-helper.1.txt @@ -14,7 +14,7 @@ tor-fw-helper - Manage upstream firewall/NAT devices SYNOPSIS -------- -**tor-fw-helper** [-h|--help] [-T|--test] [-v|--verbose] [-g|--fetch-public-ip] +**tor-fw-helper** [-h|--help] [-T|--test-commandline] [-v|--verbose] [-g|--fetch-public-ip] [-p __external port__:__internal_port__] DESCRIPTION @@ -33,7 +33,7 @@ OPTIONS **-v** or **--verbose**:: Display verbose output. -**-T** or **--test**:: +**-T** or **--test-commandline**:: Display test information and print the test information in tor-fw-helper.log From 343f7aa05967df43c3f7e5b392b66e21c08b7cb1 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 Feb 2013 17:24:13 -0500 Subject: [PATCH 61/99] Make the guard lifetime configurable and adjustable via the consensus Fixes 8240. (Don't actually increase the default guard lifetime. It seems likely to break too many things if done precipitiously.) --- changes/ticket8240 | 4 ++++ doc/tor.1.txt | 6 ++++++ src/common/util.h | 11 +++++++++++ src/or/circuitbuild.c | 36 ++++++++++++++++++++++++++++++++---- src/or/config.c | 1 + src/or/or.h | 3 +++ 6 files changed, 57 insertions(+), 4 deletions(-) create mode 100644 changes/ticket8240 diff --git a/changes/ticket8240 b/changes/ticket8240 new file mode 100644 index 000000000..91e6f8c14 --- /dev/null +++ b/changes/ticket8240 @@ -0,0 +1,4 @@ + o Major security fixes: + - Make the default guard lifetime controllable via a new + GuardLifetime torrc option and a GuardLifetime consensus + parameter. Start of a fix for bug 8240; bugfix on 0.1.1.11-alpha. diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 773fccf53..5cf5a718c 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -959,6 +959,12 @@ The following options are useful only for clients (that is, if If UseEntryGuards is set to 1, we will try to pick a total of NUM routers as long-term entries for our circuits. (Default: 3) +**HeartbeatPeriod** __N__ **days**|**weeks**|**months**:: + If nonzero, and UseEntryGuards is set, minimum time to keep a guard before + picking a new one. If zero, we use the GuardLifetime parameter from the + consensus directory. No value here may be less than 2 months or greater + than 5 years; out-of-range values are clamped. (Default: 0) + **SafeSocks** **0**|**1**:: When this option is enabled, Tor will reject application connections that use unsafe variants of the socks protocol -- ones that only provide an IP diff --git a/src/common/util.h b/src/common/util.h index 8977d273c..4642e4058 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -173,6 +173,17 @@ int n_bits_set_u8(uint8_t v); * overflow. */ #define CEIL_DIV(a,b) (((a)+(b)-1)/(b)) +/* Return v if it's between min and max. Otherwise + * return min if v is smaller than min, or max if + * b is larger than max. + * + * Requires that min is no more than max. May evaluate any of + * its arguments more than once! */ +#define CLAMP(min,v,max) \ + ( ((v) < (min)) ? (min) : \ + ((v) > (max)) ? (max) : \ + (v) ) + /* String manipulation */ /** Allowable characters in a hexadecimal string. */ diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index f8521c5cf..f07d42882 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -4203,6 +4203,9 @@ control_event_guard_deferred(void) #endif } +/** Largest amount that we'll backdate chosen_on_date */ +#define CHOSEN_ON_DATE_SLOP (30*86400) + /** Add a new (preferably stable and fast) router to our * entry_guards list. Return a pointer to the router if we succeed, * or NULL if we can't find any more suitable entries. @@ -4241,7 +4244,7 @@ add_an_entry_guard(const node_t *chosen, int reset_status, int prepend) * don't all select them on the same day, and b) avoid leaving a * precise timestamp in the state file about when we first picked * this guard. For details, see the Jan 2010 or-dev thread. */ - entry->chosen_on_date = time(NULL) - crypto_rand_int(3600*24*30); + entry->chosen_on_date = time(NULL) - crypto_rand_int(CHOSEN_ON_DATE_SLOP); entry->chosen_by_version = tor_strdup(VERSION); if (prepend) smartlist_insert(entry_guards, 0, entry); @@ -4285,15 +4288,40 @@ entry_guard_free(entry_guard_t *e) tor_free(e); } +/** + * Return the minimum lifetime of working entry guard, in seconds, + * as given in the consensus networkstatus. + */ +static int32_t +guards_get_lifetime(void) +{ + const or_options_t *options = get_options(); +#define DFLT_GUARD_LIFETIME (86400 * 60) /* Two months. */ +#define MIN_GUARD_LIFETIME (86400 * 60) /* Two months. */ +#define MAX_GUARD_LIFETIME (86400 * 1826) /* Five years. */ + + if (options->GuardLifetime >= 1) { + return CLAMP(MIN_GUARD_LIFETIME, + options->GuardLifetime, + MAX_GUARD_LIFETIME) + CHOSEN_ON_DATE_SLOP; + } + + return networkstatus_get_param(NULL, "GuardLifetime", + DFLT_GUARD_LIFETIME, + MIN_GUARD_LIFETIME, + MAX_GUARD_LIFETIME) + CHOSEN_ON_DATE_SLOP; +} + /** Remove any entry guard which was selected by an unknown version of Tor, * or which was selected by a version of Tor that's known to select - * entry guards badly, or which was selected more 2 months ago. */ + * entry guards badly, or which was selected a long time ago */ /* XXXX The "obsolete guards" and "chosen long ago guards" things should * probably be different functions. */ static int remove_obsolete_entry_guards(time_t now) { int changed = 0, i; + int32_t guard_lifetime = guards_get_lifetime(); for (i = 0; i < smartlist_len(entry_guards); ++i) { entry_guard_t *entry = smartlist_get(entry_guards, i); @@ -4324,8 +4352,8 @@ remove_obsolete_entry_guards(time_t now) } tor_free(tor_ver); } - if (!version_is_bad && entry->chosen_on_date + 3600*24*60 < now) { - /* It's been 2 months since the date listed in our state file. */ + if (!version_is_bad && entry->chosen_on_date + guard_lifetime < now) { + /* It's been too long since the date listed in our state file. */ msg = "was selected several months ago"; date_is_bad = 1; } diff --git a/src/or/config.c b/src/or/config.c index 90a5dfbda..6ccd65a57 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -302,6 +302,7 @@ static config_var_t _option_vars[] = { #endif OBSOLETE("GiveGuardFlagTo_CVE_2011_2768_VulnerableRelays"), OBSOLETE("Group"), + V(GuardLifetime, INTERVAL, "0 minutes"), V(HardwareAccel, BOOL, "0"), V(HeartbeatPeriod, INTERVAL, "6 hours"), V(AccelName, STRING, NULL), diff --git a/src/or/or.h b/src/or/or.h index 51c23d305..b54834de3 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3605,6 +3605,9 @@ typedef struct { int PathBiasScaleFactor; /** @} */ + /** How long (seconds) do we keep a guard before picking a new one? */ + int GuardLifetime; + } or_options_t; /** Persistent state for an onion router, as saved to disk. */ From aa040619d5d584d3dc1639b656f8ab6a619abe56 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 21:25:37 -0400 Subject: [PATCH 62/99] Document the GuardLifetime option --- doc/tor.1.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 5cf5a718c..5639ad26d 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -959,7 +959,7 @@ The following options are useful only for clients (that is, if If UseEntryGuards is set to 1, we will try to pick a total of NUM routers as long-term entries for our circuits. (Default: 3) -**HeartbeatPeriod** __N__ **days**|**weeks**|**months**:: +**GuardLifetime** __N__ **days**|**weeks**|**months**:: If nonzero, and UseEntryGuards is set, minimum time to keep a guard before picking a new one. If zero, we use the GuardLifetime parameter from the consensus directory. No value here may be less than 2 months or greater From cf734a08f60f141ce2c21c703a403aeb74017b1f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 21:35:50 -0400 Subject: [PATCH 63/99] Add support for days of the week to intervals --- src/or/config.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/or/config.c b/src/or/config.c index 6ccd65a57..adbd367d1 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -6534,6 +6534,8 @@ static struct unit_table_t time_units[] = { { "days", 24*60*60 }, { "week", 7*24*60*60 }, { "weeks", 7*24*60*60 }, + { "months", 2629728, }, /* about 30.437 days */ + { "months", 2629728, }, { NULL, 0 }, }; From 18752bca5b57c11b6d843db671e1886ed0624848 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 11 Mar 2013 22:16:25 -0400 Subject: [PATCH 64/99] Drop the minimum guard lifetime back down to one month Mike believes that raising the default to 2 months with no way to lower it may create horrible load-balancing issues. --- doc/tor.1.txt | 2 +- src/or/circuitbuild.c | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 5639ad26d..0c13a5c7d 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -962,7 +962,7 @@ The following options are useful only for clients (that is, if **GuardLifetime** __N__ **days**|**weeks**|**months**:: If nonzero, and UseEntryGuards is set, minimum time to keep a guard before picking a new one. If zero, we use the GuardLifetime parameter from the - consensus directory. No value here may be less than 2 months or greater + consensus directory. No value here may be less than 1 month or greater than 5 years; out-of-range values are clamped. (Default: 0) **SafeSocks** **0**|**1**:: diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index f07d42882..d3a29fd0e 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -4290,13 +4290,15 @@ entry_guard_free(entry_guard_t *e) /** * Return the minimum lifetime of working entry guard, in seconds, - * as given in the consensus networkstatus. + * as given in the consensus networkstatus. (Plus CHOSEN_ON_DATE_SLOP, + * so that we can do the chosen_on_date randomization while achieving the + * desired minimum lifetime.) */ static int32_t guards_get_lifetime(void) { const or_options_t *options = get_options(); -#define DFLT_GUARD_LIFETIME (86400 * 60) /* Two months. */ +#define DFLT_GUARD_LIFETIME (86400 * 30) /* One month. */ #define MIN_GUARD_LIFETIME (86400 * 60) /* Two months. */ #define MAX_GUARD_LIFETIME (86400 * 1826) /* Five years. */ From ca50fb4f81a1f48c82d75825687085cda4627424 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 19 Mar 2013 16:35:40 -0400 Subject: [PATCH 65/99] Don't assert when writing a cell to a CLOSING connection. Instead, drop the cell. Fixes another case of bug 7350; bugfix on 0.2.4.4-alpha --- changes/bug7350 | 4 ++++ src/or/channel.c | 24 ++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 changes/bug7350 diff --git a/changes/bug7350 b/changes/bug7350 new file mode 100644 index 000000000..b0ee9d091 --- /dev/null +++ b/changes/bug7350 @@ -0,0 +1,4 @@ + o Major bugfixes: + - Avoid an assertion when we discover that we'd like to write a cell + onto a closing connection: just discard the cell. Fixes another + case of bug 7350; bugfix on 0.2.4.4-alpha. diff --git a/src/or/channel.c b/src/or/channel.c index 82db061af..4e9086f2e 100644 --- a/src/or/channel.c +++ b/src/or/channel.c @@ -1751,6 +1751,14 @@ channel_write_cell(channel_t *chan, cell_t *cell) tor_assert(chan); tor_assert(cell); + if (chan->state == CHANNEL_STATE_CLOSING) { + log_debug(LD_CHANNEL, "Discarding cell_t %p on closing channel %p with " + "global ID "U64_FORMAT, cell, chan, + U64_PRINTF_ARG(chan->global_identifier)); + tor_free(cell); + return; + } + log_debug(LD_CHANNEL, "Writing cell_t %p to channel %p with global ID " U64_FORMAT, @@ -1777,6 +1785,14 @@ channel_write_packed_cell(channel_t *chan, packed_cell_t *packed_cell) tor_assert(chan); tor_assert(packed_cell); + if (chan->state == CHANNEL_STATE_CLOSING) { + log_debug(LD_CHANNEL, "Discarding packed_cell_t %p on closing channel %p " + "with global ID "U64_FORMAT, packed_cell, chan, + U64_PRINTF_ARG(chan->global_identifier)); + packed_cell_free(packed_cell); + return; + } + log_debug(LD_CHANNEL, "Writing packed_cell_t %p to channel %p with global ID " U64_FORMAT, @@ -1805,6 +1821,14 @@ channel_write_var_cell(channel_t *chan, var_cell_t *var_cell) tor_assert(chan); tor_assert(var_cell); + if (chan->state == CHANNEL_STATE_CLOSING) { + log_debug(LD_CHANNEL, "Discarding var_cell_t %p on closing channel %p " + "with global ID "U64_FORMAT, var_cell, chan, + U64_PRINTF_ARG(chan->global_identifier)); + var_cell_free(var_cell); + return; + } + log_debug(LD_CHANNEL, "Writing var_cell_t %p to channel %p with global ID " U64_FORMAT, From a660fe6fd51cd511cdc610e4a50f06d59cbf74aa Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 20 Mar 2013 13:34:57 -0400 Subject: [PATCH 66/99] Let testing networks override ABSOLUTE_MIN_VALUE_FOR_FAST_FLAG This adds a new option to fix bug 8508 which broke chutney networks. The bug was introduced by 317d16de. --- changes/bug8408 | 4 ++++ doc/tor.1.txt | 5 +++++ src/or/config.c | 1 + src/or/dirserv.c | 3 +++ src/or/or.h | 3 +++ 5 files changed, 16 insertions(+) create mode 100644 changes/bug8408 diff --git a/changes/bug8408 b/changes/bug8408 new file mode 100644 index 000000000..ae9cf172e --- /dev/null +++ b/changes/bug8408 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Allow TestingTorNetworks to override the 4096-byte minimum for the Fast + threshold. Otherwise they can't bootstrap until they've observed more + traffic. Fixes bug 8508; bugfix on 0.2.4.10-alpha. diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 3be90be87..5727ec30f 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -2019,6 +2019,11 @@ The following options are used for running a testing Tor network. time. Changing this requires that **TestingTorNetwork** is set. (Default: 10 minutes) +**TestingMinFastFlagThreshold** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**:: + Minimum value for the Fast flag. Overrides the ordinary minimum taken + from the consensus when TestingTorNetwork is set. (Default: 0.) + + SIGNALS ------- diff --git a/src/or/config.c b/src/or/config.c index 2b8eab7d6..9e2230e76 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -341,6 +341,7 @@ static config_var_t option_vars_[] = { V(PerConnBWRate, MEMUNIT, "0"), V(PidFile, STRING, NULL), V(TestingTorNetwork, BOOL, "0"), + V(TestingMinFastFlagThreshold, MEMUNIT, "0"), V(OptimisticData, AUTOBOOL, "auto"), V(PortForwarding, BOOL, "0"), V(PortForwardingHelper, FILENAME, "tor-fw-helper"), diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 8e8f79a17..81f328a64 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -2005,6 +2005,9 @@ dirserv_compute_performance_thresholds(routerlist_t *rl, ABSOLUTE_MIN_VALUE_FOR_FAST_FLAG, ABSOLUTE_MIN_VALUE_FOR_FAST_FLAG, INT32_MAX); + if (options->TestingTorNetwork) { + min_fast = (int32_t)options->TestingMinFastFlagThreshold; + } max_fast = networkstatus_get_param(NULL, "FastFlagMaxThreshold", INT32_MAX, min_fast, INT32_MAX); if (fast_bandwidth < (uint32_t)min_fast) diff --git a/src/or/or.h b/src/or/or.h index 67315522e..2b0102de3 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3910,6 +3910,9 @@ typedef struct { * of certain configuration options. */ int TestingTorNetwork; + /** Minimum value for the Fast flag threshold on testing networks. */ + uint64_t TestingMinFastFlagThreshold; + /** If true, and we have GeoIP data, and we're a bridge, keep a per-country * count of how many client addresses have contacted us so that we can help * the bridge authority guess which countries have blocked access to us. */ From 8e29a7ae1da643197cc237ecb81096cd55913eff Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Wed, 20 Mar 2013 11:03:18 -0700 Subject: [PATCH 67/99] Fix an EOL@EOF in circuituse.c --- src/or/circuituse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/or/circuituse.c b/src/or/circuituse.c index d48449fa8..f02597e63 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -2312,3 +2312,4 @@ mark_circuit_unusable_for_new_conns(origin_circuit_t *circ) circ->unusable_for_new_conns = 1; } + From 5c5198e713365fecf44741ae6f287c2ebdef18f6 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Wed, 20 Mar 2013 11:16:41 -0700 Subject: [PATCH 68/99] Set default minimum bandwidth for exit flag to zero for TestingTorNetwork --- src/or/config.c | 1 + src/or/dirserv.c | 10 ++++++++-- src/or/or.h | 3 +++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/or/config.c b/src/or/config.c index 9e2230e76..a238a1ae7 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -341,6 +341,7 @@ static config_var_t option_vars_[] = { V(PerConnBWRate, MEMUNIT, "0"), V(PidFile, STRING, NULL), V(TestingTorNetwork, BOOL, "0"), + V(TestingMinExitFlagThreshold, MEMUNIT, "0"), V(TestingMinFastFlagThreshold, MEMUNIT, "0"), V(OptimisticData, AUTOBOOL, "auto"), V(PortForwarding, BOOL, "0"), diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 81f328a64..e837e4bed 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1894,11 +1894,17 @@ router_counts_toward_thresholds(const node_t *node, time_t now, /* Have measured bw? */ int have_mbw = dirserv_has_measured_bw(node->ri->cache_info.identity_digest); + uint64_t min_bw = ABSOLUTE_MIN_BW_VALUE_TO_CONSIDER; + const or_options_t *options = get_options(); + + if (options->TestingTorNetwork) { + min_bw = (int64_t)options->TestingMinExitFlagThreshold; + } return node->ri && router_is_active(node->ri, node, now) && !digestmap_get(omit_as_sybil, node->ri->cache_info.identity_digest) && - (dirserv_get_credible_bandwidth(node->ri) >= - ABSOLUTE_MIN_BW_VALUE_TO_CONSIDER) && (have_mbw || !require_mbw); + (dirserv_get_credible_bandwidth(node->ri) >= min_bw) && + (have_mbw || !require_mbw); } /** Look through the routerlist, the Mean Time Between Failure history, and diff --git a/src/or/or.h b/src/or/or.h index 2b0102de3..4e19140b4 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3910,6 +3910,9 @@ typedef struct { * of certain configuration options. */ int TestingTorNetwork; + /** Minimum value for the Exit flag threshold on testing networks. */ + uint64_t TestingMinExitFlagThreshold; + /** Minimum value for the Fast flag threshold on testing networks. */ uint64_t TestingMinFastFlagThreshold; From 6196d0e83d78e2e8efff575d490f4cb254415832 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 21 Mar 2013 07:22:59 -0400 Subject: [PATCH 69/99] The *default* guard lifetime is two months; the *min* is one This caused an assertion failure when pruning guards. Fixes bug #8553; bug not in any released Tor. --- src/or/entrynodes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index 5bb0a7317..6b21d1092 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -459,8 +459,8 @@ static int32_t guards_get_lifetime(void) { const or_options_t *options = get_options(); -#define DFLT_GUARD_LIFETIME (86400 * 30) /* One month. */ -#define MIN_GUARD_LIFETIME (86400 * 60) /* Two months. */ +#define DFLT_GUARD_LIFETIME (86400 * 60) /* Two months. */ +#define MIN_GUARD_LIFETIME (86400 * 30) /* One months. */ #define MAX_GUARD_LIFETIME (86400 * 1826) /* Five years. */ if (options->GuardLifetime >= 1) { From 42fb61d172b172687cd57c86dd72b117f03f2136 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 21 Mar 2013 07:52:36 -0400 Subject: [PATCH 70/99] Fix a small memory leak in the unit tests Found by coverity; this is CID 992692. --- src/test/test_util.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/test/test_util.c b/src/test/test_util.c index 7ab54e153..2c4f8040d 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -802,7 +802,7 @@ test_util_strmisc(void) { char buf[1024]; int i; - char *cp; + char *cp, *cp_tmp; /* Test strl operations */ test_eq(5, strlcpy(buf, "Hello", 0)); @@ -1005,20 +1005,20 @@ test_util_strmisc(void) /* Test strndup and memdup */ { const char *s = "abcdefghijklmnopqrstuvwxyz"; - cp = tor_strndup(s, 30); - test_streq(cp, s); /* same string, */ - test_neq_ptr(cp, s); /* but different pointers. */ - tor_free(cp); + cp_tmp = tor_strndup(s, 30); + test_streq(cp_tmp, s); /* same string, */ + test_neq_ptr(cp_tmp, s); /* but different pointers. */ + tor_free(cp_tmp); - cp = tor_strndup(s, 5); - test_streq(cp, "abcde"); - tor_free(cp); + cp_tmp = tor_strndup(s, 5); + test_streq(cp_tmp, "abcde"); + tor_free(cp_tmp); s = "a\0b\0c\0d\0e\0"; - cp = tor_memdup(s,10); - test_memeq(cp, s, 10); /* same ram, */ - test_neq_ptr(cp, s); /* but different pointers. */ - tor_free(cp); + cp_tmp = tor_memdup(s,10); + test_memeq(cp_tmp, s, 10); /* same ram, */ + test_neq_ptr(cp_tmp, s); /* but different pointers. */ + tor_free(cp_tmp); } /* Test str-foo functions */ @@ -1097,7 +1097,7 @@ test_util_strmisc(void) tt_int_op(strcmp_len("blah", "", 0), ==, 0); done: - ; + tor_free(cp_tmp); } static void From 1b6b8b05642cfa5e951a8b25233191a1ab8dda2f Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 22 Mar 2013 12:38:55 -0400 Subject: [PATCH 71/99] Fix an uninitialized-var warning in unit tests Found by formorer; fix on 42fb61d172b172, not in any released Tor. --- src/test/test_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/test_util.c b/src/test/test_util.c index 2c4f8040d..6e1ee713d 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -802,7 +802,7 @@ test_util_strmisc(void) { char buf[1024]; int i; - char *cp, *cp_tmp; + char *cp, *cp_tmp = NULL; /* Test strl operations */ test_eq(5, strlcpy(buf, "Hello", 0)); From 8b6a952c94bbc7bd3a9dc3356e708654092e08af Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 23 Mar 2013 18:50:21 -0400 Subject: [PATCH 72/99] Avoid clang warnings from implicit off_t->size_t cast --- src/common/crypto_curve25519.c | 2 +- src/test/test_crypto.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/crypto_curve25519.c b/src/common/crypto_curve25519.c index 3e4004db2..88c723f37 100644 --- a/src/common/crypto_curve25519.c +++ b/src/common/crypto_curve25519.c @@ -169,7 +169,7 @@ curve25519_keypair_read_from_file(curve25519_keypair_t *keypair_out, end: if (content) { - memwipe(content, 0, st.st_size); + memwipe(content, 0, (size_t) st.st_size); tor_free(content); } if (r != 0) { diff --git a/src/test/test_crypto.c b/src/test/test_crypto.c index c531c6083..fcaa0813e 100644 --- a/src/test/test_crypto.c +++ b/src/test/test_crypto.c @@ -1097,7 +1097,7 @@ test_crypto_curve25519_persist(void *arg) tor_free(tag); content[69] ^= 0xff; - tt_int_op(0, ==, write_bytes_to_file(fname, content, st.st_size, 1)); + tt_int_op(0, ==, write_bytes_to_file(fname, content, (size_t)st.st_size, 1)); tt_int_op(-1, ==, curve25519_keypair_read_from_file(&keypair2, &tag, fname)); done: From 914bfe765d72627fddc4bdda3fbd7f77008aca26 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 26 Mar 2013 18:49:41 -0700 Subject: [PATCH 73/99] Bug 7065: Use $ for idhex instead of = --- src/or/circuitbuild.c | 28 ++++++++++++++-------------- src/or/routerparse.c | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 8e768e76f..ce552b47f 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1539,7 +1539,7 @@ pathbias_count_build_success(origin_circuit_t *circ) guard->circ_successes++; entry_guards_changed(); - log_info(LD_CIRC, "Got success count %f/%f for guard %s=%s", + log_info(LD_CIRC, "Got success count %f/%f for guard %s ($%s)", guard->circ_successes, guard->circ_attempts, guard->nickname, hex_str(guard->identity, DIGEST_LEN)); } else { @@ -1558,7 +1558,7 @@ pathbias_count_build_success(origin_circuit_t *circ) if (guard->circ_attempts < guard->circ_successes) { log_notice(LD_BUG, "Unexpectedly high successes counts (%f/%f) " - "for guard %s=%s", + "for guard %s ($%s)", guard->circ_successes, guard->circ_attempts, guard->nickname, hex_str(guard->identity, DIGEST_LEN)); } @@ -1626,7 +1626,7 @@ pathbias_count_use_attempt(origin_circuit_t *circ) entry_guards_changed(); log_debug(LD_CIRC, - "Marked circuit %d (%f/%f) as used for guard %s=%s.", + "Marked circuit %d (%f/%f) as used for guard %s ($%s).", circ->global_identifier, guard->use_successes, guard->use_attempts, guard->nickname, hex_str(guard->identity, DIGEST_LEN)); @@ -1736,7 +1736,7 @@ pathbias_count_use_success(origin_circuit_t *circ) log_debug(LD_CIRC, "Marked circuit %d (%f/%f) as used successfully for guard " - "%s=%s.", + "%s ($%s).", circ->global_identifier, guard->use_successes, guard->use_attempts, guard->nickname, hex_str(guard->identity, DIGEST_LEN)); @@ -2253,7 +2253,7 @@ pathbias_measure_use_rate(entry_guard_t *guard) if (pathbias_get_dropguards(options)) { if (!guard->path_bias_disabled) { log_warn(LD_CIRC, - "Your Guard %s=%s is failing to carry an extremely large " + "Your Guard %s ($%s) is failing to carry an extremely large " "amount of stream on its circuits. " "To avoid potential route manipulation attacks, Tor has " "disabled use of this guard. " @@ -2279,7 +2279,7 @@ pathbias_measure_use_rate(entry_guard_t *guard) } else if (!guard->path_bias_use_extreme) { guard->path_bias_use_extreme = 1; log_warn(LD_CIRC, - "Your Guard %s=%s is failing to carry an extremely large " + "Your Guard %s ($%s) is failing to carry an extremely large " "amount of streams on its circuits. " "This could indicate a route manipulation attack, network " "overload, bad local network connectivity, or a bug. " @@ -2303,7 +2303,7 @@ pathbias_measure_use_rate(entry_guard_t *guard) if (!guard->path_bias_use_noticed) { guard->path_bias_use_noticed = 1; log_notice(LD_CIRC, - "Your Guard %s=%s is failing to carry more streams on its " + "Your Guard %s ($%s) is failing to carry more streams on its " "circuits than usual. " "Most likely this means the Tor network is overloaded " "or your network connection is poor. " @@ -2359,7 +2359,7 @@ pathbias_measure_close_rate(entry_guard_t *guard) if (pathbias_get_dropguards(options)) { if (!guard->path_bias_disabled) { log_warn(LD_CIRC, - "Your Guard %s=%s is failing an extremely large " + "Your Guard %s ($%s) is failing an extremely large " "amount of circuits. " "To avoid potential route manipulation attacks, Tor has " "disabled use of this guard. " @@ -2385,7 +2385,7 @@ pathbias_measure_close_rate(entry_guard_t *guard) } else if (!guard->path_bias_extreme) { guard->path_bias_extreme = 1; log_warn(LD_CIRC, - "Your Guard %s=%s is failing an extremely large " + "Your Guard %s ($%s) is failing an extremely large " "amount of circuits. " "This could indicate a route manipulation attack, " "extreme network overload, or a bug. " @@ -2409,7 +2409,7 @@ pathbias_measure_close_rate(entry_guard_t *guard) if (!guard->path_bias_warned) { guard->path_bias_warned = 1; log_warn(LD_CIRC, - "Your Guard %s=%s is failing a very large " + "Your Guard %s ($%s) is failing a very large " "amount of circuits. " "Most likely this means the Tor network is " "overloaded, but it could also mean an attack against " @@ -2434,7 +2434,7 @@ pathbias_measure_close_rate(entry_guard_t *guard) if (!guard->path_bias_noticed) { guard->path_bias_noticed = 1; log_notice(LD_CIRC, - "Your Guard %s=%s is failing more circuits than " + "Your Guard %s ($%s) is failing more circuits than " "usual. " "Most likely this means the Tor network is overloaded. " "Success counts are %ld/%ld. Use counts are %ld/%ld. " @@ -2495,7 +2495,7 @@ pathbias_scale_close_rates(entry_guard_t *guard) log_info(LD_CIRC, "Scaled pathbias counts to (%f,%f)/%f (%d/%d open) for guard " - "%s=%s", + "%s ($%s)", guard->circ_successes, guard->successful_circuits_closed, guard->circ_attempts, opened_built, opened_attempts, guard->nickname, hex_str(guard->identity, DIGEST_LEN)); @@ -2529,7 +2529,7 @@ pathbias_scale_use_rates(entry_guard_t *guard) guard->use_attempts += opened_attempts; log_info(LD_CIRC, - "Scaled pathbias use counts to %f/%f (%d open) for guard %s=%s", + "Scaled pathbias use counts to %f/%f (%d open) for guard %s ($%s)", guard->use_successes, guard->use_attempts, opened_attempts, guard->nickname, hex_str(guard->identity, DIGEST_LEN)); entry_guards_changed(); @@ -2554,7 +2554,7 @@ entry_guard_inc_circ_attempt_count(entry_guard_t *guard) pathbias_scale_close_rates(guard); guard->circ_attempts++; - log_info(LD_CIRC, "Got success count %f/%f for guard %s=%s", + log_info(LD_CIRC, "Got success count %f/%f for guard %s ($%s)", guard->circ_successes, guard->circ_attempts, guard->nickname, hex_str(guard->identity, DIGEST_LEN)); return 0; diff --git a/src/or/routerparse.c b/src/or/routerparse.c index b86864b5e..a2b4f9e0f 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -2030,7 +2030,7 @@ routerstatus_parse_entry_from_string(memarea_t *area, } } else { log_info(LD_BUG, "Found an entry in networkstatus with no " - "microdescriptor digest. (Router %s=%s at %s:%d.)", + "microdescriptor digest. (Router %s ($%s) at %s:%d.)", rs->nickname, hex_str(rs->identity_digest, DIGEST_LEN), fmt_addr32(rs->addr), rs->or_port); } From 4cc7cc28f8040b3a8f3faaca82abe27bbec0b744 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 26 Mar 2013 18:55:12 -0700 Subject: [PATCH 74/99] Changes file for #7065 (revised by nickm) --- changes/bug7065 | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changes/bug7065 diff --git a/changes/bug7065 b/changes/bug7065 new file mode 100644 index 000000000..1ca684102 --- /dev/null +++ b/changes/bug7065 @@ -0,0 +1,5 @@ + o Minor bugfix (log cleanups): + - Eliminate several instances where we use Nickname=ID to refer to + nodes in logs. Use Nickname (ID) instead. (Elsewhere, we still use + $ID=Nickname, which is also acceptable.) Fixes bug #7065. Bugfix + on 0.2.3.21-rc, 0.2.4.5-alpha, 0.2.4.8-alpha, and 0.2.4.10-alpha. From 65c0489dd4f0e10230f5c2fbb772a58e03e939bb Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 26 Mar 2013 20:28:19 -0700 Subject: [PATCH 75/99] Bug 6572: Use timestamp_created for liveness sanity checks. This should eliminate potential regressions caused by #7341. --- src/or/circuituse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/circuituse.c b/src/or/circuituse.c index f02597e63..14576f13d 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -671,7 +671,7 @@ circuit_expire_building(void) circuit_purpose_to_string(victim->purpose)); } else if (circuit_build_times_count_close(&circ_times, first_hop_succeeded, - victim->timestamp_began.tv_sec)) { + victim->timestamp_created.tv_sec)) { circuit_build_times_set_timeout(&circ_times); } } From fc9a72c6886c83f96f0b322dab92dbc3c5a8f26b Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 26 Mar 2013 20:29:41 -0700 Subject: [PATCH 76/99] Changes file for bug6572. --- changes/bug6572 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 changes/bug6572 diff --git a/changes/bug6572 b/changes/bug6572 new file mode 100644 index 000000000..6508d1bcb --- /dev/null +++ b/changes/bug6572 @@ -0,0 +1,4 @@ + o Minor bugfixes (log messages) + - Use circuit creation time for network liveness evaluation. This + should eliminate warning log messages about liveness caused by + changes in timeout evaluation. Fixes bug 6572; bugfix on 0.2.4.8-alpha. From 87d50d0617d89290ca263aa6f415e45a0c37a11a Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Wed, 27 Mar 2013 16:22:43 -0700 Subject: [PATCH 77/99] Clarify liveness log message and lower it to notice. It could just be due to small clock jumps, after all. --- src/or/circuitstats.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/or/circuitstats.c b/src/or/circuitstats.c index fe9c80ddc..1d7812bf2 100644 --- a/src/or/circuitstats.c +++ b/src/or/circuitstats.c @@ -1232,11 +1232,11 @@ circuit_build_times_network_close(circuit_build_times_t *cbt, format_local_iso_time(last_live_buf, cbt->liveness.network_last_live); format_local_iso_time(start_time_buf, start_time); format_local_iso_time(now_buf, now); - log_warn(LD_BUG, - "Circuit somehow completed a hop while the network was " - "not live. Network was last live at %s, but circuit launched " - "at %s. It's now %s.", last_live_buf, start_time_buf, - now_buf); + log_notice(LD_CIRC, + "A circuit somehow completed a hop while the network was " + "not live. The network was last live at %s, but the circuit " + "launched at %s. It's now %s. This could mean your clock " + "changed.", last_live_buf, start_time_buf, now_buf); } cbt->liveness.nonlive_timeouts++; if (cbt->liveness.nonlive_timeouts == 1) { From 7f8098d2d0e719f3ea9e35a7f930477f8fc7682a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 27 Mar 2013 21:04:08 -0400 Subject: [PATCH 78/99] Add some missing case values to please clang It seems that some versions of clang that would prefer the -Wswitch-enum compiler flag to warn about switch statements with missing enum values, even if those switch statements have a default. Fixes bug 8598; bugfix on 0.2.4.10-alpha. --- changes/bug8598 | 6 ++++++ src/or/circuitbuild.c | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 changes/bug8598 diff --git a/changes/bug8598 b/changes/bug8598 new file mode 100644 index 000000000..e31c8f3c7 --- /dev/null +++ b/changes/bug8598 @@ -0,0 +1,6 @@ + o Bugfixes: + - Fix compilation warning with some versions of clang that would prefer + the -Wswitch-enum compiler flag to warn about switch statements with + missing enum values, even if those switch statements have a default: + statement. Fixes bug 8598; bugfix on 0.2.4.10-alpha. + diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index ce552b47f..aec6c6acf 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -2010,6 +2010,9 @@ pathbias_check_close(origin_circuit_t *ocirc, int reason) pathbias_count_use_failed(ocirc); break; + case PATH_STATE_NEW_CIRC: + case PATH_STATE_BUILD_ATTEMPTED: + case PATH_STATE_ALREADY_COUNTED: default: // Other states are uninteresting. No stats to count. break; From 5a3eacf88c89c4d29cac2e324a381a3fd4982fa1 Mon Sep 17 00:00:00 2001 From: Patrick R McDonald Date: Mon, 25 Mar 2013 17:31:16 -0500 Subject: [PATCH 79/99] First try on ticket 8590 --- doc/tor.1.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 5727ec30f..5dc4bc81f 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -1431,7 +1431,9 @@ is non-zero): that they are in the same \'family', Tor clients will not use them in the same circuit. (Each server only needs to list the other servers in its family; it doesn't need to list itself, but it won't hurt.) Do not list - any bridge relay as it would compromise its concealment. + any bridge relay as it would compromise its concealment. When listing a + node, it is preferable to do so as a fingerprint as opposed to a nickname + as fingerprints are a more reliable mechanism for identifying a node. **Nickname** __name__:: Set the server's nickname to \'name'. Nicknames must be between 1 and 19 From cd5048d61e64371ea1f7756cefacd9e731f11002 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 27 Mar 2013 21:58:07 -0400 Subject: [PATCH 80/99] Tighten prose in 8590 manpage fix --- doc/tor.1.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 5dc4bc81f..c502c57dd 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -1431,9 +1431,10 @@ is non-zero): that they are in the same \'family', Tor clients will not use them in the same circuit. (Each server only needs to list the other servers in its family; it doesn't need to list itself, but it won't hurt.) Do not list - any bridge relay as it would compromise its concealment. When listing a - node, it is preferable to do so as a fingerprint as opposed to a nickname - as fingerprints are a more reliable mechanism for identifying a node. + any bridge relay as it would compromise its concealment. + + + When listing a node, it's better to list it by fingerprint than by + nickname: fingerprints are more reliable. **Nickname** __name__:: Set the server's nickname to \'name'. Nicknames must be between 1 and 19 From 1bce70a9e3b33d02b2bae4b94a1774db38d19d3a Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Thu, 28 Mar 2013 09:42:49 +0100 Subject: [PATCH 81/99] Make PathsNeededToBuildCircuits option work. --- src/or/config.c | 2 +- src/or/nodelist.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/config.c b/src/or/config.c index a238a1ae7..ffa984bcd 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2485,7 +2485,7 @@ options_validate(or_options_t *old_options, or_options_t *options, log_warn(LD_CONFIG, "PathsNeededToBuildCircuits is too low. Increasing " "to 0.25"); options->PathsNeededToBuildCircuits = 0.25; - } else if (options->PathsNeededToBuildCircuits < 0.95) { + } else if (options->PathsNeededToBuildCircuits > 0.95) { log_warn(LD_CONFIG, "PathsNeededToBuildCircuits is too high. Decreasing " "to 0.95"); options->PathsNeededToBuildCircuits = 0.95; diff --git a/src/or/nodelist.c b/src/or/nodelist.c index 5f3b843d0..178f084b6 100644 --- a/src/or/nodelist.c +++ b/src/or/nodelist.c @@ -1418,7 +1418,7 @@ get_frac_paths_needed_for_circs(const or_options_t *options, const networkstatus_t *ns) { #define DFLT_PCT_USABLE_NEEDED 60 - if (options->PathsNeededToBuildCircuits >= 1.0) { + if (options->PathsNeededToBuildCircuits >= 0.0) { return options->PathsNeededToBuildCircuits; } else { return networkstatus_get_param(ns, "min_paths_for_circs_pct", From 96c0a42a926abec333327c3e9668a5721bab9afc Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 28 Mar 2013 09:33:24 -0400 Subject: [PATCH 82/99] Add a changes file for #8599 --- changes/bug8599 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 changes/bug8599 diff --git a/changes/bug8599 b/changes/bug8599 new file mode 100644 index 000000000..204ef58c3 --- /dev/null +++ b/changes/bug8599 @@ -0,0 +1,4 @@ + o Minor bugfixes: + - Fix some logic errors when the user manually overrides the + PathsNeededToBuildCircuits option in torrc. Fixes bug 8599; bugfix + on 0.2.4.10-alpha. From cc641ff5b05b2f8bc831ff28fa5d4226933d18a0 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Wed, 27 Mar 2013 15:33:58 -0700 Subject: [PATCH 83/99] Add changes file for bug 7799's log message changes. Note this does not close bug 7799. --- changes/bug7799 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 changes/bug7799 diff --git a/changes/bug7799 b/changes/bug7799 new file mode 100644 index 000000000..1bb5597c1 --- /dev/null +++ b/changes/bug7799 @@ -0,0 +1,3 @@ + o Minor changes (log clarification) + - Add more detail to a log message about relaxed timeouts. Hopefully + this additional detail will allow us to diagnose the cause of bug 7799. From 66586da9bc023bf60b2d18e02004a4e278b73359 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Wed, 27 Mar 2013 15:34:54 -0700 Subject: [PATCH 84/99] Add detail to log messages related to bug 7799. Note this does not solve bug 7799, it is only to help us diagnose it. --- src/or/circuituse.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 14576f13d..bbf219a1e 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -536,8 +536,13 @@ circuit_expire_building(void) int first_hop_succeeded = TO_ORIGIN_CIRCUIT(victim)->cpath->state == CPATH_STATE_OPEN; log_info(LD_CIRC, - "No circuits are opened. Relaxing timeout for " - "a circuit with channel state %s. %d guards are live.", + "No circuits are opened. Relaxing timeout for circuit %d " + "(a %s %d-hop circuit in state %s with channel state %s). " + "%d guards are live.", + TO_ORIGIN_CIRCUIT(victim)->global_identifier, + circuit_purpose_to_string(victim->purpose), + TO_ORIGIN_CIRCUIT(victim)->build_state->desired_path_len, + circuit_state_to_string(victim->state), channel_state_to_string(victim->n_chan->state), num_live_entry_guards(0)); @@ -552,10 +557,14 @@ circuit_expire_building(void) } else { static ratelim_t relax_timeout_limit = RATELIM_INIT(3600); log_fn_ratelim(&relax_timeout_limit, LOG_NOTICE, LD_CIRC, - "No circuits are opened. Relaxed timeout for " - "a circuit with channel state %s to %ldms. " - "However, it appears the circuit has timed out anyway. " - "%d guards are live.", + "No circuits are opened. Relaxed timeout for circuit %d " + "(a %s %d-hop circuit in state %s with channel state %s) to " + "%ldms. However, it appears the circuit has timed out " + "anyway. %d guards are live.", + TO_ORIGIN_CIRCUIT(victim)->global_identifier, + circuit_purpose_to_string(victim->purpose), + TO_ORIGIN_CIRCUIT(victim)->build_state->desired_path_len, + circuit_state_to_string(victim->state), channel_state_to_string(victim->n_chan->state), (long)circ_times.close_ms, num_live_entry_guards(0)); } From 1d49ba84a82c6dfb8873cf32fdecdf5af0b65c90 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Wed, 27 Mar 2013 17:43:05 -0700 Subject: [PATCH 85/99] Update the changes file for bug7799. Still not sure it's actually fixed yet... --- changes/bug7799 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/changes/bug7799 b/changes/bug7799 index 1bb5597c1..ed4570129 100644 --- a/changes/bug7799 +++ b/changes/bug7799 @@ -1,3 +1,7 @@ o Minor changes (log clarification) - Add more detail to a log message about relaxed timeouts. Hopefully this additional detail will allow us to diagnose the cause of bug 7799. + o Minor bugfixes + - Don't attempt to relax the timeout of already opened 1-hop circuits. + They might never timeout. This should eliminate some/all cases of + the relaxed timeout log message. From d39e6736fe1608028223604f49d5d091ef23bb27 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Wed, 27 Mar 2013 17:43:27 -0700 Subject: [PATCH 86/99] Don't relax the timeout for already opened 1-hop circuits. --- src/or/circuituse.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/or/circuituse.c b/src/or/circuituse.c index bbf219a1e..8fb70f585 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -529,7 +529,12 @@ circuit_expire_building(void) if (timercmp(&victim->timestamp_began, &cutoff, >)) continue; /* it's still young, leave it alone */ - if (!any_opened_circs) { + /* We need to double-check the opened state here because + * we don't want to consider opened 1-hop dircon circuits for + * deciding when to relax the timeout, but we *do* want to relax + * those circuits too if nothing else is opened *and* they still + * aren't either. */ + if (!any_opened_circs && victim->state != CIRCUIT_STATE_OPEN) { /* It's still young enough that we wouldn't close it, right? */ if (timercmp(&victim->timestamp_began, &close_cutoff, >)) { if (!TO_ORIGIN_CIRCUIT(victim)->relaxed_timeout) { From a7d6683629f499c73b3442bbc1d30b057161df11 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 26 Mar 2013 11:39:13 -0700 Subject: [PATCH 87/99] Bug 8230: Mark circuits as opened before reachability testing. Should silence two path bias Bug messages seen on relays at startup. --- src/or/circuitbuild.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index aec6c6acf..3ab534b08 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -803,6 +803,10 @@ circuit_send_next_onion_skin(origin_circuit_t *circ) control_event_bootstrap(BOOTSTRAP_STATUS_REQUESTING_STATUS, 0); } + pathbias_count_build_success(circ); + circuit_rep_hist_note_result(circ); + circuit_has_opened(circ); /* do other actions as necessary */ + if (!can_complete_circuit && !circ->build_state->onehop_tunnel) { const or_options_t *options = get_options(); can_complete_circuit=1; @@ -819,10 +823,6 @@ circuit_send_next_onion_skin(origin_circuit_t *circ) } } - pathbias_count_build_success(circ); - circuit_rep_hist_note_result(circ); - circuit_has_opened(circ); /* do other actions as necessary */ - /* We're done with measurement circuits here. Just close them */ if (circ->base_.purpose == CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT) { circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_FINISHED); From f6a2f088fdd3b3ed3ccc355c98dde8da37b70a09 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 26 Mar 2013 11:43:40 -0700 Subject: [PATCH 88/99] Bug 8477: Don't warn if fromerly GENERAL circuits still have streams. This can happen in various cases of network failure. --- src/or/connection_edge.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 9c39c2521..5075c474a 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -651,7 +651,9 @@ connection_ap_expire_beginning(void) } continue; } - if (circ->purpose != CIRCUIT_PURPOSE_C_GENERAL) { + if (circ->purpose != CIRCUIT_PURPOSE_C_GENERAL && + circ->purpose != CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT && + circ->purpose != CIRCUIT_PURPOSE_PATH_BIAS_TESTING) { log_warn(LD_BUG, "circuit->purpose == CIRCUIT_PURPOSE_C_GENERAL failed. " "The purpose on the circuit was %s; it was in state %s, " "path_state %s.", From 651e49713c38b8ec2bde285001e46b61c500d10c Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 26 Mar 2013 14:15:58 -0700 Subject: [PATCH 89/99] Bug 8419: Apply the badexit fix from #2203 to validatio too This was causing dirauths to emit flag weight validation warns if there was a sufficiently large amount of badexit bandwidth to make a difference in flag weight results. --- src/or/dirvote.c | 4 ++-- src/or/dirvote.h | 3 +++ src/or/routerparse.c | 13 ++++++++++--- src/or/routerparse.h | 2 +- 4 files changed, 16 insertions(+), 6 deletions(-) diff --git a/src/or/dirvote.c b/src/or/dirvote.c index bcfe2b069..7043cef24 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -1913,7 +1913,7 @@ networkstatus_compute_consensus(smartlist_t *votes, } /* Fix bug 2203: Do not count BadExit nodes as Exits for bw weights */ - if (consensus_method >= 11) { + if (consensus_method >= MIN_METHOD_TO_CUT_BADEXIT_WEIGHT) { is_exit = is_exit && !is_bad_exit; } @@ -2210,7 +2210,7 @@ networkstatus_compute_consensus(smartlist_t *votes, } // Verify balancing parameters if (consensus_method >= MIN_METHOD_FOR_BW_WEIGHTS && added_weights) { - networkstatus_verify_bw_weights(c); + networkstatus_verify_bw_weights(c, consensus_method); } networkstatus_vote_free(c); } diff --git a/src/or/dirvote.h b/src/or/dirvote.h index fbb61b652..8d036d6c1 100644 --- a/src/or/dirvote.h +++ b/src/or/dirvote.h @@ -34,6 +34,9 @@ /** Lowest consensus method that generates microdescriptors */ #define MIN_METHOD_FOR_MICRODESC 8 +/** Lowest consensus method that doesn't count bad exits as exits for weight */ +#define MIN_METHOD_TO_CUT_BADEXIT_WEIGHT 11 + /** Lowest consensus method that ensures a majority of authorities voted * for a param. */ #define MIN_METHOD_FOR_MAJORITY_PARAMS 12 diff --git a/src/or/routerparse.c b/src/or/routerparse.c index a2b4f9e0f..f8edb8407 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -2257,7 +2257,7 @@ networkstatus_v2_parse_from_string(const char *s) /** Verify the bandwidth weights of a network status document */ int -networkstatus_verify_bw_weights(networkstatus_t *ns) +networkstatus_verify_bw_weights(networkstatus_t *ns, int consensus_method) { int64_t weight_scale; int64_t G=0, M=0, E=0, D=0, T=0; @@ -2343,14 +2343,21 @@ networkstatus_verify_bw_weights(networkstatus_t *ns) // Then, gather G, M, E, D, T to determine case SMARTLIST_FOREACH_BEGIN(ns->routerstatus_list, routerstatus_t *, rs) { + int is_exit = 0; + if (consensus_method >= MIN_METHOD_TO_CUT_BADEXIT_WEIGHT) { + /* Bug #2203: Don't count bad exits as exits for balancing */ + is_exit = rs->is_exit && !rs->is_bad_exit; + } else { + is_exit = rs->is_exit; + } if (rs->has_bandwidth) { T += rs->bandwidth; - if (rs->is_exit && rs->is_possible_guard) { + if (is_exit && rs->is_possible_guard) { D += rs->bandwidth; Gtotal += Wgd*rs->bandwidth; Mtotal += Wmd*rs->bandwidth; Etotal += Wed*rs->bandwidth; - } else if (rs->is_exit) { + } else if (is_exit) { E += rs->bandwidth; Mtotal += Wme*rs->bandwidth; Etotal += Wee*rs->bandwidth; diff --git a/src/or/routerparse.h b/src/or/routerparse.h index 859a691e2..7bf7d7907 100644 --- a/src/or/routerparse.h +++ b/src/or/routerparse.h @@ -54,7 +54,7 @@ void dump_distinct_digest_count(int severity); int compare_routerstatus_entries(const void **_a, const void **_b); int compare_vote_routerstatus_entries(const void **_a, const void **_b); networkstatus_v2_t *networkstatus_v2_parse_from_string(const char *s); -int networkstatus_verify_bw_weights(networkstatus_t *ns); +int networkstatus_verify_bw_weights(networkstatus_t *ns, int); networkstatus_t *networkstatus_parse_vote_from_string(const char *s, const char **eos_out, networkstatus_type_t ns_type); From 80d8fb23e39e16764447f608428356bd5c49e4c6 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 26 Mar 2013 14:22:23 -0700 Subject: [PATCH 90/99] Changes file for 8230, 8477 and 8419. --- changes/log-noise | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 changes/log-noise diff --git a/changes/log-noise b/changes/log-noise new file mode 100644 index 000000000..bbbf0d2c0 --- /dev/null +++ b/changes/log-noise @@ -0,0 +1,11 @@ + o Minor bugfixes (log message reduction) + - Fix a path state issue that triggered a notice during relay startup. + Fixes bug #8320; bugfix on 0.2.4.10-alpha. + - Reduce occurrences of warns about circuit purpose in + connection_ap_expire_building(). Fixes bug #8477; bugfix on + 0.2.4.11-alpha. + - Fix a directory authority warn caused when we have a large amount + of badexit bandwidth. Fixes bug #8419; bugfix on 0.2.2.10-alpha. + - Reduce a path bias length check notice log to info. The notice + is triggered when creating controller circuits. Fixes bug #8196; + bugfix on 0.2.4.8-alpha. From 9117b142186941f99eae8e07626f12f0b60acd44 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Tue, 26 Mar 2013 15:57:38 -0700 Subject: [PATCH 91/99] Bug #8196: Demote a path bias notice that can be caused by controllers. We didn't see this in normal usage anyway. --- src/or/circuitbuild.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 3ab534b08..7db2b70bf 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1378,7 +1378,7 @@ pathbias_should_count(origin_circuit_t *circ) if (circ->build_state->desired_path_len != 1 || !circ->build_state->onehop_tunnel) { if ((rate_msg = rate_limit_log(&count_limit, approx_time()))) { - log_notice(LD_BUG, + log_info(LD_BUG, "One-hop circuit has length %d. Path state is %s. " "Circuit is a %s currently %s.%s", circ->build_state->desired_path_len, From 2b05a8c6716f1c7e07e658719c093723809e19a6 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Mon, 25 Mar 2013 16:04:30 -0700 Subject: [PATCH 92/99] Clip invalid path bias counts at startup. There was a bug in Tor prior to 0.2.4.10-alpha that allowed counts to become invalid. Clipping the counts at startup allows us to rule out log messages due to corruption from these prior Tor versions. --- src/or/entrynodes.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index 6b21d1092..3234f4f3c 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -1211,6 +1211,21 @@ entry_guards_parse_state(or_state_t *state, int set, char **msg) continue; } + if (use_cnt < success_cnt) { + int severity = LOG_INFO; + /* If this state file was written by a Tor that would have + * already fixed it, then the overcounting bug is still there.. */ + if (tor_version_as_new_as(state_version, "0.2.4.12-alpha")) { + severity = LOG_NOTICE; + } + log_fn(severity, LD_BUG, + "State file contains unexpectedly high usage success " + "counts %lf/%lf for Guard %s ($%s)", + success_cnt, use_cnt, + node->nickname, hex_str(node->identity, DIGEST_LEN)); + success_cnt = use_cnt; + } + node->use_attempts = use_cnt; node->use_successes = success_cnt; @@ -1261,6 +1276,21 @@ entry_guards_parse_state(or_state_t *state, int set, char **msg) unusable = 0; } + if (hop_cnt < success_cnt) { + int severity = LOG_INFO; + /* If this state file was written by a Tor that would have + * already fixed it, then the overcounting bug is still there.. */ + if (tor_version_as_new_as(state_version, "0.2.4.12-alpha")) { + severity = LOG_NOTICE; + } + log_fn(severity, LD_BUG, + "State file contains unexpectedly high success counts " + "%lf/%lf for Guard %s ($%s)", + success_cnt, hop_cnt, + node->nickname, hex_str(node->identity, DIGEST_LEN)); + success_cnt = hop_cnt; + } + node->circ_attempts = hop_cnt; node->circ_successes = success_cnt; From 56e7dff7bd4769c2a255aac7c9d266914bbf9f57 Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Mon, 25 Mar 2013 16:05:42 -0700 Subject: [PATCH 93/99] Add additional checks for Path Bias scaling. Just in case more issues remain with scaling, it would be nice to pin-point them as such. --- src/or/circuitbuild.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 7db2b70bf..df5687764 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1734,6 +1734,13 @@ pathbias_count_use_success(origin_circuit_t *circ) guard->use_successes++; entry_guards_changed(); + if (guard->use_attempts < guard->use_successes) { + log_notice(LD_BUG, "Unexpectedly high use successes counts (%f/%f) " + "for guard %s=%s", + guard->use_successes, guard->use_attempts, + guard->nickname, hex_str(guard->identity, DIGEST_LEN)); + } + log_debug(LD_CIRC, "Marked circuit %d (%f/%f) as used successfully for guard " "%s ($%s).", @@ -2481,6 +2488,9 @@ pathbias_scale_close_rates(entry_guard_t *guard) int opened_built = pathbias_count_circs_in_states(guard, PATH_STATE_BUILD_SUCCEEDED, PATH_STATE_USE_FAILED); + /* Verify that the counts are sane before and after scaling */ + int counts_are_sane = (guard->circ_attempts >= guard->circ_successes); + guard->circ_attempts -= opened_attempts; guard->circ_successes -= opened_built; @@ -2502,6 +2512,16 @@ pathbias_scale_close_rates(entry_guard_t *guard) guard->circ_successes, guard->successful_circuits_closed, guard->circ_attempts, opened_built, opened_attempts, guard->nickname, hex_str(guard->identity, DIGEST_LEN)); + + /* Have the counts just become invalid by this scaling attempt? */ + if (counts_are_sane && guard->circ_attempts < guard->circ_successes) { + log_notice(LD_BUG, + "Scaling has mangled pathbias counts to %f/%f (%d/%d open) " + "for guard %s ($%s)", + guard->circ_successes, guard->circ_attempts, opened_built, + opened_attempts, guard->nickname, + hex_str(guard->identity, DIGEST_LEN)); + } } } @@ -2524,6 +2544,9 @@ pathbias_scale_use_rates(entry_guard_t *guard) double scale_ratio = pathbias_get_scale_ratio(options); int opened_attempts = pathbias_count_circs_in_states(guard, PATH_STATE_USE_ATTEMPTED, PATH_STATE_USE_SUCCEEDED); + /* Verify that the counts are sane before and after scaling */ + int counts_are_sane = (guard->use_attempts >= guard->use_successes); + guard->use_attempts -= opened_attempts; guard->use_attempts *= scale_ratio; @@ -2535,6 +2558,17 @@ pathbias_scale_use_rates(entry_guard_t *guard) "Scaled pathbias use counts to %f/%f (%d open) for guard %s ($%s)", guard->use_successes, guard->use_attempts, opened_attempts, guard->nickname, hex_str(guard->identity, DIGEST_LEN)); + + /* Have the counts just become invalid by this scaling attempt? */ + if (counts_are_sane && guard->use_attempts < guard->use_successes) { + log_notice(LD_BUG, + "Scaling has mangled pathbias usage counts to %f/%f " + "(%d open) for guard %s ($%s)", + guard->circ_successes, guard->circ_attempts, + opened_attempts, guard->nickname, + hex_str(guard->identity, DIGEST_LEN)); + } + entry_guards_changed(); } } From 3207ace6050ea0463cfc26d6e95d737785baa5fa Mon Sep 17 00:00:00 2001 From: Mike Perry Date: Mon, 25 Mar 2013 16:06:26 -0700 Subject: [PATCH 94/99] Changes file. --- changes/bug8235-diagnosing | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changes/bug8235-diagnosing diff --git a/changes/bug8235-diagnosing b/changes/bug8235-diagnosing new file mode 100644 index 000000000..b760035cf --- /dev/null +++ b/changes/bug8235-diagnosing @@ -0,0 +1,5 @@ + o Minor features (diagnostic) + - If the state file's path bias counts are invalid (presumably from a + buggy tor prior to 0.2.4.10-alpha), make them correct. + - Add additional checks and log messages to the scaling of Path Bias + counts, in case there still are remaining issues with scaling. From 33b7083f26e30304f6c9296e3cb7205f6bda0c95 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 3 Apr 2013 09:36:37 -0400 Subject: [PATCH 95/99] Fix a wide line --- src/or/circuitbuild.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index df5687764..31242f6c1 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -2555,9 +2555,9 @@ pathbias_scale_use_rates(entry_guard_t *guard) guard->use_attempts += opened_attempts; log_info(LD_CIRC, - "Scaled pathbias use counts to %f/%f (%d open) for guard %s ($%s)", - guard->use_successes, guard->use_attempts, opened_attempts, - guard->nickname, hex_str(guard->identity, DIGEST_LEN)); + "Scaled pathbias use counts to %f/%f (%d open) for guard %s ($%s)", + guard->use_successes, guard->use_attempts, opened_attempts, + guard->nickname, hex_str(guard->identity, DIGEST_LEN)); /* Have the counts just become invalid by this scaling attempt? */ if (counts_are_sane && guard->use_attempts < guard->use_successes) { From 2c40138210fe934f687470fc4bd20513982bf424 Mon Sep 17 00:00:00 2001 From: Desoxy Date: Wed, 3 Apr 2013 18:50:27 +0200 Subject: [PATCH 96/99] Controller: Always send ADDRMAP event after RESOLVE command (#8596 part 1/2) Since 7536c40 only DNS results for real SOCKS requests are added to the cache, but not DNS results for DNSPort queries or control connection RESOLVE queries. Only cache additions would trigger ADDRMAP events on successful resolve. Change it so that DNS results received after a RESOLVE command also generate ADDRMAP events. --- src/or/connection_edge.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 5075c474a..051970881 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -2040,11 +2040,8 @@ tell_controller_about_resolved_result(entry_connection_t *conn, int ttl, time_t expires) { - - if (ttl >= 0 && (answer_type == RESOLVED_TYPE_IPV4 || - answer_type == RESOLVED_TYPE_HOSTNAME)) { - return; /* we already told the controller. */ - } else if (answer_type == RESOLVED_TYPE_IPV4 && answer_len >= 4) { + expires = time(NULL) + ttl; + if (answer_type == RESOLVED_TYPE_IPV4 && answer_len >= 4) { char *cp = tor_dup_ip(ntohl(get_uint32(answer))); control_event_address_mapped(conn->socks_request->address, cp, expires, NULL); @@ -2116,8 +2113,9 @@ connection_ap_handshake_socks_resolved(entry_connection_t *conn, conn->socks_request->has_finished = 1; return; } else { - /* This must be a request from the controller. We already sent - * a mapaddress if there's a ttl. */ + /* This must be a request from the controller. Since answers to those + * requests are not cached, they do not generate an ADDRMAP event on + * their own. */ tell_controller_about_resolved_result(conn, answer_type, answer_len, (char*)answer, ttl, expires); conn->socks_request->has_finished = 1; From 74f5e304e49b8ccde2b97232c49e5025dba21f59 Mon Sep 17 00:00:00 2001 From: Desoxy Date: Wed, 3 Apr 2013 18:50:51 +0200 Subject: [PATCH 97/99] Controller: Add CACHED keyword to ADDRMAP events (#8596 part 2/2) Add keyword CACHED="YES"/"NO" to ADDRMAP control events to indicate whether the DNS response will be cached or not. --- changes/bug8596 | 3 +++ src/or/addressmap.c | 2 +- src/or/connection_edge.c | 9 ++++----- src/or/control.c | 14 ++++++++------ src/or/control.h | 3 ++- 5 files changed, 18 insertions(+), 13 deletions(-) create mode 100644 changes/bug8596 diff --git a/changes/bug8596 b/changes/bug8596 new file mode 100644 index 000000000..dd36bad85 --- /dev/null +++ b/changes/bug8596 @@ -0,0 +1,3 @@ + o Minor features: + - Add CACHED keyword to ADDRMAP events in the control protocol to indicate + whether a DNS result will be cached or not. diff --git a/src/or/addressmap.c b/src/or/addressmap.c index 826eb301d..79e4b7c5e 100644 --- a/src/or/addressmap.c +++ b/src/or/addressmap.c @@ -560,7 +560,7 @@ addressmap_register(const char *address, char *new_address, time_t expires, log_info(LD_CONFIG, "Addressmap: (re)mapped '%s' to '%s'", safe_str_client(address), safe_str_client(ent->new_address)); - control_event_address_mapped(address, ent->new_address, expires, NULL); + control_event_address_mapped(address, ent->new_address, expires, NULL, 1); } /** An attempt to resolve address failed at some OR. diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 051970881..926fcab90 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -2044,18 +2044,17 @@ tell_controller_about_resolved_result(entry_connection_t *conn, if (answer_type == RESOLVED_TYPE_IPV4 && answer_len >= 4) { char *cp = tor_dup_ip(ntohl(get_uint32(answer))); control_event_address_mapped(conn->socks_request->address, - cp, expires, NULL); + cp, expires, NULL, 0); tor_free(cp); } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256) { char *cp = tor_strndup(answer, answer_len); control_event_address_mapped(conn->socks_request->address, - cp, expires, NULL); + cp, expires, NULL, 0); tor_free(cp); } else { control_event_address_mapped(conn->socks_request->address, - "", - time(NULL)+ttl, - "error=yes"); + "", time(NULL)+ttl, + "error=yes", 0); } } diff --git a/src/or/control.c b/src/or/control.c index 2a6846418..f50b87711 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -2947,7 +2947,7 @@ handle_control_resolve(control_connection_t *conn, uint32_t len, send_control_done(conn); SMARTLIST_FOREACH(failed, const char *, arg, { control_event_address_mapped(arg, arg, time(NULL), - "internal"); + "internal", 0); }); SMARTLIST_FOREACH(args, char *, cp, tor_free(cp)); @@ -4024,15 +4024,17 @@ control_event_descriptors_changed(smartlist_t *routers) */ int control_event_address_mapped(const char *from, const char *to, time_t expires, - const char *error) + const char *error, const int cached) { if (!EVENT_IS_INTERESTING(EVENT_ADDRMAP)) return 0; if (expires < 3 || expires == TIME_MAX) send_control_event(EVENT_ADDRMAP, ALL_FORMATS, - "650 ADDRMAP %s %s NEVER %s\r\n", from, to, - error?error:""); + "650 ADDRMAP %s %s NEVER %s%s" + "CACHED=\"%s\"\r\n", + from, to, error?error:"", error?" ":"", + cached?"YES":"NO"); else { char buf[ISO_TIME_LEN+1]; char buf2[ISO_TIME_LEN+1]; @@ -4040,10 +4042,10 @@ control_event_address_mapped(const char *from, const char *to, time_t expires, format_iso_time(buf2,expires); send_control_event(EVENT_ADDRMAP, ALL_FORMATS, "650 ADDRMAP %s %s \"%s\"" - " %s%sEXPIRES=\"%s\"\r\n", + " %s%sEXPIRES=\"%s\" CACHED=\"%s\"\r\n", from, to, buf, error?error:"", error?" ":"", - buf2); + buf2, cached?"YES":"NO"); } return 0; diff --git a/src/or/control.h b/src/or/control.h index 51ae230b0..0ea7941b1 100644 --- a/src/or/control.h +++ b/src/or/control.h @@ -53,7 +53,8 @@ int control_event_stream_bandwidth_used(void); void control_event_logmsg(int severity, uint32_t domain, const char *msg); int control_event_descriptors_changed(smartlist_t *routers); int control_event_address_mapped(const char *from, const char *to, - time_t expires, const char *error); + time_t expires, const char *error, + const int cached); int control_event_or_authdir_new_descriptor(const char *action, const char *desc, size_t desclen, From d1dc23c9386c6c85ec50c5b4d0a9077ffcb78683 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Thu, 4 Apr 2013 18:05:14 +0200 Subject: [PATCH 98/99] test.c: Try to create a more random temporary directory for our workspace (re: Bug#8638) --- changes/bug8638 | 3 +++ src/test/test.c | 13 +++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 changes/bug8638 diff --git a/changes/bug8638 b/changes/bug8638 new file mode 100644 index 000000000..3a790e567 --- /dev/null +++ b/changes/bug8638 @@ -0,0 +1,3 @@ + o Minor features + In our testsuite, create temporary directories with a bit more entropy + in their name to make name collissions less likely. Fixes bug 8638. diff --git a/src/test/test.c b/src/test/test.c index d3d3bd50b..0b55f7bb7 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -88,8 +88,14 @@ setup_directory(void) { static int is_setup = 0; int r; + char rnd[256], rnd32[256]; if (is_setup) return; +/* Due to base32 limitation needs to be a multiple of 5. */ +#define RAND_PATH_BYTES 5 + crypto_rand(rnd, RAND_PATH_BYTES); + base32_encode(rnd32, sizeof(rnd32), rnd, RAND_PATH_BYTES); + #ifdef _WIN32 { char buf[MAX_PATH]; @@ -98,11 +104,11 @@ setup_directory(void) if (!GetTempPathA(sizeof(buf),buf)) tmp = "c:\\windows\\temp"; tor_snprintf(temp_dir, sizeof(temp_dir), - "%s\\tor_test_%d", tmp, (int)getpid()); + "%s\\tor_test_%d_%s", tmp, (int)getpid(), rnd32); r = mkdir(temp_dir); } #else - tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d", (int) getpid()); + tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d_%s", (int) getpid(), rnd32); r = mkdir(temp_dir, 0700); #endif if (r) { @@ -2094,6 +2100,7 @@ main(int c, const char **v) return 1; } crypto_set_tls_dh_prime(NULL); + crypto_seed_rng(1); rep_hist_init(); network_init(); setup_directory(); @@ -2106,8 +2113,6 @@ main(int c, const char **v) return 1; } - crypto_seed_rng(1); - atexit(remove_directory); have_failed = (tinytest_main(c, v, testgroups) != 0); From b41f03f6dfd855e34628d935340d0f6292c82af8 Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Mon, 8 Apr 2013 12:18:00 +0200 Subject: [PATCH 99/99] Update to the April 2013 GeoIP database. --- changes/geoip-apr2013 | 3 + src/config/geoip | 20949 ++++++++++------------------------------ 2 files changed, 5143 insertions(+), 15809 deletions(-) create mode 100644 changes/geoip-apr2013 diff --git a/changes/geoip-apr2013 b/changes/geoip-apr2013 new file mode 100644 index 000000000..74d9c63b7 --- /dev/null +++ b/changes/geoip-apr2013 @@ -0,0 +1,3 @@ + o Minor features: + - Update to the April 3 2013 Maxmind GeoLite Country database. + diff --git a/src/config/geoip b/src/config/geoip index 8e9f51385..da6c3eb8b 100644 --- a/src/config/geoip +++ b/src/config/geoip @@ -1,4 +1,4 @@ -# Last updated based on March 6 2013 Maxmind GeoLite Country +# Last updated based on April 3 2013 Maxmind GeoLite Country # Visit the following URL for details on the conversion: # https://gitweb.torproject.org/tor.git/blob/HEAD:/src/config/README.geoip 16777216,16777471,AU @@ -68,8 +68,7 @@ 29884416,29949951,TW 29949952,30015487,KR 30015488,30408703,CN -30408704,33488895,KR -33488896,33554431,AU +30408704,33554431,KR 33554432,34603007,FR 34603008,34604543,EU 34604544,34605055,DE @@ -301,20 +300,19 @@ 84545536,84549631,GB 84549632,84551679,GE 84551680,84557823,DE -84557824,84557824,NL -84557825,84557825,US +84557824,84557825,NL 84557826,84557827,RU 84557828,84557831,SG 84557832,84557839,CA 84557840,84557887,US 84557888,84557951,BG 84557952,84557967,AU -84557968,84557983,US -84557984,84557991,NL +84557968,84557991,US 84557992,84557999,IT 84558000,84558015,US 84558016,84558047,JO -84558048,84558127,US +84558048,84558055,NL +84558056,84558127,US 84558128,84558143,RU 84558144,84558175,NL 84558176,84558191,US @@ -340,8 +338,8 @@ 84558560,84558567,GR 84558568,84558575,BZ 84558576,84558583,RO -84558584,84558655,US -84558656,84558855,NL +84558584,84558591,US +84558592,84558855,NL 84558856,84558863,US 84558864,84558871,NL 84558872,84558879,IN @@ -354,18 +352,15 @@ 84558920,84558923,ZA 84558924,84558927,ES 84558928,84558931,DE -84558932,84558935,TR +84558932,84558935,HR 84558936,84558943,PT 84558944,84558947,TR 84558948,84558951,US 84558952,84558959,NL 84558960,84558971,US 84558972,84558973,RU -84558974,84558974,GB -84558975,84558975,EG -84558976,84558983,US -84558984,84558991,NL -84558992,84559007,US +84558974,84558975,NL +84558976,84559007,US 84559008,84559015,TH 84559016,84559023,BR 84559024,84559031,AR @@ -388,18 +383,15 @@ 84559184,84559191,US 84559192,84559199,GB 84559200,84559211,IN -84559212,84559223,US +84559212,84559215,TR +84559216,84559223,JP 84559224,84559231,UA 84559232,84559247,NL 84559248,84559251,GB 84559252,84559253,MA -84559254,84559254,AU -84559255,84559255,NL +84559254,84559255,NL 84559256,84559259,AE -84559260,84559260,ZA -84559261,84559261,NL -84559262,84559262,GB -84559263,84559263,MA +84559260,84559263,NL 84559264,84559271,ES 84559272,84559279,NL 84559280,84559295,US @@ -408,20 +400,20 @@ 84559312,84559327,NL 84559328,84559335,US 84559336,84559343,TR -84559344,84559367,US +84559344,84559351,SA +84559352,84559367,US 84559368,84559375,GB 84559376,84559383,SG 84559384,84559399,US 84559400,84559403,CN 84559404,84559405,RU -84559406,84559406,AU -84559407,84559407,EG +84559406,84559407,NL 84559408,84559415,US 84559416,84559419,RU 84559420,84559421,VG -84559422,84559422,AU -84559423,84559431,LB -84559432,84559439,SE +84559422,84559423,NL +84559424,84559431,LB +84559432,84559439,GB 84559440,84559447,CN 84559448,84559455,GB 84559456,84559457,NL @@ -444,24 +436,23 @@ 84559592,84559607,AU 84559608,84559611,PL 84559612,84559613,RU -84559614,84559614,EG -84559615,84559615,NL +84559614,84559615,NL 84559616,84559623,AE 84559624,84559631,MA 84559632,84559647,NL 84559648,84559663,US 84559664,84559679,NL -84559680,84559727,US +84559680,84559711,US +84559712,84559719,NL +84559720,84559727,US 84559728,84559735,NL 84559736,84559743,GB -84559744,84559823,NL +84559744,84559807,NL +84559808,84559823,US 84559824,84559831,GB 84559832,84559839,NL 84559840,84559847,CA -84559848,84559848,LB -84559849,84559849,CN -84559850,84559850,GR -84559851,84559851,GB +84559848,84559851,NL 84559852,84559863,US 84559864,84559867,ES 84559868,84559879,NL @@ -482,16 +473,14 @@ 84560048,84560055,BD 84560056,84560063,NL 84560064,84560095,SE -84560096,84560103,NL -84560104,84560111,LB +84560096,84560111,NL 84560112,84560119,ES 84560120,84560127,AE 84560128,84560135,US 84560136,84560143,ES 84560144,84560151,US 84560152,84560159,IN -84560160,84560191,US -84560192,84560207,NL +84560160,84560207,US 84560208,84560223,JO 84560224,84560239,AE 84560240,84560255,GB @@ -518,7 +507,7 @@ 84560560,84560567,JP 84560568,84560575,AU 84560576,84560607,CN -84560608,84560623,US +84560608,84560623,NL 84560624,84560631,SE 84560632,84560635,SA 84560636,84560639,US @@ -532,11 +521,10 @@ 84560800,84560815,TR 84560816,84560823,US 84560824,84560827,RU -84560828,84560831,GB -84560832,84560847,US +84560828,84560847,US 84560848,84560855,NL 84560856,84560859,IN -84560860,84560863,KR +84560860,84560863,US 84560864,84560879,CN 84560880,84560895,US 84560896,84560903,PT @@ -545,7 +533,8 @@ 84560920,84560927,IL 84560928,84560935,TR 84560936,84560943,ES -84560944,84560999,US +84560944,84560991,US +84560992,84560999,IT 84561000,84561007,IN 84561008,84561015,US 84561016,84561023,NL @@ -557,7 +546,7 @@ 84561056,84561063,RU 84561064,84561079,GB 84561080,84561087,US -84561088,84561095,IL +84561088,84561095,NL 84561096,84561103,ES 84561104,84561115,GB 84561116,84561127,NL @@ -567,7 +556,7 @@ 84561216,84561247,US 84561248,84561255,NL 84561256,84561263,US -84561264,84561267,NL +84561264,84561267,TR 84561268,84561271,CY 84561272,84561275,LB 84561276,84561279,TR @@ -584,8 +573,9 @@ 84561432,84561435,NL 84561436,84561443,US 84561444,84561447,IE -84561448,84561455,US -84561456,84561471,GB +84561448,84561455,NL +84561456,84561463,US +84561464,84561471,GB 84561472,84561479,US 84561480,84561483,RU 84561484,84561487,CA @@ -596,7 +586,7 @@ 84561528,84561543,US 84561544,84561551,CA 84561552,84561559,YE -84561560,84561567,GB +84561560,84561567,NL 84561568,84561631,US 84561632,84561639,NL 84561640,84561647,ES @@ -608,8 +598,7 @@ 84561704,84561711,NL 84561712,84561727,TR 84561728,84561791,US -84561792,84561895,NL -84561896,84561903,US +84561792,84561903,NL 84561904,84561911,CN 84561912,84561919,US 84561920,84562431,NL @@ -651,12 +640,9 @@ 84562928,84562939,US 84562940,84562943,GB 84562944,84562951,DK -84562952,84562952,AU -84562953,84562953,US +84562952,84562953,NL 84562954,84562955,RU -84562956,84562956,CA -84562957,84562957,GR -84562958,84562959,US +84562956,84562959,NL 84562960,84562963,SE 84562964,84562975,NL 84562976,84562983,ES @@ -667,16 +653,13 @@ 84563012,84563015,RU 84563016,84563019,US 84563020,84563021,RU -84563022,84563022,BR -84563023,84563031,US +84563022,84563023,NL +84563024,84563031,US 84563032,84563035,GB 84563036,84563037,MA 84563038,84563039,HK 84563040,84563043,TR -84563044,84563044,EG -84563045,84563045,TR -84563046,84563046,SA -84563047,84563047,AE +84563044,84563047,NL 84563048,84563055,CN 84563056,84563063,GB 84563064,84563067,RO @@ -686,10 +669,7 @@ 84563096,84563103,AU 84563104,84563111,CH 84563112,84563115,RU -84563116,84563116,TR -84563117,84563117,RU -84563118,84563119,US -84563120,84563123,NL +84563116,84563123,NL 84563124,84563127,AE 84563128,84563135,GB 84563136,84563143,LT @@ -700,8 +680,7 @@ 84563176,84563183,NL 84563184,84563195,CA 84563196,84563197,RU -84563198,84563198,US -84563199,84563199,NL +84563198,84563199,NL 84563200,84563207,CH 84563208,84563211,CN 84563212,84563215,TR @@ -722,10 +701,7 @@ 84563328,84563391,NL 84563392,84563399,SA 84563400,84563407,ES -84563408,84563408,DE -84563409,84563409,AE -84563410,84563410,US -84563411,84563411,AU +84563408,84563411,NL 84563412,84563415,AF 84563416,84563423,CH 84563424,84563431,US @@ -739,7 +715,7 @@ 84563496,84563503,EG 84563504,84563511,CN 84563512,84563517,AU -84563518,84563519,US +84563518,84563519,NL 84563520,84563527,IN 84563528,84563531,CN 84563532,84563535,NL @@ -751,7 +727,7 @@ 84563592,84563595,RU 84563596,84563597,IN 84563598,84563599,AU -84563600,84563615,US +84563600,84563615,DK 84563616,84563623,CN 84563624,84563627,NL 84563628,84563631,GB @@ -761,14 +737,13 @@ 84563656,84563663,EG 84563664,84563671,SA 84563672,84563679,NL -84563680,84563687,US +84563680,84563683,US +84563684,84563687,IN 84563688,84563691,AE 84563692,84563695,GB 84563696,84563703,KW -84563704,84563712,NL -84563713,84563713,AU -84563714,84563714,CN -84563715,84563719,GB +84563704,84563715,NL +84563716,84563719,GB 84563720,84563727,RO 84563728,84563731,US 84563732,84563735,NL @@ -781,9 +756,9 @@ 84563840,84563847,CN 84563848,84563851,IN 84563852,84563853,EG -84563854,84563863,US -84563864,84563864,FI -84563865,84563865,BR +84563854,84563855,NL +84563856,84563863,US +84563864,84563865,NL 84563866,84563867,SA 84563868,84563871,FI 84563872,84563875,NL @@ -791,28 +766,22 @@ 84563880,84563887,GB 84563888,84563895,US 84563896,84563903,NL -84563904,84563905,CN -84563906,84563906,RU -84563907,84563907,NL +84563904,84563905,US +84563906,84563907,NL 84563908,84563911,RU 84563912,84563915,GB 84563916,84563917,US 84563918,84563919,AE -84563920,84563923,NL -84563924,84563925,TR -84563926,84563927,CN -84563928,84563935,CH -84563936,84563943,ES +84563920,84563927,NL +84563928,84563943,ES 84563944,84563951,US 84563952,84563953,AE -84563954,84563954,US -84563955,84563955,NL -84563956,84563958,CN -84563959,84563959,US +84563954,84563955,NL +84563956,84563957,CN +84563958,84563959,NL 84563960,84563963,GB -84563964,84563965,CN -84563966,84563966,AU -84563967,84563967,TR +84563964,84563965,BZ +84563966,84563967,NL 84563968,84563975,US 84563976,84563979,GB 84563980,84563983,NL @@ -850,8 +819,7 @@ 84564312,84564319,US 84564320,84564327,MA 84564328,84564331,DE -84564332,84564332,ES -84564333,84564333,KW +84564332,84564333,NL 84564334,84564335,US 84564336,84564343,IL 84564344,84564359,TR @@ -1004,15 +972,13 @@ 84566272,84566279,US 84566280,84566287,BZ 84566288,84566289,US -84566290,84566290,LT -84566291,84566291,NO +84566290,84566291,NL 84566292,84566293,US -84566294,84566294,GB -84566295,84566303,US +84566294,84566295,NL +84566296,84566301,US +84566302,84566303,NL 84566304,84566311,GB -84566312,84566313,NL -84566314,84566317,US -84566318,84566319,LV +84566312,84566319,NL 84566320,84566327,US 84566328,84566335,JO 84566336,84566343,NL @@ -1020,9 +986,12 @@ 84566348,84566351,GB 84566352,84566359,FR 84566360,84566367,NL -84566368,84566423,US +84566368,84566387,US +84566388,84566391,NL +84566392,84566423,US 84566424,84566427,NL -84566428,84566431,US +84566428,84566429,US +84566430,84566431,NL 84566432,84566439,CN 84566440,84566447,US 84566448,84566455,LT @@ -1032,9 +1001,8 @@ 84566480,84566487,IN 84566488,84566491,AR 84566492,84566495,ES -84566496,84566500,GB -84566501,84566501,US -84566502,84566503,NL +84566496,84566499,GB +84566500,84566503,NL 84566504,84566511,US 84566512,84566515,NL 84566516,84566519,US @@ -1313,12 +1281,9 @@ 84570752,84570767,NL 84570768,84570771,SA 84570772,84570773,AE -84570774,84570774,BA -84570775,84570775,US +84570774,84570775,NL 84570776,84570779,GB -84570780,84570780,BH -84570781,84570782,US -84570783,84570783,CN +84570780,84570783,NL 84570784,84570791,IT 84570792,84570799,EG 84570800,84570815,CA @@ -1341,7 +1306,9 @@ 84570980,84570991,IN 84570992,84570999,US 84571000,84571007,IL -84571008,84571047,US +84571008,84571009,US +84571010,84571011,NL +84571012,84571047,US 84571048,84571055,JO 84571056,84571073,US 84571074,84571075,GB @@ -1365,8 +1332,8 @@ 84571224,84571231,PL 84571232,84571247,CN 84571248,84571261,AU -84571262,84571262,GB -84571263,84571295,US +84571262,84571263,NL +84571264,84571295,US 84571296,84571303,AU 84571304,84571311,HU 84571312,84571319,AE @@ -1453,14 +1420,9 @@ 84572244,84572247,TR 84572248,84572251,GB 84572252,84572259,IT -84572260,84572261,NL -84572262,84572262,EG -84572263,84572263,AE -84572264,84572271,NL +84572260,84572271,NL 84572272,84572279,US -84572280,84572287,NL -84572288,84572289,US -84572290,84572291,NL +84572280,84572291,NL 84572292,84572295,US 84572296,84572303,BR 84572304,84572311,NL @@ -1508,13 +1470,11 @@ 84572704,84572711,US 84572712,84572715,GB 84572716,84572717,HR -84572718,84572718,GB -84572719,84572719,GR +84572718,84572719,NL 84572720,84572727,CA 84572728,84572731,US 84572732,84572733,SA -84572734,84572734,CN -84572735,84572735,TR +84572734,84572735,NL 84572736,84572743,EG 84572744,84572751,GB 84572752,84572759,HR @@ -1559,9 +1519,7 @@ 84573392,84573415,US 84573416,84573423,NL 84573424,84573439,US -84573440,84573440,NL -84573441,84573441,US -84573442,84573443,NL +84573440,84573443,NL 84573444,84573447,IT 84573448,84573455,US 84573456,84573463,JP @@ -1569,11 +1527,11 @@ 84573472,84573479,PS 84573480,84573495,NL 84573496,84573499,AE -84573500,84573502,HK -84573503,84573511,NL -84573512,84573516,HK -84573517,84573518,NL -84573519,84573571,US +84573500,84573501,HK +84573502,84573511,NL +84573512,84573515,HK +84573516,84573519,NL +84573520,84573571,US 84573572,84573575,GB 84573576,84573579,NL 84573580,84573583,GB @@ -1588,19 +1546,14 @@ 84573624,84573631,NG 84573632,84573639,IE 84573640,84573647,CA -84573648,84573656,LB -84573657,84573657,CY -84573658,84573675,US -84573676,84573676,NL -84573677,84573677,GB -84573678,84573679,TR +84573648,84573655,LB +84573656,84573659,NL +84573660,84573675,US +84573676,84573679,NL 84573680,84573687,HR -84573688,84573688,SA -84573689,84573690,TR -84573691,84573691,AE -84573692,84573694,RO -84573695,84573696,NL -84573697,84573697,BE +84573688,84573691,NL +84573692,84573693,RO +84573694,84573697,NL 84573698,84573699,US 84573700,84573703,RU 84573704,84573711,IT @@ -1676,7 +1629,9 @@ 85394176,85395711,EU 85395712,85395743,GB 85395744,85395775,NG -85395776,85401599,EU +85395776,85396479,EU +85396480,85397503,ES +85397504,85401599,EU 85401600,85403647,IT 85403648,85405695,FR 85405696,85407743,RU @@ -1747,7 +1702,7 @@ 86442288,86442291,PL 86442292,86442295,GB 86442296,86442303,DE -86442304,86442319,IT +86442304,86442319,FR 86442320,86442327,PL 86442328,86442335,FR 86442336,86442343,PT @@ -1803,18 +1758,18 @@ 86443168,86443199,PT 86443200,86443231,IT 86443232,86443295,PT -86443296,86443311,LT -86443312,86443343,IE +86443296,86443327,FR +86443328,86443343,PL 86443344,86443359,IT -86443360,86443363,FR -86443364,86443367,NL -86443368,86443375,FR -86443376,86443391,PT -86443392,86443407,BE +86443360,86443375,FR +86443376,86443391,NL +86443392,86443407,FR 86443408,86443415,PL 86443416,86443423,PT 86443424,86443427,IT -86443428,86443447,FR +86443428,86443435,FR +86443436,86443439,CH +86443440,86443447,FR 86443448,86443451,IT 86443452,86443455,FI 86443456,86443487,NL @@ -1822,8 +1777,7 @@ 86443504,86443507,IT 86443508,86443539,FR 86443540,86443543,PL -86443544,86443551,LT -86443552,86443555,FR +86443544,86443555,FR 86443556,86443559,PL 86443560,86443583,FR 86443584,86443647,GB @@ -1859,7 +1813,7 @@ 86444096,86444103,GB 86444104,86444111,FR 86444112,86444119,GB -86444120,86444123,IT +86444120,86444123,FR 86444124,86444127,BE 86444128,86444135,FR 86444136,86444143,IE @@ -1875,7 +1829,8 @@ 86444336,86444351,GB 86444352,86444367,PL 86444368,86444375,DE -86444376,86444395,FR +86444376,86444379,GB +86444380,86444395,FR 86444396,86444399,GB 86444400,86444415,ES 86444416,86444479,FR @@ -1892,7 +1847,7 @@ 86444568,86444571,LT 86444572,86444583,FR 86444584,86444591,NL -86444592,86444595,FR +86444592,86444595,PT 86444596,86444599,NL 86444600,86444603,IE 86444604,86444639,NL @@ -1943,8 +1898,7 @@ 86445096,86445099,IT 86445100,86445103,FI 86445104,86445111,CH -86445112,86445119,FR -86445120,86445151,PT +86445112,86445151,FR 86445152,86445167,PL 86445168,86445207,FR 86445208,86445211,IE @@ -1969,11 +1923,10 @@ 86445352,86445367,FR 86445368,86445371,IT 86445372,86445375,PL -86445376,86445407,FR -86445408,86445423,IE +86445376,86445423,FR 86445424,86445431,GB 86445432,86445439,BE -86445440,86445455,IE +86445440,86445455,FR 86445456,86445471,PL 86445472,86445479,FR 86445480,86445483,ES @@ -2025,9 +1978,7 @@ 86446400,86446403,IT 86446404,86446407,FR 86446408,86446415,DE -86446416,86446419,FR -86446420,86446423,PT -86446424,86446427,FR +86446416,86446427,FR 86446428,86446431,DE 86446432,86446439,PL 86446440,86446447,FR @@ -2079,8 +2030,7 @@ 86446888,86446911,NL 86446912,86446927,FR 86446928,86446931,PL -86446932,86446943,FR -86446944,86446975,ES +86446932,86446975,FR 86446976,86446979,PL 86446980,86446991,FR 86446992,86446999,DE @@ -2095,20 +2045,19 @@ 86447072,86447087,PL 86447088,86447091,GB 86447092,86447103,ES -86447104,86447119,FR -86447120,86447135,IE -86447136,86447147,FR +86447104,86447147,FR 86447148,86447151,PL 86447152,86447167,LT 86447168,86447199,FR 86447200,86447215,CZ 86447216,86447231,PL -86447232,86447239,CH +86447232,86447239,FR 86447240,86447247,ES 86447248,86447255,FR 86447256,86447263,PL 86447264,86447267,FR -86447268,86447279,PL +86447268,86447271,PL +86447272,86447279,FR 86447280,86447283,DE 86447284,86447287,FR 86447288,86447291,DE @@ -2124,7 +2073,19 @@ 86447352,86447355,PL 86447356,86447615,FR 86447616,86448383,GB -86448384,86448639,FR +86448384,86448447,IE +86448448,86448479,PT +86448480,86448487,FR +86448488,86448495,GB +86448496,86448503,PL +86448504,86448511,FR +86448512,86448543,IT +86448544,86448575,FR +86448576,86448607,IE +86448608,86448615,FR +86448616,86448623,IE +86448624,86448631,FR +86448632,86448639,GB 86448640,86448703,ES 86448704,86448723,FR 86448724,86448727,PL @@ -2154,7 +2115,7 @@ 86448896,86449151,GB 86449152,86449167,BE 86449168,86449183,ES -86449184,86449215,CZ +86449184,86449215,FR 86449216,86449279,IE 86449280,86449283,GB 86449284,86449287,ES @@ -2169,9 +2130,7 @@ 86449400,86449407,PL 86449408,86449439,FR 86449440,86449455,ES -86449456,86449459,FR -86449460,86449463,PL -86449464,86449471,FR +86449456,86449471,FR 86449472,86449475,PL 86449476,86449479,LT 86449480,86449487,FR @@ -2185,15 +2144,12 @@ 86449564,86449567,PL 86449568,86449587,FR 86449588,86449595,DE -86449596,86449599,FR -86449600,86449647,IE -86449648,86449651,FR +86449596,86449651,FR 86449652,86449655,GB 86449656,86449663,ES 86449664,86449675,FR 86449676,86449679,PT -86449680,86449695,FR -86449696,86449727,NL +86449680,86449727,FR 86449728,86449759,PL 86449760,86449791,FR 86449792,86449823,PL @@ -2210,25 +2166,23 @@ 86450012,86450015,IE 86450016,86450019,FR 86450020,86450023,PL -86450024,86450027,FR +86450024,86450027,DE 86450028,86450031,PL 86450032,86450039,FR 86450040,86450043,DE -86450044,86450079,PL +86450044,86450047,FR +86450048,86450079,PL 86450080,86450083,FR 86450084,86450087,NL -86450088,86450095,FR -86450096,86450099,GB +86450088,86450099,FR 86450100,86450103,DE 86450104,86450111,FR 86450112,86450115,BE -86450116,86450119,FR -86450120,86450127,GB +86450116,86450127,FR 86450128,86450135,PT 86450136,86450139,IE 86450140,86450143,IT -86450144,86450151,ES -86450152,86450159,GB +86450144,86450159,ES 86450160,86450163,FR 86450164,86450167,GB 86450168,86450171,FR @@ -2248,7 +2202,10 @@ 86450344,86450359,PL 86450360,86450371,FR 86450372,86450375,GB -86450376,86450495,FR +86450376,86450431,FR +86450432,86450439,PL +86450440,86450447,ES +86450448,86450495,FR 86450496,86450511,IT 86450512,86450519,FR 86450520,86450527,PL @@ -2272,19 +2229,23 @@ 86450916,86450919,PL 86450920,86450923,FR 86450924,86450927,CH -86450928,86451199,FR +86450928,86451007,FR +86451008,86451135,PT +86451136,86451151,FR +86451152,86451167,PT +86451168,86451175,FR +86451176,86451183,PL +86451184,86451199,FR 86451200,86451207,BE 86451208,86451223,FR 86451224,86451231,NL 86451232,86451247,BE -86451248,86451251,FR -86451252,86451255,GB +86451248,86451255,FR 86451256,86451263,NL 86451264,86451267,PL 86451268,86451271,FR 86451272,86451279,IT -86451280,86451295,FR -86451296,86451327,NL +86451280,86451327,FR 86451328,86451331,GB 86451332,86451335,FR 86451336,86451339,IT @@ -2323,7 +2284,8 @@ 86451576,86451579,PT 86451580,86451583,PL 86451584,86451615,GB -86451616,86451667,FR +86451616,86451647,IE +86451648,86451667,FR 86451668,86451671,BE 86451672,86451675,FR 86451676,86451679,PT @@ -2336,7 +2298,8 @@ 86451888,86451895,ES 86451896,86451903,FR 86451904,86451967,NL -86451968,86452031,CH +86451968,86451999,FR +86452000,86452031,ES 86452032,86452047,FR 86452048,86452055,CH 86452056,86452059,FR @@ -2359,8 +2322,9 @@ 86452256,86452267,PL 86452268,86452271,FR 86452272,86452279,GB -86452280,86452287,FR -86452288,86452295,GB +86452280,86452287,ES +86452288,86452291,FR +86452292,86452295,GB 86452296,86452335,FR 86452336,86452343,NL 86452344,86452347,FR @@ -2393,9 +2357,7 @@ 86453104,86453119,PT 86453120,86453183,ES 86453184,86453199,DE -86453200,86453247,FR -86453248,86453251,GB -86453252,86453255,FR +86453200,86453255,FR 86453256,86453263,BE 86453264,86453315,FR 86453316,86453319,ES @@ -2457,8 +2419,7 @@ 86454344,86454351,PL 86454352,86454367,FI 86454368,86454383,PL -86454384,86454391,GB -86454392,86454399,FR +86454384,86454399,FR 86454400,86454527,BE 86454528,86454559,NL 86454560,86454591,FR @@ -2466,7 +2427,15 @@ 86454608,86454611,PL 86454612,86454619,FR 86454620,86454623,ES -86454624,86454783,FR +86454624,86454687,FR +86454688,86454691,DE +86454692,86454695,FR +86454696,86454703,PT +86454704,86454707,PL +86454708,86454711,BE +86454712,86454715,CH +86454716,86454719,CZ +86454720,86454783,FR 86454784,86454815,IT 86454816,86454831,FR 86454832,86454835,ES @@ -2495,10 +2464,11 @@ 86454996,86454999,DE 86455000,86455003,LT 86455004,86455007,ES -86455008,86455431,FR +86455008,86455295,FR +86455296,86455359,DE +86455360,86455431,FR 86455432,86455435,NL -86455436,86455439,PL -86455440,86455447,FR +86455436,86455447,FR 86455448,86455451,ES 86455452,86455455,FR 86455456,86455487,PL @@ -2509,7 +2479,9 @@ 86455628,86455631,FR 86455632,86455647,ES 86455648,86455679,NL -86455680,86455767,FR +86455680,86455759,FR +86455760,86455763,CH +86455764,86455767,FR 86455768,86455771,GB 86455772,86455775,NL 86455776,86455783,DE @@ -2520,7 +2492,9 @@ 86455920,86455927,BE 86455928,86455931,FR 86455932,86455935,IT -86455936,86456015,FR +86455936,86455967,IE +86455968,86455999,PL +86456000,86456015,FR 86456016,86456019,GB 86456020,86456027,FR 86456028,86456031,CH @@ -2529,11 +2503,10 @@ 86456040,86456043,FI 86456044,86456047,NL 86456048,86456063,GB -86456064,86456079,FR -86456080,86456087,PL -86456088,86456111,FR +86456064,86456111,FR 86456112,86456119,PT -86456120,86456143,GB +86456120,86456127,FR +86456128,86456143,GB 86456144,86456151,NL 86456152,86456159,DE 86456160,86456191,NL @@ -2544,12 +2517,11 @@ 86456224,86456279,FR 86456280,86456283,GB 86456284,86456287,IT -86456288,86456295,DE -86456296,86456303,FR +86456288,86456303,FR 86456304,86456307,IT 86456308,86456311,FR 86456312,86456315,PT -86456316,86456319,DE +86456316,86456319,BE 86456320,86456351,FR 86456352,86456367,CH 86456368,86456371,FI @@ -2589,12 +2561,18 @@ 86457132,86457135,PT 86457136,86457151,FR 86457152,86457167,IT -86457168,86457183,FR +86457168,86457175,FR +86457176,86457179,GB +86457180,86457183,IE 86457184,86457187,ES 86457188,86457191,GB 86457192,86457215,ES 86457216,86457219,PL -86457220,86457263,FR +86457220,86457235,FR +86457236,86457239,PL +86457240,86457243,DE +86457244,86457247,PL +86457248,86457263,FR 86457264,86457279,ES 86457280,86457295,PL 86457296,86457375,FR @@ -2613,8 +2591,7 @@ 86457464,86457471,BE 86457472,86457519,ES 86457520,86457535,DE -86457536,86457551,IE -86457552,86457599,FR +86457536,86457599,FR 86457600,86457615,CH 86457616,86457631,FR 86457632,86457647,PL @@ -2687,7 +2664,7 @@ 86467264,86467287,PL 86467288,86467291,FR 86467292,86467295,NL -86467296,86467311,IE +86467296,86467311,FR 86467312,86467319,IT 86467320,86467323,FI 86467324,86467583,GB @@ -2765,8 +2742,7 @@ 86469144,86469147,FR 86469148,86469151,NL 86469152,86469183,CH -86469184,86469247,PT -86469248,86469655,FR +86469184,86469655,FR 86469656,86469659,DE 86469660,86469663,CH 86469664,86469679,IE @@ -2787,10 +2763,9 @@ 86469864,86469867,GB 86469868,86469887,FR 86469888,86469891,GB -86469892,86469895,FR -86469896,86469899,IE +86469892,86469899,FR 86469900,86469903,PL -86469904,86469907,FR +86469904,86469907,PT 86469908,86469911,GB 86469912,86469915,FR 86469916,86469919,ES @@ -2804,7 +2779,8 @@ 86470144,86470159,ES 86470160,86470175,PL 86470176,86470207,IE -86470208,86470271,FR +86470208,86470239,FR +86470240,86470271,PT 86470272,86470275,PL 86470276,86470291,FR 86470292,86470295,PL @@ -2817,7 +2793,7 @@ 86470400,86470655,FR 86470656,86470671,CZ 86470672,86470687,PL -86470688,86470719,GB +86470688,86470719,FR 86470720,86470727,DE 86470728,86470731,ES 86470732,86470735,BE @@ -2903,7 +2879,8 @@ 86472240,86472255,ES 86472256,86472287,NL 86472288,86472291,DE -86472292,86472303,FR +86472292,86472295,GB +86472296,86472303,FR 86472304,86472311,PT 86472312,86472315,NL 86472316,86472319,FR @@ -2940,8 +2917,8 @@ 86472896,86472927,FR 86472928,86472935,IE 86472936,86472943,ES -86472944,86472959,FR -86472960,86473023,IE +86472944,86472991,FR +86472992,86473023,IE 86473024,86473087,FR 86473088,86473215,PT 86473216,86473251,FR @@ -2973,9 +2950,7 @@ 86473744,86473775,FR 86473776,86473791,FI 86473792,86473795,ES -86473796,86473799,FR -86473800,86473803,GB -86473804,86473807,FR +86473796,86473807,FR 86473808,86473823,GB 86473824,86473839,FR 86473840,86474111,PT @@ -2994,7 +2969,7 @@ 86474312,86474319,BE 86474320,86474323,NL 86474324,86474327,IT -86474328,86474331,IE +86474328,86474331,FR 86474332,86474367,BE 86474368,86474383,PL 86474384,86474391,FR @@ -3011,9 +2986,7 @@ 86474556,86474559,PL 86474560,86474591,FR 86474592,86474623,PT -86474624,86474687,FR -86474688,86474719,PT -86474720,86474723,FR +86474624,86474723,FR 86474724,86474727,NL 86474728,86474731,PL 86474732,86474735,IE @@ -3028,7 +3001,9 @@ 86491136,86493183,PL 86493184,86495231,RU 86495232,86497279,ES -86497280,86499327,NL +86497280,86498815,NL +86498816,86498943,RU +86498944,86499327,NL 86499328,86503423,FR 86503424,86505471,DE 86505472,86505983,US @@ -3109,9 +3084,14 @@ 87558144,87560191,IT 87560192,87560703,DE 87560704,87560959,IN -87560960,87561471,DE +87560960,87561087,DE +87561088,87561215,FR +87561216,87561471,IN 87561472,87561599,GB -87561600,87562239,DE +87561600,87561727,IN +87561728,87561983,ES +87561984,87562111,IN +87562112,87562239,IN 87562240,87564287,UA 87564288,87566335,HU 87566336,87568383,FR @@ -3130,7 +3110,14 @@ 87601152,87621631,DE 87621632,87623679,LB 87623680,87625727,KG -87625728,87627775,NL +87625728,87625983,GB +87625984,87626239,NL +87626240,87626495,GB +87626496,87626751,NL +87626752,87627007,GB +87627008,87627263,NL +87627264,87627519,GB +87627520,87627775,NL 87627776,87629823,ES 87629824,87631871,IR 87631872,87633919,DE @@ -3298,9 +3285,7 @@ 90753024,90755071,RU 90755072,90757119,PL 90757120,90759167,AT -90759168,90759684,NL -90759685,90759930,RO -90759931,90761215,NL +90759168,90761215,NL 90761216,90763263,KZ 90763264,90763391,IL 90763392,90763519,CY @@ -3312,8 +3297,198 @@ 90963968,91226111,SA 91226112,92274687,IR 92274688,92536831,RU -92536832,92536832,NL -92536833,92602367,US +92536832,92537087,PY +92537088,92537343,QA +92537344,92537599,DE +92537600,92537855,GB +92537856,92538623,DE +92538624,92538879,AD +92538880,92539135,AE +92539136,92539391,AF +92539392,92539647,AG +92539648,92539903,AI +92539904,92540159,AL +92540160,92540415,AM +92540416,92540671,AO +92540672,92540927,AQ +92540928,92541183,AR +92541184,92541439,AS +92541440,92541695,AT +92541696,92541951,AU +92541952,92542207,AW +92542208,92542463,AX +92542464,92542719,AZ +92542720,92542975,BA +92542976,92543231,BB +92543232,92543487,BD +92543488,92543743,BE +92543744,92543999,BF +92544000,92544255,BG +92544256,92544511,BH +92544512,92544767,BI +92544768,92545023,BJ +92545024,92545279,BL +92545280,92545535,BM +92545536,92545791,BN +92545792,92546047,BO +92546048,92546303,BQ +92546304,92546559,BR +92546560,92546815,BS +92546816,92547071,BT +92547072,92547327,NL +92547328,92547583,BW +92547584,92547839,BY +92547840,92548095,BZ +92548096,92548351,CA +92548352,92548607,CC +92548608,92548863,CD +92548864,92549119,CF +92549120,92549375,CG +92549376,92549631,CH +92549632,92549887,CI +92549888,92550143,CK +92550144,92550399,CL +92550400,92550655,CM +92550656,92550911,CN +92550912,92551167,CO +92551168,92551423,CR +92551424,92551679,CU +92551680,92551935,CV +92551936,92552191,CW +92552192,92552447,CX +92552448,92552703,CY +92552704,92552959,CZ +92552960,92553215,DE +92553216,92553471,DJ +92553472,92553727,DK +92553728,92553983,DM +92553984,92554239,DO +92554240,92554495,DZ +92554496,92554751,EC +92554752,92555007,EE +92555008,92555263,EG +92555264,92555519,EH +92555520,92555775,ER +92555776,92556031,ES +92556032,92556287,ET +92556288,92556543,FI +92556544,92556799,FJ +92556800,92557055,FK +92557056,92557311,FM +92557312,92557567,FO +92557568,92557823,FR +92557824,92558079,GA +92558080,92558335,GB +92558336,92558591,GD +92558592,92558847,GE +92558848,92559103,GF +92559104,92559359,GG +92559360,92559615,GH +92559616,92559871,GI +92559872,92560127,GL +92560128,92560383,GM +92560384,92560639,GN +92560640,92560895,GP +92560896,92561151,GQ +92561152,92561407,GR +92561408,92561663,GS +92561664,92561919,GT +92561920,92562175,GU +92562176,92562431,GW +92562432,92562687,GY +92562688,92562943,HK +92562944,92563199,NL +92563200,92563455,HN +92563456,92563711,HR +92563712,92563967,HT +92563968,92564223,HU +92564224,92564479,ID +92564480,92564735,IE +92564736,92564991,IL +92564992,92565247,IM +92565248,92565503,IN +92565504,92565759,IO +92565760,92566015,IQ +92566016,92566271,IR +92566272,92566527,IS +92566528,92566783,IT +92566784,92567039,JE +92567040,92567295,JM +92567296,92567551,JO +92567552,92567807,JP +92567808,92568063,KE +92568064,92568319,KH +92568320,92568575,KI +92568576,92568831,KM +92568832,92569087,KN +92569088,92569343,KP +92569344,92569599,KR +92569600,92569855,KW +92569856,92570111,KY +92570112,92570367,KZ +92570368,92570623,LA +92570624,92570879,LB +92570880,92571135,LC +92571136,92571391,LI +92571392,92571647,LK +92571648,92571903,LR +92571904,92572159,LS +92572160,92572415,LT +92572416,92572671,LU +92572672,92572927,LV +92572928,92573183,MA +92573184,92573439,MC +92573440,92573695,MD +92573696,92573951,ME +92573952,92574207,MF +92574208,92574463,MG +92574464,92574719,MH +92574720,92574975,MK +92574976,92575231,ML +92575232,92575487,MM +92575488,92575743,MN +92575744,92575999,MO +92576000,92576255,MP +92576256,92576511,MQ +92576512,92576767,MR +92576768,92577023,MS +92577024,92577279,MT +92577280,92577535,MU +92577536,92577791,MV +92577792,92578047,MW +92578048,92578303,MX +92578304,92578559,MY +92578560,92578815,MZ +92578816,92579071,NA +92579072,92579327,NC +92579328,92579583,NE +92579584,92579839,NF +92579840,92580095,NG +92580096,92580351,NI +92580352,92580607,NL +92580608,92580863,NO +92580864,92581119,NP +92581120,92581375,NR +92581376,92581631,NU +92581632,92581887,NZ +92581888,92582143,OM +92582144,92582399,PA +92582400,92582655,PE +92582656,92582911,PF +92582912,92583167,PG +92583168,92583423,PH +92583424,92583679,PK +92583680,92583935,PL +92583936,92584191,PM +92584192,92584447,PN +92584448,92584703,PR +92584704,92584959,PS +92584960,92585215,PT +92585216,92585471,PW +92585472,92585727,PY +92585728,92585983,QA +92585984,92586239,RE +92586240,92602367,NL 92602368,92604415,BA 92604416,92606463,PL 92606464,92608511,GB @@ -3484,13 +3659,12 @@ 92733536,92733539,CH 92733540,92733543,FR 92733544,92733547,ES -92733548,92733551,GB +92733548,92733551,FR 92733552,92733555,PL 92733556,92733559,FR 92733560,92733563,GB 92733564,92733567,DE -92733568,92733631,FR -92733632,92733663,PT +92733568,92733663,FR 92733664,92733695,ES 92733696,92733751,FR 92733752,92733755,GB @@ -3502,8 +3676,7 @@ 92733856,92733887,FR 92733888,92733903,IT 92733904,92733919,PL -92733920,92733927,FR -92733928,92733931,GB +92733920,92733931,FR 92733932,92733935,ES 92733936,92733939,IE 92733940,92733943,FR @@ -3533,7 +3706,7 @@ 92734592,92734595,DE 92734596,92734719,FR 92734720,92734727,ES -92734728,92734731,GB +92734728,92734731,FR 92734732,92734735,PL 92734736,92734739,DE 92734740,92734823,FR @@ -3547,15 +3720,15 @@ 92735336,92735347,PL 92735348,92735351,FR 92735352,92735359,DE -92735360,92735423,FR -92735424,92735455,DE +92735360,92735455,FR 92735456,92735459,ES -92735460,92735467,GB +92735460,92735463,FR +92735464,92735467,GB 92735468,92735471,FR 92735472,92735479,IT 92735480,92735483,PL 92735484,92735487,DE -92735488,92735519,GB +92735488,92735519,NL 92735520,92735535,FR 92735536,92735543,GB 92735544,92735547,PL @@ -3576,11 +3749,9 @@ 92735712,92735731,FR 92735732,92735735,CH 92735736,92735743,PL -92735744,92735751,IT -92735752,92735775,FR +92735744,92735775,FR 92735776,92735779,PL -92735780,92735783,ES -92735784,92735791,FR +92735780,92735791,FR 92735792,92735807,GB 92735808,92735815,FR 92735816,92735823,CZ @@ -3592,9 +3763,7 @@ 92735884,92735887,PT 92735888,92735903,FR 92735904,92735935,DE -92735936,92735967,CZ -92735968,92735999,IT -92736000,92736335,FR +92735936,92736335,FR 92736336,92736351,GB 92736352,92736447,FR 92736448,92736479,IT @@ -3619,7 +3788,9 @@ 92738412,92738415,IE 92738416,92738431,FR 92738432,92738447,ES -92738448,92738511,FR +92738448,92738479,FR +92738480,92738487,IT +92738488,92738511,FR 92738512,92738515,IT 92738516,92738519,DE 92738520,92738531,PL @@ -3644,14 +3815,14 @@ 92739352,92739355,FR 92739356,92739359,ES 92739360,92739375,DE -92739376,92739391,IE +92739376,92739391,FR 92739392,92739395,PL 92739396,92739399,IT 92739400,92739403,PL 92739404,92739407,IE 92739408,92739439,FR 92739440,92739447,FI -92739448,92739455,GB +92739448,92739455,FR 92739456,92739487,NL 92739488,92739491,FR 92739492,92739495,CZ @@ -3667,19 +3838,30 @@ 92740352,92740383,PL 92740384,92740391,FR 92740392,92740395,ES -92740396,92740399,FR -92740400,92740415,IE +92740396,92740415,FR 92740416,92740431,NL 92740432,92740447,GB -92740448,92740471,FR -92740472,92740479,BE +92740448,92740475,FR +92740476,92740479,BE 92740480,92740543,IE 92740544,92740575,DE 92740576,92740607,IT -92740608,92740863,FR +92740608,92740639,PT +92740640,92740671,PL +92740672,92740687,FR +92740688,92740703,ES +92740704,92740711,FR +92740712,92740719,GB +92740720,92740727,CZ +92740728,92740735,FR +92740736,92740767,ES +92740768,92740799,FR +92740800,92740815,PL +92740816,92740831,IE +92740832,92740863,FR 92740864,92741119,IT 92741120,92741151,GB -92741152,92741159,LT +92741152,92741159,FR 92741160,92741167,PL 92741168,92741183,FR 92741184,92741199,IE @@ -3724,12 +3906,12 @@ 92742192,92742207,PL 92742208,92742239,BE 92742240,92742247,GB -92742248,92742255,ES +92742248,92742251,DE +92742252,92742255,ES 92742256,92742271,GB 92742272,92742279,FR 92742280,92742283,IT -92742284,92742287,GB -92742288,92742291,FR +92742284,92742291,FR 92742292,92742295,NL 92742296,92742303,FR 92742304,92742319,IE @@ -3754,10 +3936,11 @@ 92742624,92742639,FR 92742640,92742643,ES 92742644,92742647,PL -92742648,92742651,GB -92742652,92742655,FR +92742648,92742655,FR 92742656,92742671,IE -92742672,92742695,FR +92742672,92742687,FR +92742688,92742691,FI +92742692,92742695,FR 92742696,92742703,GB 92742704,92742707,FR 92742708,92742711,PL @@ -3765,7 +3948,8 @@ 92742720,92742751,BE 92742752,92742771,FR 92742772,92742775,ES -92742776,92742787,FR +92742776,92742783,FR +92742784,92742787,GB 92742788,92742791,PL 92742792,92742795,GB 92742796,92742799,FR @@ -3777,11 +3961,9 @@ 92742840,92742847,PT 92742848,92742911,FR 92742912,92743167,ES -92743168,92743199,FR -92743200,92743207,GB +92743168,92743207,FR 92743208,92743215,ES -92743216,92743231,GB -92743232,92743235,FR +92743216,92743235,FR 92743236,92743239,BE 92743240,92743243,GB 92743244,92743247,FR @@ -3806,16 +3988,16 @@ 92743492,92743503,FR 92743504,92743519,IT 92743520,92743527,PT -92743528,92743535,FR -92743536,92743551,IE -92743552,92743575,FR +92743528,92743531,FR +92743532,92743535,PL +92743536,92743575,FR 92743576,92743579,CH 92743580,92743599,FR 92743600,92743607,DE 92743608,92743611,GB 92743612,92743639,FR 92743640,92743643,PL -92743644,92743647,NL +92743644,92743647,FR 92743648,92743663,BE 92743664,92743675,FR 92743676,92743679,PL @@ -3826,9 +4008,8 @@ 92743952,92743955,PT 92743956,92743967,FR 92743968,92743999,DE -92744000,92744111,FR -92744112,92744119,ES -92744120,92744123,PL +92744000,92744119,FR +92744120,92744123,FI 92744124,92744127,GB 92744128,92744191,FR 92744192,92744223,PT @@ -3853,7 +4034,8 @@ 92744328,92744335,FR 92744336,92744339,PT 92744340,92744343,CH -92744344,92744367,PT +92744344,92744351,FR +92744352,92744367,PT 92744368,92744379,FR 92744380,92744383,ES 92744384,92744399,FR @@ -3864,11 +4046,27 @@ 92744552,92744555,ES 92744556,92744559,CH 92744560,92744563,PL -92744564,92744567,IT +92744564,92744567,FR 92744568,92744575,BE 92744576,92744607,FR 92744608,92744639,PT -92744640,92745279,FR +92744640,92744719,FR +92744720,92744735,BE +92744736,92744743,FR +92744744,92744759,PT +92744760,92744767,FR +92744768,92744799,ES +92744800,92744935,FR +92744936,92744943,CH +92744944,92744959,FR +92744960,92744975,PL +92744976,92745007,FR +92745008,92745023,BE +92745024,92745063,FR +92745064,92745071,BE +92745072,92745087,FR +92745088,92745215,GB +92745216,92745279,FR 92745280,92745295,PT 92745296,92745311,FR 92745312,92745343,PT @@ -3878,7 +4076,8 @@ 92745396,92745399,GB 92745400,92745403,FR 92745404,92745439,PL -92745440,92745791,FR +92745440,92745471,NL +92745472,92745791,FR 92745792,92745807,PL 92745808,92745823,NL 92745824,92745839,FR @@ -3907,8 +4106,7 @@ 92747040,92747043,PL 92747044,92747047,CH 92747048,92747051,DE -92747052,92747071,FR -92747072,92747103,GB +92747052,92747103,FR 92747104,92747119,CH 92747120,92747199,FR 92747200,92747203,DE @@ -3943,9 +4141,7 @@ 92747456,92747471,FR 92747472,92747475,PL 92747476,92747479,NL -92747480,92747487,FR -92747488,92747519,BE -92747520,92747535,FR +92747480,92747535,FR 92747536,92747539,CZ 92747540,92747543,CH 92747544,92747547,GB @@ -3953,12 +4149,13 @@ 92747568,92747575,PL 92747576,92747583,ES 92747584,92747615,NL -92747616,92747695,FR +92747616,92747687,FR +92747688,92747691,NL +92747692,92747695,FR 92747696,92747699,PL 92747700,92747703,FR 92747704,92747711,GB -92747712,92747775,PT -92747776,92748479,FR +92747712,92748479,FR 92748480,92748511,GB 92748512,92748803,FR 92748804,92748807,PL @@ -3967,8 +4164,8 @@ 92748816,92748835,FR 92748836,92748839,PL 92748840,92748843,GB -92748844,92748851,CH -92748852,92748859,FR +92748844,92748847,CH +92748848,92748859,FR 92748860,92748863,PL 92748864,92748887,FR 92748888,92748895,GB @@ -3977,18 +4174,18 @@ 92748984,92748991,GB 92748992,92748999,ES 92749000,92749007,PT -92749008,92749011,FR +92749008,92749011,FI 92749012,92749015,ES 92749016,92749019,GB 92749020,92749023,IT 92749024,92749039,FI -92749040,92749063,NL +92749040,92749055,IE +92749056,92749063,FR 92749064,92749067,DE 92749068,92749071,GB -92749072,92749079,FR -92749080,92749087,IE +92749072,92749087,FR 92749088,92749119,PT -92749120,92749135,IE +92749120,92749135,FR 92749136,92749151,PT 92749152,92749155,PL 92749156,92749159,PT @@ -4002,8 +4199,8 @@ 92749304,92749519,FR 92749520,92749531,CH 92749532,92749535,ES -92749536,92749543,IE -92749544,92749551,FR +92749536,92749539,IE +92749540,92749551,FR 92749552,92749555,PT 92749556,92749559,FR 92749560,92749567,IT @@ -4016,19 +4213,17 @@ 92749904,92749919,PL 92749920,92750095,FR 92750096,92750099,IT -92750100,92750103,FR +92750100,92750103,DE 92750104,92750107,IE 92750108,92750111,FR 92750112,92750127,GB 92750128,92750223,FR 92750224,92750231,NL -92750232,92750511,FR -92750512,92750527,IE -92750528,92750559,FR +92750232,92750559,FR 92750560,92750591,FI 92750592,92750599,FR -92750600,92750603,LT -92750604,92750639,FR +92750600,92750607,LT +92750608,92750639,FR 92750640,92750643,ES 92750644,92750647,NL 92750648,92750651,IT @@ -4041,13 +4236,14 @@ 92750800,92750815,IE 92750816,92750831,IT 92750832,92750839,LT -92750840,92750847,FR +92750840,92750843,PL +92750844,92750847,FR 92750848,92750863,DE 92750864,92750879,IT -92750880,92750887,ES +92750880,92750887,FR 92750888,92750895,PT 92750896,92750899,IT -92750900,92750903,FR +92750900,92750903,DE 92750904,92750907,GB 92750908,92750911,FR 92750912,92750943,PL @@ -4092,19 +4288,38 @@ 92752616,92752619,PL 92752620,92752631,IT 92752632,92752635,FR -92752636,92752639,PT -92752640,92753175,FR +92752636,92752679,PT +92752680,92752687,IT +92752688,92752703,ES +92752704,92752719,FR +92752720,92752735,CZ +92752736,92752751,GB +92752752,92752767,IT +92752768,92752799,PL +92752800,92752831,FR +92752832,92752847,IT +92752848,92752863,FR +92752864,92752895,IT +92752896,92753087,FR +92753088,92753095,IT +92753096,92753119,FR +92753120,92753151,PL +92753152,92753175,FR 92753176,92753215,CZ 92753216,92753279,PT 92753280,92753363,CZ 92753364,92753367,GB -92753368,92753551,FR +92753368,92753547,FR +92753548,92753551,DE 92753552,92753567,NL -92753568,92753631,FR +92753568,92753599,BE +92753600,92753631,FR 92753632,92753663,BE -92753664,92753671,FR +92753664,92753667,FR +92753668,92753671,NL 92753672,92753675,IT -92753676,92753919,FR +92753676,92753679,NL +92753680,92753919,FR 92753920,92753923,CZ 92753924,92753927,GB 92753928,92753935,FR @@ -4133,18 +4348,19 @@ 92754464,92754471,FR 92754472,92754479,CZ 92754480,92754495,ES -92754496,92754559,CH -92754560,92754579,FR +92754496,92754579,FR 92754580,92754583,PL -92754584,92754591,FR -92754592,92754623,CZ +92754584,92754623,FR 92754624,92754639,PL 92754640,92754671,IT -92754672,92755135,FR +92754672,92755023,FR +92755024,92755027,BE +92755028,92755031,FI +92755032,92755135,FR 92755136,92755199,PT 92755200,92755231,FR 92755232,92755263,GB -92755264,92755279,PT +92755264,92755279,FR 92755280,92755283,PL 92755284,92755287,ES 92755288,92755295,FR @@ -4155,7 +4371,7 @@ 92755336,92755343,ES 92755344,92755375,FR 92755376,92755391,IE -92755392,92755423,FR +92755392,92755423,GB 92755424,92755431,CH 92755432,92755439,FR 92755440,92755455,GB @@ -4165,7 +4381,11 @@ 92755508,92755511,GB 92755512,92755519,FR 92755520,92755527,ES -92755528,92755647,FR +92755528,92755543,FR +92755544,92755551,PT +92755552,92755583,FR +92755584,92755615,PT +92755616,92755647,FR 92755648,92755679,IT 92755680,92755711,FR 92755712,92755743,DE @@ -4192,7 +4412,8 @@ 92756648,92756663,FR 92756664,92756671,BE 92756672,92756735,PT -92756736,92756999,FR +92756736,92756995,FR +92756996,92756999,IE 92757000,92757007,CH 92757008,92757015,DE 92757016,92757023,FR @@ -4218,14 +4439,16 @@ 92758068,92758071,DE 92758072,92758075,BE 92758076,92758079,CH -92758080,92758143,FR +92758080,92758127,FR +92758128,92758135,NL +92758136,92758139,DE +92758140,92758143,ES 92758144,92758207,PT 92758208,92758223,ES 92758224,92758227,CZ 92758228,92758231,PL 92758232,92758235,DE -92758236,92758271,FR -92758272,92758303,IE +92758236,92758303,FR 92758304,92758319,PT 92758320,92758335,FR 92758336,92758343,PL @@ -4241,22 +4464,28 @@ 92758480,92758495,FR 92758496,92758527,CH 92758528,92758591,FR -92758592,92758623,PT -92758624,92758627,IT -92758628,92758631,FR +92758592,92758631,PT 92758632,92758635,DE 92758636,92758639,FR 92758640,92758655,PL -92758656,92758723,FR +92758656,92758687,FR +92758688,92758719,DE +92758720,92758723,FR 92758724,92758727,DE 92758728,92758731,PL 92758732,92758735,FR 92758736,92758743,NL -92758744,92758747,FR -92758748,92758751,PL -92758752,92758783,GB -92758784,92758799,FR -92758800,92758859,PL +92758744,92758799,FR +92758800,92758803,DE +92758804,92758807,ES +92758808,92758811,IT +92758812,92758815,DE +92758816,92758819,FR +92758820,92758831,PL +92758832,92758843,FR +92758844,92758847,PL +92758848,92758855,FR +92758856,92758859,PL 92758860,92758879,ES 92758880,92758911,GB 92758912,92758915,PL @@ -4280,31 +4509,36 @@ 92759136,92759151,FR 92759152,92759155,IT 92759156,92759159,IE -92759160,92759167,DE -92759168,92759231,FR +92759160,92759231,FR 92759232,92759239,BE 92759240,92759247,FR 92759248,92759255,PL 92759256,92759263,FR 92759264,92759279,ES -92759280,92759295,FR +92759280,92759287,FR +92759288,92759295,PT 92759296,92759551,FI 92759552,92760063,FR 92760064,92760191,ES 92760192,92760255,FR 92760256,92760287,IE 92760288,92760319,PT -92760320,92760607,FR +92760320,92760351,IE +92760352,92760383,FR +92760384,92760447,IE +92760448,92760607,FR 92760608,92760639,GB 92760640,92760679,FR 92760680,92760687,GB -92760688,92760695,FR -92760696,92760715,ES -92760716,92760727,FR +92760688,92760691,FR +92760692,92760695,GB +92760696,92760719,ES +92760720,92760727,FR 92760728,92760735,PT 92760736,92760743,FI 92760744,92760747,ES -92760748,92760767,FR +92760748,92760751,CH +92760752,92760767,FR 92760768,92760831,PT 92760832,92761087,IE 92761088,92761343,CH @@ -4324,22 +4558,24 @@ 92761524,92761527,DE 92761528,92761531,BE 92761532,92761535,CH -92761536,92761599,FR +92761536,92761567,FR +92761568,92761575,PT +92761576,92761599,FR 92761600,92761603,ES 92761604,92761615,FR -92761616,92761727,PL +92761616,92761631,PL +92761632,92761663,FR +92761664,92761727,PL 92761728,92761759,FR 92761760,92761763,IT 92761764,92761775,FR 92761776,92761791,BE -92761792,92761823,IT -92761824,92761855,IE -92761856,92761863,FR +92761792,92761863,FR 92761864,92761867,PL 92761868,92761883,FR 92761884,92761887,PL 92761888,92761919,GB -92761920,92761935,DE +92761920,92761935,FR 92761936,92761939,NL 92761940,92761943,GB 92761944,92761947,ES @@ -4347,24 +4583,21 @@ 92762048,92762051,PL 92762052,92762055,FR 92762056,92762059,GB -92762060,92762079,FR -92762080,92762111,IT -92762112,92762127,FR +92762060,92762127,FR 92762128,92762135,ES 92762136,92762143,FR 92762144,92762147,PT 92762148,92762151,PL 92762152,92762155,LT 92762156,92762159,IT -92762160,92762163,FR +92762160,92762163,GB 92762164,92762167,ES 92762168,92762175,FR 92762176,92762207,FI 92762208,92762211,FR 92762212,92762219,PL 92762220,92762223,DE -92762224,92762239,FR -92762240,92762271,IT +92762224,92762271,FR 92762272,92762303,DE 92762304,92762307,FR 92762308,92762311,PT @@ -4380,10 +4613,15 @@ 92762608,92762615,IT 92762616,92762619,ES 92762620,92762623,IE -92762624,92762655,CZ -92762656,92762687,PT +92762624,92762655,FR +92762656,92762687,NL 92762688,92762719,PL -92762720,92762815,FR +92762720,92762727,PT +92762728,92762735,IE +92762736,92762751,FR +92762752,92762783,GB +92762784,92762799,FR +92762800,92762815,PT 92762816,92762831,NL 92762832,92762839,FR 92762840,92762847,ES @@ -4402,7 +4640,7 @@ 92763200,92763207,ES 92763208,92763215,FR 92763216,92763219,PT -92763220,92763223,GB +92763220,92763223,FR 92763224,92763227,PL 92763228,92763231,FR 92763232,92763247,GB @@ -4410,8 +4648,7 @@ 92763264,92763271,GB 92763272,92763275,FR 92763276,92763279,ES -92763280,92763331,FR -92763332,92763335,GB +92763280,92763335,FR 92763336,92763339,DE 92763340,92763647,FR 92763648,92763903,GB @@ -4467,7 +4704,7 @@ 92765312,92765343,FR 92765344,92765347,GB 92765348,92765351,ES -92765352,92765359,PL +92765352,92765359,FR 92765360,92765367,ES 92765368,92765371,IT 92765372,92765391,FR @@ -4479,7 +4716,7 @@ 92765424,92765427,GB 92765428,92765431,DE 92765432,92765439,CH -92765440,92765447,NL +92765440,92765447,FR 92765448,92765455,DE 92765456,92765459,FR 92765460,92765471,GB @@ -4509,15 +4746,16 @@ 92766144,92766175,GB 92766176,92782607,FR 92782608,92782611,NL -92782612,92782655,FR -92782656,92782687,IE +92782612,92782687,FR 92782688,92782719,IT -92782720,92782735,FR +92782720,92782731,FR +92782732,92782735,LT 92782736,92782739,CZ 92782740,92782743,ES 92782744,92782747,FR 92782748,92782751,IT -92782752,92782759,FR +92782752,92782755,LT +92782756,92782759,FR 92782760,92782767,PL 92782768,92782783,FR 92782784,92782787,CH @@ -4525,8 +4763,7 @@ 92782804,92782807,PT 92782808,92782811,FR 92782812,92782815,CH -92782816,92782943,FR -92782944,92782975,CH +92782816,92782975,FR 92782976,92782979,ES 92782980,92782999,FR 92783000,92783003,GB @@ -4540,14 +4777,17 @@ 92783048,92783051,GB 92783052,92783059,PL 92783060,92783063,DE -92783064,92783087,FR +92783064,92783067,FR +92783068,92783071,DE +92783072,92783087,FR 92783088,92783095,DE 92783096,92783103,IT -92783104,92783111,FR +92783104,92783107,NL +92783108,92783111,FR 92783112,92783115,NL 92783116,92783119,IE -92783120,92783135,PT -92783136,92783147,FR +92783120,92783143,FR +92783144,92783147,ES 92783148,92783151,DE 92783152,92783155,IT 92783156,92783163,GB @@ -4557,13 +4797,12 @@ 92783244,92783247,PL 92783248,92783263,FR 92783264,92783267,PL -92783268,92783271,FR +92783268,92783271,FI 92783272,92783279,IT 92783280,92783287,GB 92783288,92783319,FR 92783320,92783323,IT -92783324,92783327,FR -92783328,92783359,IE +92783324,92783359,FR 92783360,92783423,ES 92783424,92783439,GB 92783440,92783447,FR @@ -4574,8 +4813,7 @@ 92783496,92783503,ES 92783504,92783515,FR 92783516,92783519,CH -92783520,92783647,FR -92783648,92783663,BE +92783520,92783663,FR 92783664,92783667,GB 92783668,92783671,FR 92783672,92783679,IT @@ -4585,25 +4823,30 @@ 92783720,92783723,IT 92783724,92783727,PL 92783728,92783731,ES -92783732,92783735,FR +92783732,92783735,IT 92783736,92783739,CH -92783740,92783743,FR +92783740,92783743,LT 92783744,92783807,BE 92783808,92783871,FR 92783872,92783887,NL -92783888,92783911,FR +92783888,92783895,PT +92783896,92783911,FR 92783912,92783919,PL -92783920,92783995,FR +92783920,92783923,LT +92783924,92783995,FR 92783996,92783999,LT 92784000,92784031,FR -92784032,92784047,NL -92784048,92784079,FR +92784032,92784039,NL +92784040,92784079,FR 92784080,92784087,PL 92784088,92784099,FR 92784100,92784103,CZ -92784104,92784127,FR +92784104,92784123,FR +92784124,92784127,LT 92784128,92784135,IE -92784136,92784159,FR +92784136,92784139,FR +92784140,92784143,PL +92784144,92784159,FR 92784160,92784191,CH 92784192,92784207,PT 92784208,92784239,PL @@ -4611,25 +4854,27 @@ 92784248,92784251,CH 92784252,92784287,FR 92784288,92784291,GB -92784292,92784295,FR +92784292,92784295,PL 92784296,92784299,GB -92784300,92784303,FR -92784304,92784319,IE -92784320,92784375,FR +92784300,92784303,DE +92784304,92784375,FR 92784376,92784383,PT 92784384,92784455,FR 92784456,92784463,NL 92784464,92784467,FR 92784468,92784471,NL -92784472,92784479,GB +92784472,92784479,FR 92784480,92784511,IT -92784512,92784639,ES -92784640,92784663,FR +92784512,92784651,FR +92784652,92784655,DE +92784656,92784659,GB +92784660,92784663,FR 92784664,92784667,GB 92784668,92784671,IE 92784672,92784703,FR 92784704,92784735,GB -92784736,92784771,FR +92784736,92784767,FR +92784768,92784771,IT 92784772,92784775,NL 92784776,92784779,DE 92784780,92784783,GB @@ -4637,7 +4882,7 @@ 92784792,92784799,FR 92784800,92784807,DE 92784808,92784815,LT -92784816,92784819,FR +92784816,92784819,GB 92784820,92784823,DE 92784824,92784831,PT 92784832,92784895,FR @@ -4648,9 +4893,7 @@ 92785468,92785471,PL 92785472,92785503,FR 92785504,92785507,PL -92785508,92785511,FR -92785512,92785519,PT -92785520,92785567,FR +92785508,92785567,FR 92785568,92785571,GB 92785572,92785599,FR 92785600,92785607,GB @@ -4660,9 +4903,8 @@ 92785632,92785663,FR 92785664,92785667,DE 92785668,92785671,CH -92785672,92785679,FR -92785680,92785695,IE -92785696,92785707,FR +92785672,92785703,FR +92785704,92785707,LT 92785708,92785711,IT 92785712,92785727,PT 92785728,92785735,FR @@ -4670,20 +4912,21 @@ 92785744,92785847,FR 92785848,92785855,GB 92785856,92785863,PT -92785864,92785887,GB -92785888,92786175,FR +92785864,92785871,GB +92785872,92786175,FR 92786176,92786179,GB 92786180,92786183,FR 92786184,92786187,ES -92786188,92786199,FR +92786188,92786191,PT +92786192,92786199,FR 92786200,92786207,BE -92786208,92786211,FR -92786212,92786215,GB +92786208,92786215,GB 92786216,92786219,IE -92786220,92786231,FR +92786220,92786227,FR +92786228,92786231,FI 92786232,92786239,PT 92786240,92786255,GB -92786256,92786271,PT +92786256,92786271,FR 92786272,92786279,IT 92786280,92786287,FR 92786288,92786291,IT @@ -4698,8 +4941,8 @@ 92786424,92786431,PT 92786432,92786463,FR 92786464,92786495,PL -92786496,92786511,PT -92786512,92786515,FR +92786496,92786511,FR +92786512,92786515,PL 92786516,92786519,BE 92786520,92786527,FR 92786528,92786535,ES @@ -4724,11 +4967,12 @@ 92786828,92786831,FR 92786832,92786847,NL 92786848,92786851,FR -92786852,92786855,PL -92786856,92786879,FR +92786852,92786859,PL +92786860,92786879,FR 92786880,92786911,PT 92786912,92786927,GB -92786928,92786943,FR +92786928,92786935,CZ +92786936,92786943,FR 92786944,92786947,IT 92786948,92786967,FR 92786968,92786971,ES @@ -4739,13 +4983,15 @@ 92786992,92786999,ES 92787000,92787007,DE 92787008,92787011,IT -92787012,92787027,FR +92787012,92787015,PL +92787016,92787027,FR 92787028,92787031,GB 92787032,92787035,FR 92787036,92787039,ES 92787040,92787055,FR 92787056,92787071,ES -92787072,92787079,FR +92787072,92787075,FR +92787076,92787079,IT 92787080,92787087,ES 92787088,92787111,FR 92787112,92787119,IT @@ -4754,7 +5000,7 @@ 92787200,92787203,FI 92787204,92787215,FR 92787216,92787247,PT -92787248,92787251,FR +92787248,92787251,DE 92787252,92787255,ES 92787256,92787327,PT 92787328,92787331,PL @@ -4763,12 +5009,15 @@ 92787340,92787343,FR 92787344,92787359,NL 92787360,92787391,FR -92787392,92787407,NL +92787392,92787407,BE 92787408,92787423,FR 92787424,92787503,ES 92787504,92787523,FR 92787524,92787531,PL -92787532,92787551,FR +92787532,92787535,DE +92787536,92787543,FR +92787544,92787547,PL +92787548,92787551,FR 92787552,92787563,PT 92787564,92787567,GB 92787568,92787615,FR @@ -4780,7 +5029,9 @@ 92787664,92787671,DE 92787672,92787679,FR 92787680,92787695,NL -92787696,92787707,FR +92787696,92787699,FR +92787700,92787703,ES +92787704,92787707,GB 92787708,92787711,FI 92787712,92788127,FR 92788128,92788131,FI @@ -4792,24 +5043,28 @@ 92788180,92788183,FR 92788184,92788187,ES 92788188,92788195,PL -92788196,92788203,FR +92788196,92788199,IT +92788200,92788203,FR 92788204,92788223,PT 92788224,92788255,FR 92788256,92788259,PT 92788260,92788263,ES 92788264,92788271,GB 92788272,92788275,DE -92788276,92788279,FR +92788276,92788279,BE 92788280,92788283,NL 92788284,92788287,ES 92788288,92788343,FR 92788344,92788351,CZ -92788352,92788431,FR +92788352,92788383,FR +92788384,92788415,CZ +92788416,92788431,FR 92788432,92788447,IT 92788448,92788495,FR -92788496,92788511,NL +92788496,92788511,FI 92788512,92788527,IE -92788528,92788543,FR +92788528,92788539,FR +92788540,92788543,ES 92788544,92788607,PT 92788608,92788639,NL 92788640,92788671,BE @@ -4818,11 +5073,13 @@ 92788688,92788735,FR 92788736,92788743,GB 92788744,92788747,PL -92788748,92788795,FR +92788748,92788787,FR +92788788,92788791,DE +92788792,92788795,FR 92788796,92788799,IE 92788800,92788919,FR 92788920,92788927,PT -92788928,92788931,FR +92788928,92788931,BE 92788932,92788935,PL 92788936,92788943,ES 92788944,92788959,FR @@ -4834,7 +5091,7 @@ 92789008,92789055,FR 92789056,92789071,CZ 92789072,92789079,PL -92789080,92789083,FR +92789080,92789083,IT 92789084,92789087,PT 92789088,92789095,IT 92789096,92789119,FR @@ -4844,12 +5101,12 @@ 92789224,92789231,NL 92789232,92789255,FR 92789256,92789259,GB -92789260,92789263,FR +92789260,92789263,IE 92789264,92789267,IT 92789268,92789271,FR 92789272,92789275,FI 92789276,92789279,DE -92789280,92789311,IE +92789280,92789311,FR 92789312,92789319,GB 92789320,92789335,FR 92789336,92789339,CH @@ -4872,7 +5129,7 @@ 92789484,92789487,GB 92789488,92789551,FR 92789552,92789555,ES -92789556,92789559,FR +92789556,92789559,IE 92789560,92789639,PT 92789640,92789643,IT 92789644,92789651,PL @@ -4889,19 +5146,20 @@ 92789904,92789907,PL 92789908,92789911,FR 92789912,92789919,NL -92789920,92789983,IE -92789984,92790015,FR -92790016,92790143,IE -92790144,92790175,FR +92789920,92789951,FR +92789952,92789983,IE +92789984,92790143,FR +92790144,92790175,IE 92790176,92790191,DE 92790192,92790239,FR 92790240,92790271,IE 92790272,92790279,FR 92790280,92790283,IE 92790284,92790287,PL -92790288,92790303,IT +92790288,92790295,CZ +92790296,92790303,PT 92790304,92790335,GB -92790336,92790367,NL +92790336,92790367,FR 92790368,92790371,PT 92790372,92790383,FR 92790384,92790399,DE @@ -4909,20 +5167,38 @@ 92790464,92790495,PT 92790496,92790511,PL 92790512,92790527,NL -92790528,92790591,IT +92790528,92790591,FR 92790592,92790595,PL 92790596,92790599,GB 92790600,92790615,FR 92790616,92790619,GB 92790620,92790623,BE -92790624,92790655,IE +92790624,92790655,PT 92790656,92790663,FR 92790664,92790671,GB 92790672,92790687,FR 92790688,92790695,PL 92790696,92790703,FR 92790704,92790719,IT -92790720,92791295,FR +92790720,92790783,FR +92790784,92790799,IE +92790800,92790803,PL +92790804,92790943,FR +92790944,92790959,PT +92790960,92790975,DE +92790976,92791031,FR +92791032,92791039,PL +92791040,92791167,PT +92791168,92791183,BE +92791184,92791191,PT +92791192,92791215,FR +92791216,92791223,LT +92791224,92791231,IE +92791232,92791263,FR +92791264,92791283,ES +92791284,92791287,DE +92791288,92791291,IE +92791292,92791295,PL 92791296,92791551,GB 92791552,92791807,IE 92791808,92792063,GB @@ -4943,7 +5219,8 @@ 92793104,92793119,NL 92793120,92793151,GB 92793152,92793155,DE -92793156,92793183,FR +92793156,92793179,FR +92793180,92793183,PT 92793184,92793215,GB 92793216,92793247,IT 92793248,92793279,ES @@ -4953,8 +5230,7 @@ 92793320,92793323,GB 92793324,92793331,FR 92793332,92793343,GB -92793344,92793855,DE -92793856,92793887,FR +92793344,92793887,FR 92793888,92793919,IT 92793920,92793935,FR 92793936,92793943,PT @@ -4965,8 +5241,7 @@ 92794144,92794159,DE 92794160,92794207,NL 92794208,92794223,IE -92794224,92794227,FR -92794228,92794231,PT +92794224,92794231,PT 92794232,92794239,ES 92794240,92794327,FR 92794328,92794335,IT @@ -4975,7 +5250,7 @@ 92794432,92794463,FR 92794464,92794499,GB 92794500,92794503,FR -92794504,92794511,IT +92794504,92794511,NL 92794512,92794691,FR 92794692,92794695,ES 92794696,92794699,PL @@ -4984,8 +5259,7 @@ 92794716,92794719,GB 92794720,92794727,PL 92794728,92794735,GB -92794736,92794911,FR -92794912,92794943,NL +92794736,92794943,FR 92794944,92794975,CH 92794976,92795103,FR 92795104,92795111,ES @@ -4993,8 +5267,7 @@ 92795120,92795127,FR 92795128,92795131,PL 92795132,92795135,GB -92795136,92795167,IT -92795168,92795171,NL +92795136,92795171,NL 92795172,92795175,BE 92795176,92795179,PL 92795180,92795191,FR @@ -5007,8 +5280,8 @@ 92795456,92795487,FR 92795488,92795495,ES 92795496,92795511,FR -92795512,92795515,GB -92795516,92795551,FR +92795512,92795519,GB +92795520,92795551,FR 92795552,92795559,BE 92795560,92795567,PL 92795568,92795583,IT @@ -5032,16 +5305,19 @@ 92796544,92796575,PL 92796576,92796579,FR 92796580,92796583,FI -92796584,92796639,FR +92796584,92796587,PL +92796588,92796591,FR +92796592,92796607,PT +92796608,92796639,FR 92796640,92796655,PT 92796656,92796687,IE 92796688,92796695,FR 92796696,92796703,BE -92796704,92796727,FR +92796704,92796715,FR +92796716,92796719,PL +92796720,92796727,FR 92796728,92796735,IT -92796736,92796767,NL -92796768,92796799,FR -92796800,92796831,GB +92796736,92796831,FR 92796832,92796863,IT 92796864,92796879,IE 92796880,92796887,PL @@ -5060,7 +5336,7 @@ 92797064,92797079,FR 92797080,92797087,PL 92797088,92797119,PT -92797120,92797151,IT +92797120,92797151,FR 92797152,92797159,PT 92797160,92797163,FR 92797164,92797167,PT @@ -5084,17 +5360,18 @@ 92797408,92797423,GB 92797424,92797439,FR 92797440,92797455,ES -92797456,92797475,FR +92797456,92797459,FI +92797460,92797475,FR 92797476,92797483,PL 92797484,92797487,FR 92797488,92797503,DE 92797504,92797507,IT -92797508,92797511,FR +92797508,92797511,PT 92797512,92797515,PL 92797516,92797519,LT -92797520,92797535,FR -92797536,92797551,ES -92797552,92797567,FR +92797520,92797523,FR +92797524,92797527,PT +92797528,92797567,FR 92797568,92797759,PT 92797760,92797775,DE 92797776,92797783,FR @@ -5108,8 +5385,11 @@ 92797912,92797915,GB 92797916,92797919,DE 92797920,92797951,FR -92797952,92797963,GB -92797964,92797991,FR +92797952,92797959,GB +92797960,92797963,FR +92797964,92797967,FI +92797968,92797987,FR +92797988,92797991,DE 92797992,92797995,LT 92797996,92797999,CZ 92798000,92798007,CH @@ -5127,19 +5407,21 @@ 92798128,92798143,NL 92798144,92798159,PL 92798160,92798163,DE -92798164,92798167,FR -92798168,92798191,PT +92798164,92798175,FR +92798176,92798191,PT 92798192,92798207,IT 92798208,92798211,NL 92798212,92798215,FR -92798216,92798223,ES +92798216,92798219,CZ +92798220,92798223,FR 92798224,92798231,IE 92798232,92798239,FR 92798240,92798247,PL 92798248,92798255,FR 92798256,92798271,FI 92798272,92798275,ES -92798276,92798283,FR +92798276,92798279,NL +92798280,92798283,CH 92798284,92798287,PL 92798288,92798303,PT 92798304,92798319,FR @@ -5181,8 +5463,8 @@ 93417472,93419519,IR 93419520,93421567,IT 93421568,93425663,DE -93425664,93426175,SE -93426176,93427711,GI +93425664,93426183,SE +93426184,93427711,GI 93427712,93429759,NO 93429760,93431807,RU 93431808,93433855,ES @@ -5211,7 +5493,10 @@ 93704192,93708287,UA 93708288,93712383,DE 93712384,93714431,HU -93714432,93716479,NL +93714432,93714943,NL +93714944,93715455,GB +93715456,93715967,CA +93715968,93716479,NL 93716480,93749247,GB 93749248,93753343,IT 93753344,93765631,GB @@ -5230,13 +5515,14 @@ 93906944,93908991,BA 93908992,93911039,IT 93911040,93913087,AE -93913088,93913103,KR +93913088,93913095,US +93913096,93913103,NL 93913104,93913119,US 93913120,93913127,AE 93913128,93913135,IL -93913136,93913147,KR -93913148,93913151,IN -93913152,93913155,KR +93913136,93913143,US +93913144,93913151,IN +93913152,93913155,AU 93913156,93913159,CN 93913160,93913167,IL 93913168,93913183,US @@ -5244,11 +5530,10 @@ 93913192,93913195,TR 93913196,93913207,US 93913208,93913223,NL -93913224,93913231,AR +93913224,93913231,US 93913232,93913239,QA 93913240,93913247,NL -93913248,93913263,CN -93913264,93913271,US +93913248,93913271,US 93913272,93913279,TR 93913280,93913319,US 93913320,93913327,EG @@ -5256,16 +5541,18 @@ 93913336,93913343,BR 93913344,93913351,NL 93913352,93913359,IT -93913360,93913375,US +93913360,93913375,NL 93913376,93913383,IN 93913384,93913391,BS 93913392,93913399,IS 93913400,93913407,CA -93913408,93913415,NL +93913408,93913415,US 93913416,93913423,IN 93913424,93913431,IL 93913432,93913435,TR -93913436,93913471,NL +93913436,93913455,NL +93913456,93913463,SA +93913464,93913471,NL 93913472,93913479,IE 93913480,93913487,BR 93913488,93913495,US @@ -5273,16 +5560,18 @@ 93913504,93913511,MA 93913512,93913519,DK 93913520,93913527,GB -93913528,93913535,NL +93913528,93913535,US 93913536,93913543,CA 93913544,93913551,PA 93913552,93913559,US 93913560,93913567,CA 93913568,93913575,GR -93913576,93913599,NL +93913576,93913583,NL +93913584,93913599,US 93913600,93913615,JO 93913616,93913623,TR -93913624,93913647,US +93913624,93913631,US +93913632,93913647,NL 93913648,93913655,IN 93913656,93913663,RU 93913664,93913687,US @@ -5309,38 +5598,36 @@ 93914128,93914135,AF 93914136,93914143,US 93914144,93914151,IL -93914152,93914159,KR +93914152,93914159,US 93914160,93914167,JO 93914168,93914171,RU -93914172,93914173,NL -93914174,93914174,US -93914175,93914175,GB -93914176,93914183,NL +93914172,93914183,NL 93914184,93914191,TR 93914192,93914199,CN 93914200,93914207,US 93914208,93914215,IL 93914216,93914223,TR 93914224,93914231,RU -93914232,93914263,NL +93914232,93914239,US +93914240,93914247,NL +93914248,93914263,US 93914264,93914271,IN 93914272,93914279,ZA 93914280,93914283,KW -93914284,93914295,ES -93914296,93914311,NL +93914284,93914287,ES +93914288,93914311,NL 93914312,93914319,BE -93914320,93914323,BR +93914320,93914323,US 93914324,93914327,SA 93914328,93914331,GB -93914332,93914334,TR -93914335,93914335,GB +93914332,93914333,TR +93914334,93914335,NL 93914336,93914343,RO 93914344,93914351,NL 93914352,93914355,AU 93914356,93914357,ES -93914358,93914358,GB -93914359,93914359,CN -93914360,93914367,NL +93914358,93914359,NL +93914360,93914367,AE 93914368,93914375,ES 93914376,93914391,BE 93914392,93914399,US @@ -5352,10 +5639,9 @@ 93914464,93914471,TR 93914472,93914479,NL 93914480,93914487,HR -93914488,93914495,FR +93914488,93914495,NL 93914496,93914527,GT -93914528,93914535,US -93914536,93914543,NL +93914528,93914543,US 93914544,93914551,QA 93914552,93914567,US 93914568,93914571,SE @@ -5363,38 +5649,31 @@ 93914576,93914583,NO 93914584,93914587,US 93914588,93914591,TR -93914592,93914607,NL -93914608,93914615,US -93914616,93914623,CH -93914624,93914663,US -93914664,93914671,CZ +93914592,93914599,NL +93914600,93914663,US +93914664,93914671,NL 93914672,93914679,TR 93914680,93914687,IL -93914688,93914695,US -93914696,93914703,NL +93914688,93914703,US 93914704,93914707,ES 93914708,93914709,US -93914710,93914710,EG -93914711,93914711,GB +93914710,93914711,NL 93914712,93914719,US 93914720,93914727,ES 93914728,93914735,NL 93914736,93914743,US 93914744,93914751,EG -93914752,93914783,US -93914784,93914791,NL -93914792,93914799,US -93914800,93914807,NL +93914752,93914807,US 93914808,93914815,PK 93914816,93914847,NL 93914848,93914855,AE 93914856,93914871,US 93914872,93914887,NL -93914888,93914895,CH +93914888,93914895,US 93914896,93914903,DE -93914904,93914919,NL -93914920,93914927,SE -93914928,93914935,NL +93914904,93914911,US +93914912,93914919,NL +93914920,93914935,US 93914936,93914943,IN 93914944,93914959,US 93914960,93914967,NL @@ -5406,19 +5685,18 @@ 93915008,93915071,US 93915072,93915083,PL 93915084,93915087,CA -93915088,93915103,US +93915088,93915095,GB +93915096,93915103,US 93915104,93915111,RO 93915112,93915119,TH 93915120,93915131,US -93915132,93915132,PA -93915133,93915133,US -93915134,93915134,CN -93915135,93915135,NL +93915132,93915135,NL 93915136,93915207,US 93915208,93915215,CY 93915216,93915223,CA 93915224,93915231,US -93915232,93915247,GB +93915232,93915239,GB +93915240,93915247,BR 93915248,93915263,NL 93915264,93915271,US 93915272,93915279,NL @@ -5428,7 +5706,9 @@ 93915312,93915327,BR 93915328,93915423,NL 93915424,93915439,US -93915440,93915551,NL +93915440,93915487,NL +93915488,93915503,US +93915504,93915551,NL 93915552,93915559,US 93915560,93915575,NL 93915576,93915583,US @@ -5437,42 +5717,44 @@ 93915624,93915663,NL 93915664,93915679,US 93915680,93915807,NL -93915808,93915815,IT +93915808,93915815,CN 93915816,93915831,US 93915832,93915839,CN -93915840,93915863,US -93915864,93915871,NL -93915872,93915895,US +93915840,93915855,NL +93915856,93915863,US +93915864,93915879,NL +93915880,93915887,US +93915888,93915895,NL 93915896,93915903,AT -93915904,93915911,DE +93915904,93915911,NL 93915912,93915919,US 93915920,93915951,NL 93915952,93915959,CN 93915960,93915967,US 93915968,93915975,NL -93915976,93915983,US -93915984,93915999,NL -93916000,93916007,US +93915976,93916007,US 93916008,93916015,MX 93916016,93916031,NL 93916032,93916039,US 93916040,93916047,NL 93916048,93916055,US 93916056,93916063,ES -93916064,93916079,US -93916080,93916127,NL +93916064,93916071,US +93916072,93916127,NL 93916128,93916135,US 93916136,93916143,ES 93916144,93916159,NL 93916160,93916175,US -93916176,93916183,NL +93916176,93916179,SA +93916180,93916183,NL 93916184,93916191,FR 93916192,93916199,IL -93916200,93916223,NL +93916200,93916207,AE +93916208,93916223,NL 93916224,93916255,US -93916256,93916303,NL -93916304,93916304,AU -93916305,93916305,CR +93916256,93916287,NL +93916288,93916303,US +93916304,93916305,NL 93916306,93916307,AU 93916308,93916311,NL 93916312,93916319,US @@ -5482,12 +5764,8 @@ 93916352,93916383,NL 93916384,93916407,US 93916408,93916411,BD -93916412,93916412,GR -93916413,93916413,NL -93916414,93916414,US -93916415,93916415,NL -93916416,93916447,US -93916448,93916455,NL +93916412,93916415,NL +93916416,93916455,US 93916456,93916463,CY 93916464,93916487,NL 93916488,93916495,GB @@ -5499,7 +5777,11 @@ 93916544,93916607,NL 93916608,93916615,US 93916616,93916623,CY -93916624,93916719,NL +93916624,93916655,NL +93916656,93916659,US +93916660,93916663,NL +93916664,93916671,US +93916672,93916719,NL 93916720,93916727,CY 93916728,93916735,US 93916736,93916767,NL @@ -5510,7 +5792,8 @@ 93916832,93916879,NL 93916880,93916887,CY 93916888,93916895,US -93916896,93916911,NL +93916896,93916899,BZ +93916900,93916911,NL 93916912,93916919,CY 93916920,93916935,US 93916936,93916939,CY @@ -5526,9 +5809,9 @@ 93917024,93917031,US 93917032,93917039,NL 93917040,93917063,US -93917064,93917071,CN +93917064,93917071,CY 93917072,93917079,US -93917080,93917087,NL +93917080,93917087,AE 93917088,93917095,US 93917096,93917119,NL 93917120,93917135,US @@ -5562,17 +5845,15 @@ 93917632,93917639,GB 93917640,93917647,RS 93917648,93917655,DE -93917656,93917663,NL -93917664,93917671,US +93917656,93917671,US 93917672,93917679,IN 93917680,93917687,TW 93917688,93917695,LT 93917696,93917703,US 93917704,93917707,NL 93917708,93917711,RU -93917712,93917719,US -93917720,93917727,NL -93917728,93917735,TR +93917712,93917727,US +93917728,93917735,ES 93917736,93917743,GB 93917744,93917751,NL 93917752,93917791,US @@ -5580,31 +5861,33 @@ 93917800,93917823,NL 93917824,93917855,TR 93917856,93917863,CY -93917864,93917867,CN +93917864,93917867,NL 93917868,93917871,TR -93917872,93917935,NL +93917872,93917907,NL +93917908,93917911,US +93917912,93917927,NL +93917928,93917935,BG 93917936,93917943,IN 93917944,93917947,NL 93917948,93917949,US -93917950,93917950,BZ -93917951,93917952,NL -93917953,93917953,GB +93917950,93917953,NL 93917954,93917955,US 93917956,93917959,IN 93917960,93917963,TR -93917964,93917975,US +93917964,93917967,NL +93917968,93917975,US 93917976,93917979,NL -93917980,93917999,TR +93917980,93917991,TR +93917992,93917999,NL 93918000,93918007,US -93918008,93918015,NL +93918008,93918015,TR 93918016,93918023,RS 93918024,93918031,GB 93918032,93918047,US 93918048,93918063,GB 93918064,93918071,SE 93918072,93918073,US -93918074,93918074,AU -93918075,93918075,FR +93918074,93918075,NL 93918076,93918079,TR 93918080,93918087,GB 93918088,93918095,CN @@ -5621,7 +5904,7 @@ 93918200,93918207,NL 93918208,93918223,US 93918224,93918231,RO -93918232,93918235,CN +93918232,93918235,CA 93918236,93918239,SA 93918240,93918243,TR 93918244,93918247,US @@ -5638,8 +5921,8 @@ 93918352,93918359,CN 93918360,93918363,EG 93918364,93918367,AU -93918368,93918383,IL -93918384,93918431,US +93918368,93918399,NL +93918400,93918431,US 93918432,93918439,NL 93918440,93918447,MA 93918448,93918455,NL @@ -5662,13 +5945,11 @@ 93918576,93918591,NL 93918592,93918599,US 93918600,93918607,GB -93918608,93918615,US -93918616,93918623,IL +93918608,93918623,NL 93918624,93918631,NO 93918632,93918635,GR 93918636,93918639,US -93918640,93918647,NL -93918648,93918655,IL +93918640,93918655,NL 93918656,93918687,BR 93918688,93918695,TR 93918696,93918703,US @@ -5683,8 +5964,8 @@ 93918888,93918895,EG 93918896,93918903,HK 93918904,93918911,GB -93918912,93918919,IL -93918920,93918927,IE +93918912,93918919,NL +93918920,93918927,HK 93918928,93918935,RU 93918936,93918943,NL 93918944,93918975,US @@ -5705,11 +5986,9 @@ 93919164,93919167,NL 93919168,93919175,ES 93919176,93919183,US -93919184,93919191,IL +93919184,93919191,NL 93919192,93919195,US -93919196,93919196,NL -93919197,93919197,CA -93919198,93919199,NL +93919196,93919199,NL 93919200,93919207,US 93919208,93919215,NL 93919216,93919247,US @@ -5729,7 +6008,9 @@ 93919424,93919431,NL 93919432,93919439,US 93919440,93919443,AU -93919444,93919463,US +93919444,93919451,US +93919452,93919455,TR +93919456,93919463,US 93919464,93919471,NL 93919472,93919551,US 93919552,93919583,CA @@ -5752,13 +6033,12 @@ 93919712,93919719,IN 93919720,93919727,GB 93919728,93919735,ES -93919736,93919743,CH +93919736,93919743,SE 93919744,93919751,NL 93919752,93919759,MY 93919760,93919775,NL 93919776,93919779,US -93919780,93919780,MA -93919781,93919781,GR +93919780,93919781,NL 93919782,93919783,AU 93919784,93919791,US 93919792,93919799,NL @@ -5767,11 +6047,9 @@ 93919812,93919815,US 93919816,93919819,NL 93919820,93919821,SA -93919822,93919822,ES -93919823,93919823,IN -93919824,93919863,NL -93919864,93919871,US -93919872,93919911,NL +93919822,93919855,NL +93919856,93919863,US +93919864,93919911,NL 93919912,93919919,PT 93919920,93919943,US 93919944,93919991,NL @@ -5789,12 +6067,9 @@ 93920176,93920183,CY 93920184,93920187,TR 93920188,93920189,ES -93920190,93920190,IN -93920191,93920191,HR -93920192,93920199,NL +93920190,93920199,NL 93920200,93920201,AU -93920202,93920202,GB -93920203,93920203,AE +93920202,93920203,NL 93920204,93920207,IL 93920208,93920215,NL 93920216,93920223,IL @@ -5818,10 +6093,19 @@ 93920504,93920511,NL 93920512,93920519,US 93920520,93920527,SE -93920528,93920535,CH +93920528,93920535,TR 93920536,93920543,NL 93920544,93920575,US -93920576,93929471,NL +93920576,93920639,NL +93920640,93920643,IN +93920644,93920703,US +93920704,93920711,BZ +93920712,93920719,NL +93920720,93920735,BZ +93920736,93920783,US +93920784,93920791,NL +93920792,93920795,US +93920796,93929471,NL 93929472,93939711,GB 93939712,93941759,NO 93941760,93945855,CH @@ -5911,7 +6195,9 @@ 95365120,95367167,ES 95367168,95369215,IT 95369216,95371263,GB -95371264,95375359,EU +95371264,95374847,EU +95374848,95375103,LY +95375104,95375359,EU 95375360,95377407,NL 95377408,95387647,RU 95387648,95416319,DE @@ -6651,8 +6937,7 @@ 98734080,98736127,CH 98736128,98738175,RU 98738176,98740223,NO -98740224,98740479,ES -98740480,98740735,DE +98740224,98740735,ES 98740736,98741247,US 98741248,98742271,DE 98742272,98744319,GB @@ -6696,7 +6981,8 @@ 100630528,100632575,BE 100632576,100634623,GB 100634624,100636671,ES -100636672,100638719,NL +100636672,100636799,DE +100636800,100638719,NL 100638720,100646911,UA 100646912,100663295,RU 100663296,121195295,US @@ -7299,8 +7585,7 @@ 411435008,411500543,DE 411500544,411566079,RS 411566080,411639807,US -411639808,411643903,CA -411648000,411664383,CA +411639808,411664383,CA 411664384,411680767,US 411680768,411682391,CA 411682392,411682399,US @@ -7338,7 +7623,7 @@ 412942336,412946431,US 412946432,412950527,PR 412950528,412958719,US -412975104,413007871,CA +412958720,413007871,CA 413007872,413908991,US 413908992,413925375,PR 413925376,415760383,US @@ -7669,21 +7954,27 @@ 520421376,520486911,AT 520486912,520488959,NL 520488960,520489983,IT -520489984,520491007,RU +520489984,520490495,RU +520490496,520490751,RO +520490752,520491007,RU 520491008,520493567,GB 520493568,520494079,GB 520494080,520494335,FR 520494336,520494591,TR -520494592,520495103,CH +520494592,520494847,CH +520494848,520495103,DK 520495104,520496383,DE 520496384,520496895,TR 520496896,520497151,ES 520497152,520497407,FR 520497408,520497663,ES 520497664,520498175,FR -520498176,520498687,CH +520498176,520498431,CH +520498432,520498687,SE 520498688,520499711,FR -520499712,520501247,DE +520499712,520500223,DE +520500224,520500479,LU +520500480,520501247,DE 520501248,520501503,IL 520501504,520501759,AE 520501760,520503295,GB @@ -7713,7 +8004,12 @@ 520598048,520598079,FR 520598080,520599935,DE 520599936,520600063,US -520600064,520601599,DE +520600064,520600319,DE +520600320,520600575,DE +520600576,520600831,DE +520600832,520601087,AR +520601088,520601343,DE +520601344,520601599,GB 520601600,520609791,SI 520609792,520613887,RU 520613888,520615935,CZ @@ -7758,7 +8054,9 @@ 520980480,520982527,IT 520982528,520984575,RU 520984576,520984831,NG -520984832,520986623,GB +520984832,520985471,GB +520985472,520985535,SG +520985536,520986623,GB 520986624,520988671,PS 520988672,520990719,DE 520990720,520992767,RU @@ -8037,11 +8335,13 @@ 528666624,528668671,RU 528668672,528670719,PL 528670720,528674815,CH -528674816,528676863,RO +528674816,528676863,GB 528676864,528678911,RU 528678912,528680959,MD 528680960,528683007,RO -528683008,528685823,UA +528683008,528684031,UA +528684032,528684543,NL +528684544,528685823,UA 528685824,528687103,US 528687104,528689151,UA 528689152,528691199,RO @@ -8109,9 +8409,7 @@ 529727488,529793023,HR 529793024,529827839,RU 529827840,529828863,CZ -529828864,529829887,RU -529829888,529831935,CZ -529831936,529835007,RU +529828864,529835007,RU 529835008,529836031,KG 529836032,529836543,UA 529836544,529837055,IL @@ -8160,7 +8458,9 @@ 531197952,531199999,GB 531200000,531202047,RU 531202048,531234815,CZ -531234816,531236863,IE +531234816,531235327,IE +531235328,531235839,GB +531235840,531236863,IE 531236864,531238911,FR 531238912,531240959,LV 531240960,531242751,SE @@ -8229,13 +8529,15 @@ 531428496,531428503,IT 531428504,531428583,GB 531428584,531428591,IT -531428592,531428975,GB -531428976,531428983,IT +531428592,531428967,GB +531428968,531428983,IT 531428984,531429023,GB 531429024,531429031,IT 531429032,531429135,GB 531429136,531429143,IT -531429144,531429239,GB +531429144,531429167,GB +531429168,531429175,IT +531429176,531429239,GB 531429240,531429247,IT 531429248,531429271,GB 531429272,531429279,IT @@ -8243,17 +8545,17 @@ 531429408,531429415,IT 531429416,531429487,GB 531429488,531429495,IT -531429496,531429671,GB -531429672,531429679,IT -531429680,531429879,GB +531429496,531429879,GB 531429880,531429887,IT -531429888,531430319,GB +531429888,531429911,GB +531429912,531429919,IT +531429920,531430079,GB +531430080,531430087,IT +531430088,531430319,GB 531430320,531430327,IT 531430328,531430391,GB 531430392,531430399,IT -531430400,531430559,GB -531430560,531430567,IT -531430568,531430663,GB +531430400,531430663,GB 531430664,531430671,IT 531430672,531430823,GB 531430824,531430831,IT @@ -8329,16 +8631,16 @@ 532341760,532342783,GB 532342784,532343039,US 532343040,532343359,GB -532343360,532343487,US -532343488,532343935,GB +532343360,532343551,US +532343552,532343935,GB 532343936,532343967,US 532343968,532344063,GB 532344064,532344575,US 532344576,532346879,GB 532346880,532347135,US 532347136,532347903,GB -532347904,532348159,US -532348160,532348927,GB +532347904,532348415,US +532348416,532348927,GB 532348928,532365311,PL 532365312,532373503,DE 532373504,532375551,RU @@ -8362,7 +8664,9 @@ 532733952,532734975,US 532734976,532735999,SE 532736000,532738047,RU -532738048,532738088,GB +532738048,532738081,GB +532738082,532738082,GB +532738083,532738088,GB 532738089,532738093,SZ 532738094,532738232,GB 532738233,532738303,PK @@ -8391,7 +8695,8 @@ 532791296,532793343,LT 532793344,532795391,SE 532795392,532797439,CH -532797440,532799487,IE +532797440,532799231,IE +532799232,532799487,GB 532799488,532801535,ES 532801536,532803583,DK 532803584,532805631,FR @@ -8982,8 +9287,9 @@ 534183936,534249471,RO 534249472,534253567,GB 534253568,534254591,FR -534254592,534255103,GB -534255104,534256639,FR +534254592,534254608,GB +534254609,534254624,US +534254625,534256639,FR 534256640,534256895,GB 534256896,534257663,FR 534257664,534259711,SE @@ -9022,7 +9328,14 @@ 534511616,534512639,BZ 534512640,534512895,NL 534512896,534513151,US -534513152,534544383,DE +534513152,534513215,BS +534513216,534513279,VG +534513280,534513407,NL +534513408,534519551,DE +534519552,534519807,GB +534519808,534523903,DE +534523904,534527999,LT +534528000,534544383,DE 534544384,534546431,RO 534546432,534548479,DE 534548480,534550527,PL @@ -9242,9 +9555,12 @@ 620785664,620785919,DE 620785920,620786687,US 620786688,620787711,DE -620787712,620788479,RU -620788480,620788991,RU -620788992,620789759,RU +620787712,620788799,RU +620788800,620788815,IN +620788816,620788847,PH +620788848,620789503,RU +620789504,620789631,KZ +620789632,620789759,RU 620789760,620810239,HR 620810240,620822527,LT 620822528,620845055,RU @@ -9512,7 +9828,9 @@ 623808512,623810559,RU 623810560,623812607,ES 623812608,623820799,SE -623820800,623822847,NL +623820800,623821823,NL +623821824,623822335,US +623822336,623822847,NL 623822848,623824895,GB 623824896,623826943,CZ 623826944,623837183,UA @@ -9529,9 +9847,7 @@ 624005120,624007167,IR 624007168,624009215,DE 624009216,624025599,RU -624025600,624026622,NL -624026623,624026623,HN -624026624,624027647,NL +624025600,624027647,NL 624027648,624029695,FR 624029696,624033791,SE 624033792,624164863,DE @@ -9562,22 +9878,25 @@ 624574656,624574663,US 624574664,624574671,KW 624574672,624574687,US -624574688,624574703,NL -624574704,624574711,US +624574688,624574711,NL 624574712,624574715,TR 624574716,624574719,US -624574720,624574720,NL -624574721,624574721,AU +624574720,624574721,NL 624574722,624574723,US 624574724,624574727,TR -624574728,624574735,US +624574728,624574735,NL 624574736,624574743,GB -624574744,624574751,NL -624574752,624574823,US +624574744,624574751,AE +624574752,624574799,US +624574800,624574815,NL +624574816,624574823,US 624574824,624574831,DK -624574832,624574855,US +624574832,624574839,NL +624574840,624574855,US 624574856,624574863,GB -624574864,624574895,US +624574864,624574871,US +624574872,624574887,NL +624574888,624574895,US 624574896,624574899,IT 624574900,624574903,HK 624574904,624574911,US @@ -9597,7 +9916,8 @@ 624575056,624575063,CY 624575064,624575071,US 624575072,624575079,FR -624575080,624575095,US +624575080,624575087,NL +624575088,624575095,US 624575096,624575103,ES 624575104,624575111,DK 624575112,624575119,IT @@ -9624,8 +9944,7 @@ 624575304,624575311,NL 624575312,624575335,US 624575336,624575343,SA -624575344,624575347,GB -624575348,624575351,EG +624575344,624575351,GB 624575352,624575359,US 624575360,624575367,TR 624575368,624575375,US @@ -9645,21 +9964,21 @@ 624575464,624575471,NZ 624575472,624575479,AT 624575480,624575487,AE -624575488,624575495,TR +624575488,624575495,EG 624575496,624575503,IL 624575504,624575551,US 624575552,624575567,GB 624575568,624575575,AE 624575576,624575583,GB 624575584,624575599,TR -624575600,624575607,NL +624575600,624575607,US 624575608,624575615,RU 624575616,624575623,US 624575624,624575627,ES 624575628,624575631,EG 624575632,624575771,NL -624575772,624575775,US -624575776,624575791,NL +624575772,624575783,US +624575784,624575791,NL 624575792,624575799,TR 624575800,624575807,BD 624575808,624575823,US @@ -9714,7 +10033,8 @@ 624576320,624576327,IT 624576328,624576335,NL 624576336,624576343,TR -624576344,624576359,US +624576344,624576351,NL +624576352,624576359,US 624576360,624576367,SE 624576368,624576383,US 624576384,624576391,NL @@ -9736,7 +10056,7 @@ 624576544,624576607,US 624576608,624576639,TR 624576640,624576703,BG -624576704,624576711,PT +624576704,624576711,NL 624576712,624576719,US 624576720,624576727,AU 624576728,624576751,NL @@ -9755,8 +10075,7 @@ 624576960,624576991,TR 624576992,624576999,US 624577000,624577007,IL -624577008,624577015,NL -624577016,624577023,AU +624577008,624577023,NL 624577024,624577055,SA 624577056,624577071,VG 624577072,624577119,US @@ -9768,7 +10087,8 @@ 624577216,624577247,US 624577248,624577279,LT 624577280,624577287,US -624577288,624577303,NL +624577288,624577295,NL +624577296,624577303,GB 624577304,624577305,TR 624577306,624577307,AU 624577308,624577311,US @@ -9788,23 +10108,20 @@ 624577472,624577483,CA 624577484,624577487,US 624577488,624577495,NL -624577496,624577503,GB -624577504,624577535,US -624577536,624577543,NL -624577544,624577547,US +624577496,624577535,GB +624577536,624577547,US 624577548,624577551,AE 624577552,624577559,US 624577560,624577567,AE -624577568,624577575,NL -624577576,624577583,GB -624577584,624577591,NL +624577568,624577583,GB +624577584,624577591,US 624577592,624577599,TR 624577600,624577607,PL 624577608,624577615,NL 624577616,624577623,AE 624577624,624577631,ES 624577632,624577639,BA -624577640,624577647,NL +624577640,624577647,EE 624577648,624577655,GB 624577656,624577663,NL 624577664,624577695,NZ @@ -9820,12 +10137,11 @@ 624577840,624577855,NL 624577856,624577863,GB 624577864,624577871,CN -624577872,624577887,TR +624577872,624577887,NL 624577888,624577919,US 624577920,624577935,NL 624577936,624577943,ZA -624577944,624577951,NL -624577952,624577959,US +624577944,624577959,NL 624577960,624577967,TR 624577968,624577983,NL 624577984,624578015,RU @@ -9834,7 +10150,7 @@ 624578032,624578047,NL 624578048,624578079,TR 624578080,624578111,EG -624578112,624578143,US +624578112,624578143,NL 624578144,624578175,NZ 624578176,624578207,CA 624578208,624578239,TR @@ -9846,16 +10162,13 @@ 624578408,624578415,GB 624578416,624578423,SA 624578424,624578431,US -624578432,624578479,NL -624578480,624578495,US -624578496,624578511,NL +624578432,624578511,NL 624578512,624578527,US 624578528,624578575,NL 624578576,624578583,BA 624578584,624578591,TR -624578592,624578623,NL -624578624,624578655,US -624578656,624578735,NL +624578592,624578719,US +624578720,624578735,NL 624578736,624578743,SK 624578744,624578747,TR 624578748,624578751,SK @@ -9865,23 +10178,24 @@ 624578776,624578779,GB 624578780,624578783,US 624578784,624578791,AE -624578792,624578799,NL +624578792,624578799,BR 624578800,624578815,US -624578816,624578823,NL +624578816,624578823,ES 624578824,624578831,TR 624578832,624578847,US -624578848,624578855,NL +624578848,624578855,IN 624578856,624578863,MY -624578864,624578871,NL +624578864,624578871,NO 624578872,624578879,SE 624578880,624578895,NL 624578896,624578911,JO -624578912,624578919,NL +624578912,624578919,IN 624578920,624578927,US 624578928,624578943,NL 624578944,624578955,US 624578956,624578959,SA -624578960,624578983,NL +624578960,624578975,NL +624578976,624578983,DE 624578984,624578991,EG 624578992,624578999,AT 624579000,624579007,NL @@ -9893,8 +10207,7 @@ 624579076,624579079,US 624579080,624579087,MY 624579088,624579095,NL -624579096,624579103,US -624579104,624579111,NL +624579096,624579111,US 624579112,624579119,RO 624579120,624579127,NL 624579128,624579131,SE @@ -9902,22 +10215,23 @@ 624579136,624579143,NL 624579144,624579167,US 624579168,624579175,AE -624579176,624579183,NL -624579184,624579231,US -624579232,624579239,NL +624579176,624579183,BG +624579184,624579239,US 624579240,624579243,BA 624579244,624579247,HR -624579248,624579255,CA -624579256,624579263,NL +624579248,624579263,NL 624579264,624579295,US 624579296,624579303,GB 624579304,624579319,NL 624579320,624579327,SZ 624579328,624579391,US 624579392,624579423,TR -624579424,624579471,NL +624579424,624579455,US +624579456,624579463,NL +624579464,624579471,US 624579472,624579479,BD -624579480,624579495,NL +624579480,624579487,NL +624579488,624579495,GB 624579496,624579499,US 624579500,624579503,GR 624579504,624579519,TR @@ -9928,40 +10242,36 @@ 624579568,624579615,US 624579616,624579619,SM 624579620,624579621,IN -624579622,624579622,CN -624579623,624579623,TR +624579622,624579623,NL 624579624,624579631,US -624579632,624579632,JO -624579633,624579633,AU -624579634,624579634,GR -624579635,624579637,TR -624579638,624579638,GB -624579639,624579639,BS +624579632,624579635,NL +624579636,624579637,SA +624579638,624579639,NL 624579640,624579647,BA 624579648,624579663,GB 624579664,624579667,US -624579668,624579679,NL +624579668,624579671,NL +624579672,624579673,SA +624579674,624579675,NL +624579676,624579677,HR +624579678,624579679,NL 624579680,624579695,US 624579696,624579703,MX 624579704,624579705,NL 624579706,624579707,AR 624579708,624579719,NL -624579720,624579727,PH -624579728,624579751,US +624579720,624579751,US 624579752,624579759,AU -624579760,624579775,NL +624579760,624579775,US 624579776,624579783,EE 624579784,624579791,NL 624579792,624579807,GB 624579808,624579815,US 624579816,624579823,BY 624579824,624579831,CN -624579832,624579832,NL -624579833,624579833,GB -624579834,624579835,NL +624579832,624579835,NL 624579836,624579837,CY -624579838,624579838,TR -624579839,624579839,NL +624579838,624579839,NL 624579840,624579847,GT 624579848,624579849,TR 624579850,624579851,AU @@ -9972,79 +10282,73 @@ 624579870,624579871,VG 624579872,624579875,TR 624579876,624579879,IN -624579880,624579887,US -624579888,624579889,NL +624579880,624579889,NL 624579890,624579891,SA 624579892,624579895,US -624579896,624579903,NL -624579904,624579939,US +624579896,624579901,NL +624579902,624579903,SA +624579904,624579935,CN +624579936,624579939,US 624579940,624579943,NL 624579944,624579951,BD 624579952,624579955,PT 624579956,624579959,GB -624579960,624579967,NL -624579968,624579971,US -624579972,624579972,TR -624579973,624579973,ES +624579960,624579971,US +624579972,624579973,NL 624579974,624579975,SA 624579976,624579983,US -624579984,624579985,TR +624579984,624579985,NL 624579986,624579987,HR -624579988,624579988,IL -624579989,624579989,US -624579990,624579990,GR -624579991,624579991,PT -624579992,624579999,NL +624579988,624579999,NL 624580000,624580007,LB 624580008,624580015,US 624580016,624580023,GT 624580024,624580031,US -624580032,624580035,NL +624580032,624580033,NL +624580034,624580035,CR 624580036,624580047,US 624580048,624580049,SA -624580050,624580050,TR -624580051,624580051,NL +624580050,624580051,NL 624580052,624580055,AU 624580056,624580063,US 624580064,624580067,SA 624580068,624580071,US 624580072,624580087,GT -624580088,624580092,US -624580093,624580093,IL -624580094,624580094,TR -624580095,624580095,NL +624580088,624580091,US +624580092,624580095,NL 624580096,624580127,CA 624580128,624580131,ES -624580132,624580132,TR -624580133,624580133,GB +624580132,624580133,NL 624580134,624580135,BR 624580136,624580143,US 624580144,624580151,SE -624580152,624580175,NL -624580176,624580195,US +624580152,624580159,EG +624580160,624580175,NL +624580176,624580179,US +624580180,624580183,NL +624580184,624580195,US 624580196,624580199,AE 624580200,624580207,SA 624580208,624580211,IN -624580212,624580213,TR -624580214,624580223,NL +624580212,624580213,NL +624580214,624580215,AU +624580216,624580223,NL 624580224,624580295,US 624580296,624580303,NL -624580304,624580311,RO -624580312,624580319,US +624580304,624580319,US 624580320,624580327,DE 624580328,624580335,NL 624580336,624580343,DE 624580344,624580351,BG 624580352,624580415,US 624580416,624580419,AU -624580420,624580423,IN -624580424,624580439,NL +624580420,624580439,NL 624580440,624580447,IL 624580448,624580455,CO 624580456,624580463,NL 624580464,624580471,US 624580472,624580479,HK -624580480,624580487,CN +624580480,624580487,NL 624580488,624580495,EE 624580496,624580503,US 624580504,624580511,NL @@ -10055,7 +10359,7 @@ 624580544,624580575,US 624580576,624580583,NL 624580584,624580591,IT -624580592,624580599,NL +624580592,624580599,US 624580600,624580607,AU 624580608,624580911,US 624580912,624580919,ES @@ -10063,7 +10367,7 @@ 624580952,624580955,GB 624580956,624580959,NL 624580960,624580967,CZ -624580968,624580975,NL +624580968,624580975,GB 624580976,624580983,SE 624580984,624580991,BR 624580992,624580995,RO @@ -10076,7 +10380,7 @@ 624581032,624581039,US 624581040,624581047,GB 624581048,624581055,US -624581056,624581063,NL +624581056,624581063,GB 624581064,624581071,AE 624581072,624581087,NL 624581088,624581103,AE @@ -10086,11 +10390,10 @@ 624581152,624581183,GB 624581184,624581207,NL 624581208,624581215,TR -624581216,624581279,US -624581280,624581295,GB +624581216,624581287,US +624581288,624581295,GB 624581296,624581303,SZ -624581304,624581311,NL -624581312,624581319,US +624581304,624581319,US 624581320,624581327,NG 624581328,624581335,SZ 624581336,624581339,GB @@ -10115,40 +10418,31 @@ 624581520,624581543,US 624581544,624581567,NL 624581568,624581599,RO -624581600,624581631,NL -624581632,624581663,US +624581600,624581663,US 624581664,624581671,NL 624581672,624581703,US 624581704,624581711,ES -624581712,624581735,NL -624581736,624581743,US -624581744,624581751,NL -624581752,624581759,US -624581760,624581887,NL +624581712,624581887,NL 624581888,624581895,US 624581896,624581903,NL -624581904,624581911,US -624581912,624581919,MX -624581920,624581927,US +624581904,624581927,US 624581928,624581943,CN 624581944,624581951,IN 624581952,624581991,US 624581992,624582007,ES 624582008,624582015,EG -624582016,624582207,NL +624582016,624582031,US +624582032,624582207,NL 624582208,624582215,BA 624582216,624582223,US 624582224,624582235,NL 624582236,624582239,US 624582240,624582243,AE -624582244,624582245,NL -624582246,624582246,US -624582247,624582247,SA +624582244,624582247,NL 624582248,624582255,GB 624582256,624582263,US 624582264,624582271,CN -624582272,624582272,US -624582273,624582273,CN +624582272,624582273,NL 624582274,624582275,UA 624582276,624582279,US 624582280,624582287,GB @@ -10301,8 +10595,7 @@ 624584160,624584167,IN 624584168,624584175,IL 624584176,624584191,US -624584192,624584192,NL -624584193,624584193,AU +624584192,624584193,NL 624584194,624584195,US 624584196,624584199,TR 624584200,624584207,US @@ -10691,8 +10984,7 @@ 624590844,624590847,NL 624590848,624639999,FR 624640000,624640003,DE -624640004,624640007,GB -624640008,624640063,FR +624640004,624640063,FR 624640064,624640067,PT 624640068,624640071,IT 624640072,624640087,FR @@ -10737,7 +11029,8 @@ 624640728,624640735,DE 624640736,624640739,GB 624640740,624640743,PT -624640744,624640755,GB +624640744,624640751,FR +624640752,624640755,GB 624640756,624640759,PL 624640760,624640767,FR 624640768,624640779,IT @@ -10770,7 +11063,7 @@ 624640976,624640991,ES 624640992,624640999,GB 624641000,624641007,FR -624641008,624641023,IT +624641008,624641023,PL 624641024,624641063,FR 624641064,624641067,NL 624641068,624641071,PL @@ -10778,9 +11071,7 @@ 624641080,624641083,ES 624641084,624641087,FR 624641088,624641091,NL -624641092,624641095,FR -624641096,624641099,CH -624641100,624641103,FR +624641092,624641103,FR 624641104,624641107,PL 624641108,624641119,FR 624641120,624641131,PL @@ -10793,9 +11084,7 @@ 624641208,624641211,FI 624641212,624641215,FR 624641216,624641223,IE -624641224,624641231,GB -624641232,624641243,FR -624641244,624641247,IT +624641224,624641247,FR 624641248,624641255,GB 624641256,624641259,PT 624641260,624641263,DE @@ -10812,8 +11101,7 @@ 624641360,624641367,IE 624641368,624641371,FR 624641372,624641375,IT -624641376,624641407,PL -624641408,624641823,FR +624641376,624641823,FR 624641824,624641831,DE 624641832,624641839,ES 624641840,624641855,FR @@ -10845,9 +11133,7 @@ 624642244,624642247,PL 624642248,624642255,FR 624642256,624642271,PL -624642272,624642283,FR -624642284,624642287,GB -624642288,624642291,FR +624642272,624642291,FR 624642292,624642299,PL 624642300,624642303,ES 624642304,624642335,IT @@ -10921,8 +11207,7 @@ 624643012,624643015,GB 624643016,624643019,IE 624643020,624643023,FR -624643024,624643031,IT -624643032,624643035,CZ +624643024,624643035,IT 624643036,624643039,DE 624643040,624643055,FR 624643056,624643059,ES @@ -10940,9 +11225,11 @@ 624643116,624643119,PT 624643120,624643123,IE 624643124,624643131,PT -624643132,624643183,FR -624643184,624643191,ES -624643192,624643199,FR +624643132,624643151,FR +624643152,624643167,ES +624643168,624643183,FR +624643184,624643187,ES +624643188,624643199,FR 624643200,624643203,PL 624643204,624643207,NL 624643208,624643211,PL @@ -10968,8 +11255,7 @@ 624643376,624643383,ES 624643384,624643423,FR 624643424,624643459,ES -624643460,624643463,IE -624643464,624643487,FR +624643460,624643487,FR 624643488,624643503,PL 624643504,624643507,NL 624643508,624643511,DE @@ -11047,8 +11333,9 @@ 624644680,624644683,DE 624644684,624644687,FR 624644688,624644695,PL -624644696,624644719,FR -624644720,624644735,DE +624644696,624644723,FR +624644724,624644727,NL +624644728,624644735,FR 624644736,624644767,PL 624644768,624644771,FR 624644772,624644775,CH @@ -11079,8 +11366,7 @@ 624644992,624645007,ES 624645008,624645015,GB 624645016,624645023,BE -624645024,624645055,PL -624645056,624645135,FR +624645024,624645135,FR 624645136,624645139,PT 624645140,624645143,FR 624645144,624645147,PL @@ -11120,29 +11406,27 @@ 624645888,624645891,PL 624645892,624645895,FR 624645896,624645903,ES -624645904,624645907,FR -624645908,624645911,IE -624645912,624645915,FR +624645904,624645915,FR 624645916,624645919,BE -624645920,624646047,PT -624646048,624646111,FR +624645920,624645951,PT +624645952,624645983,FR +624645984,624646015,PT +624646016,624646111,FR 624646112,624646143,PL 624646144,624646175,FR 624646176,624646207,ES 624646208,624646223,FR 624646224,624646227,PL 624646228,624646231,IT -624646232,624646235,CZ -624646236,624646239,GB +624646232,624646239,CZ 624646240,624646255,FR 624646256,624646259,DE -624646260,624646263,GB -624646264,624646267,FR +624646260,624646267,FR 624646268,624646271,FI 624646272,624646283,FR 624646284,624646287,IT 624646288,624646295,FR -624646296,624646303,ES +624646296,624646303,GB 624646304,624646311,PL 624646312,624646315,FI 624646316,624646319,ES @@ -11151,8 +11435,7 @@ 624646344,624646347,IT 624646348,624646351,IE 624646352,624646367,GB -624646368,624646399,PL -624646400,624646527,FR +624646368,624646527,FR 624646528,624646535,DE 624646536,624646539,PL 624646540,624646543,FR @@ -11160,8 +11443,7 @@ 624646560,624646575,FR 624646576,624646579,PL 624646580,624646583,NL -624646584,624646591,GB -624646592,624646607,FR +624646584,624646607,FR 624646608,624646623,CZ 624646624,624646627,PT 624646628,624646631,DE @@ -11210,9 +11492,9 @@ 624647040,624647055,GB 624647056,624647087,FR 624647088,624647095,DE -624647096,624647107,GB -624647108,624647111,PL -624647112,624647123,ES +624647096,624647103,GB +624647104,624647119,FR +624647120,624647123,ES 624647124,624647127,FR 624647128,624647135,PL 624647136,624647171,FR @@ -11225,8 +11507,14 @@ 624647248,624647263,GB 624647264,624647295,CH 624647296,624647327,NL -624647328,624647359,GB -624647360,624647423,FR +624647328,624647359,PT +624647360,624647375,GB +624647376,624647383,LT +624647384,624647387,PL +624647388,624647391,NL +624647392,624647403,GB +624647404,624647407,PT +624647408,624647423,FR 624647424,624647471,IE 624647472,624647475,PL 624647476,624647479,FR @@ -11249,17 +11537,18 @@ 624647672,624647675,FR 624647676,624647679,ES 624647680,624647935,DE -624647936,624647999,PL +624647936,624647999,PT 624648000,624648063,IT -624648064,624648079,GB +624648064,624648075,GB +624648076,624648079,FR 624648080,624648095,NL 624648096,624648099,FR 624648100,624648103,GB -624648104,624648111,FR +624648104,624648107,FR +624648108,624648111,IT 624648112,624648115,IE 624648116,624648119,BE -624648120,624648123,FR -624648124,624648127,PL +624648120,624648127,FR 624648128,624648135,CH 624648136,624648139,PL 624648140,624648143,ES @@ -11281,8 +11570,7 @@ 624653824,624654335,ES 624654336,624656383,FR 624656384,624656639,IE -624656640,624656703,DE -624656704,624656723,FR +624656640,624656723,FR 624656724,624656727,FI 624656728,624656731,PT 624656732,624656735,PL @@ -11292,9 +11580,7 @@ 624656752,624656755,GB 624656756,624656763,FR 624656764,624656767,PL -624656768,624656831,FR -624656832,624656895,ES -624656896,624656911,FR +624656768,624656911,FR 624656912,624656927,DE 624656928,624656935,FR 624656936,624656943,BE @@ -11309,9 +11595,8 @@ 624657020,624657023,PL 624657024,624657063,FR 624657064,624657067,NL -624657068,624657071,FR -624657072,624657087,GB -624657088,624657135,PL +624657068,624657119,FR +624657120,624657135,PL 624657136,624657139,IT 624657140,624657143,NL 624657144,624657147,FR @@ -11333,12 +11618,13 @@ 624657332,624657359,FR 624657360,624657363,GB 624657364,624657367,PL -624657368,624657375,IE +624657368,624657375,FR 624657376,624657379,PL 624657380,624657383,FR 624657384,624657387,DE 624657388,624657407,FR -624657408,624657415,PL +624657408,624657411,PL +624657412,624657415,FR 624657416,624657423,ES 624657424,624657427,BE 624657428,624657431,FR @@ -11350,9 +11636,7 @@ 624657480,624657491,FR 624657492,624657495,BE 624657496,624657503,GB -624657504,624657535,BE -624657536,624657543,ES -624657544,624657551,FR +624657504,624657551,FR 624657552,624657559,NL 624657560,624657567,FR 624657568,624657583,PL @@ -11391,7 +11675,7 @@ 624657808,624657815,DE 624657816,624657819,ES 624657820,624657823,GB -624657824,624657827,FR +624657824,624657827,ES 624657828,624657831,PL 624657832,624657839,ES 624657840,624657855,NL @@ -11400,7 +11684,8 @@ 624657872,624657875,FR 624657876,624657879,PL 624657880,624657883,CH -624657884,624657919,PL +624657884,624657887,PL +624657888,624657919,GB 624657920,624657927,PT 624657928,624657931,BE 624657932,624657935,FR @@ -11430,7 +11715,9 @@ 624658328,624658335,IT 624658336,624658367,FR 624658368,624658375,CZ -624658376,624658391,FR +624658376,624658383,FR +624658384,624658387,DE +624658388,624658391,FR 624658392,624658395,PL 624658396,624658399,DE 624658400,624658403,PL @@ -11449,7 +11736,9 @@ 624658540,624658543,PL 624658544,624658591,FR 624658592,624658623,DE -624658624,624658639,FR +624658624,624658631,FR +624658632,624658635,IE +624658636,624658639,FR 624658640,624658659,PL 624658660,624658663,FR 624658664,624658671,GB @@ -11466,13 +11755,13 @@ 624658800,624658803,DE 624658804,624658807,CZ 624658808,624658811,FR -624658812,624658831,PL +624658812,624658815,PL +624658816,624658831,FR 624658832,624658835,CH 624658836,624658839,NL 624658840,624658843,PL 624658844,624658847,GB -624658848,624658855,PL -624658856,624658863,FR +624658848,624658863,FR 624658864,624658879,ES 624658880,624658911,NL 624658912,624658927,FR @@ -11505,8 +11794,7 @@ 624659308,624659315,PL 624659316,624659319,GB 624659320,624659323,PL -624659324,624659327,FR -624659328,624659359,GB +624659324,624659359,FR 624659360,624659363,ES 624659364,624659367,BE 624659368,624659371,FR @@ -11514,19 +11802,18 @@ 624659376,624659383,NL 624659384,624659387,PL 624659388,624659391,IT -624659392,624659407,FR +624659392,624659395,IE +624659396,624659407,FR 624659408,624659415,PL 624659416,624659427,FR 624659428,624659431,CZ 624659432,624659439,FI -624659440,624659447,FR -624659448,624659455,ES +624659440,624659455,FR 624659456,624659487,PL 624659488,624659503,CH -624659504,624659551,FR -624659552,624659583,PL +624659504,624659583,FR 624659584,624659599,GB -624659600,624659607,DE +624659600,624659607,FR 624659608,624659611,CZ 624659612,624659631,FR 624659632,624659647,BE @@ -11559,7 +11846,7 @@ 624660112,624660127,ES 624660128,624660131,FR 624660132,624660135,PL -624660136,624660139,ES +624660136,624660139,FR 624660140,624660143,GB 624660144,624660151,ES 624660152,624660155,PL @@ -11580,14 +11867,14 @@ 624660564,624660567,FR 624660568,624660575,ES 624660576,624660591,PT -624660592,624660607,IE -624660608,624660671,CH +624660592,624660639,FR +624660640,624660671,CH 624660672,624660703,FR 624660704,624660719,IT 624660720,624660723,GB 624660724,624660727,PL 624660728,624660735,NL -624660736,624660751,IE +624660736,624660751,FR 624660752,624660755,PT 624660756,624660759,GB 624660760,624660767,FR @@ -11609,17 +11896,19 @@ 624660896,624660919,FR 624660920,624660923,PL 624660924,624660991,GB -624660992,624661119,PL -624661120,624661159,FR +624660992,624661023,NL +624661024,624661055,ES +624661056,624661159,FR 624661160,624661163,IT -624661164,624661175,FR +624661164,624661167,ES +624661168,624661175,FR 624661176,624661247,ES 624661248,624661255,PL 624661256,624661259,LT 624661260,624661279,FR 624661280,624661283,ES -624661284,624661295,FR -624661296,624661343,DE +624661284,624661311,FR +624661312,624661343,DE 624661344,624661503,FR 624661504,624661759,DE 624661760,624661767,FR @@ -11636,7 +11925,7 @@ 624661856,624661863,FR 624661864,624661871,ES 624661872,624661875,PL -624661876,624661879,CZ +624661876,624661879,IE 624661880,624661887,LT 624661888,624661915,FR 624661916,624661919,BE @@ -11703,7 +11992,7 @@ 624662800,624662807,FR 624662808,624662811,CH 624662812,624662815,IT -624662816,624662847,ES +624662816,624662847,PT 624662848,624662895,FR 624662896,624662911,ES 624662912,624663039,IE @@ -11723,9 +12012,7 @@ 624663680,624663683,PT 624663684,624663687,PL 624663688,624663695,GB -624663696,624663711,FR -624663712,624663743,IE -624663744,624663759,FR +624663696,624663759,FR 624663760,624663767,ES 624663768,624663783,FR 624663784,624663787,BE @@ -11734,7 +12021,7 @@ 624663808,624663839,FR 624663840,624663847,NL 624663848,624663855,GB -624663856,624663863,LT +624663856,624663863,FR 624663864,624663867,PT 624663868,624663871,PL 624663872,624663879,FR @@ -11755,7 +12042,7 @@ 624664008,624664011,IT 624664012,624664023,PL 624664024,624664027,GB -624664028,624664031,FR +624664028,624664031,DE 624664032,624664039,GB 624664040,624664047,BE 624664048,624664063,IE @@ -11772,7 +12059,8 @@ 624664352,624664367,ES 624664368,624664471,FR 624664472,624664475,PT -624664476,624664483,PL +624664476,624664479,FR +624664480,624664483,PL 624664484,624664487,FR 624664488,624664495,GB 624664496,624664511,ES @@ -11808,7 +12096,7 @@ 624664808,624664811,FR 624664812,624664815,PL 624664816,624664823,ES -624664824,624664831,NL +624664824,624664831,FR 624664832,624664863,IE 624664864,624664895,FR 624664896,624664959,NL @@ -11837,11 +12125,10 @@ 624665296,624665303,GB 624665304,624665359,FR 624665360,624665367,DE -624665368,624665375,FR -624665376,624665379,CZ +624665368,624665379,FR 624665380,624665383,PT 624665384,624665391,ES -624665392,624665407,FR +624665392,624665407,PT 624665408,624665471,IT 624665472,624665475,FR 624665476,624665479,DE @@ -11866,7 +12153,8 @@ 624665696,624665711,FR 624665712,624665727,GB 624665728,624665759,FR -624665760,624665767,IE +624665760,624665763,IT +624665764,624665767,CZ 624665768,624665771,IT 624665772,624665775,FR 624665776,624665779,PL @@ -11890,9 +12178,7 @@ 624665952,624665955,IE 624665956,624665959,FR 624665960,624665967,IE -624665968,624665975,FR -624665976,624665983,GB -624665984,624666035,FR +624665968,624666035,FR 624666036,624666039,DE 624666040,624666043,FR 624666044,624666047,GB @@ -11904,9 +12190,7 @@ 624666384,624666391,FR 624666392,624666399,GB 624666400,624666431,BE -624666432,624666495,GB -624666496,624666623,FR -624666624,624666655,CH +624666432,624666655,FR 624666656,624666663,GB 624666664,624666667,LT 624666668,624666671,FR @@ -11960,9 +12244,7 @@ 624667264,624667279,IE 624667280,624667395,FR 624667396,624667407,GB -624667408,624667439,IE -624667440,624667455,CH -624667456,624667471,FR +624667408,624667471,FR 624667472,624667475,PT 624667476,624667479,IT 624667480,624667483,DE @@ -11983,7 +12265,8 @@ 624667840,624667847,FR 624667848,624667851,LT 624667852,624667855,DE -624667856,624667879,IE +624667856,624667871,FR +624667872,624667879,IE 624667880,624667883,FR 624667884,624667887,IE 624667888,624667895,GB @@ -12008,11 +12291,10 @@ 624668072,624668095,PL 624668096,624668159,PT 624668160,624668271,FR -624668272,624668275,BE +624668272,624668275,PL 624668276,624668319,FR 624668320,624668335,GB -624668336,624668351,FR -624668352,624668367,GB +624668336,624668367,FR 624668368,624668383,PL 624668384,624668415,PT 624668416,624668447,FR @@ -12036,21 +12318,19 @@ 624668672,624668703,FR 624668704,624668707,PL 624668708,624668711,IE -624668712,624668715,FR -624668716,624668719,IE -624668720,624668767,FR +624668712,624668767,FR 624668768,624668791,IT 624668792,624668799,IE 624668800,624668815,IT -624668816,624668847,FR -624668848,624668863,IE -624668864,624668927,FR +624668816,624668927,FR 624668928,624668931,GB 624668932,624668935,FR 624668936,624668939,PL 624668940,624668959,FR 624668960,624668963,PL -624668964,624668995,FR +624668964,624668967,FR +624668968,624668971,NL +624668972,624668995,FR 624668996,624668999,NL 624669000,624669011,FR 624669012,624669015,GB @@ -12062,14 +12342,12 @@ 624669056,624669119,IT 624669120,624669127,FR 624669128,624669131,DE -624669132,624669135,IT -624669136,624669183,FR +624669132,624669183,FR 624669184,624669215,NL 624669216,624669231,FR 624669232,624669247,ES 624669248,624669251,PL -624669252,624669255,FR -624669256,624669263,IE +624669252,624669263,FR 624669264,624669271,IT 624669272,624669275,PL 624669276,624669279,FR @@ -12109,9 +12387,7 @@ 624669808,624669811,PL 624669812,624669815,FR 624669816,624669823,PL -624669824,624669831,NL -624669832,624669855,FR -624669856,624669871,GB +624669824,624669871,FR 624669872,624669879,NL 624669880,624669919,FR 624669920,624669935,NL @@ -12122,7 +12398,7 @@ 624669960,624669963,ES 624669964,624669967,GB 624669968,624669975,NL -624669976,624669983,ES +624669976,624669983,FR 624669984,624669987,PL 624669988,624669991,ES 624669992,624669999,PL @@ -12132,10 +12408,10 @@ 624670016,624670095,FR 624670096,624670103,PL 624670104,624670127,FR -624670128,624670143,PL -624670144,624670147,FR -624670148,624670151,PL -624670152,624670159,FR +624670128,624670131,PL +624670132,624670139,FR +624670140,624670143,PL +624670144,624670159,FR 624670160,624670167,PL 624670168,624670171,GB 624670172,624670175,ES @@ -12143,12 +12419,15 @@ 624670184,624670191,IT 624670192,624670195,FR 624670196,624670199,CH -624670200,624670271,FR +624670200,624670239,FR +624670240,624670255,NL +624670256,624670271,PT 624670272,624670303,PL 624670304,624670307,NL 624670308,624670315,CH 624670316,624670319,ES -624670320,624670343,NL +624670320,624670335,FR +624670336,624670343,NL 624670344,624670347,ES 624670348,624670351,NL 624670352,624670359,FR @@ -12168,7 +12447,7 @@ 624670480,624670487,GB 624670488,624670591,FR 624670592,624670599,GB -624670600,624670603,FR +624670600,624670603,ES 624670604,624670607,GB 624670608,624670615,FR 624670616,624670619,GB @@ -12243,7 +12522,8 @@ 624672084,624672127,PT 624672128,624672131,GB 624672132,624672135,PL -624672136,624672151,FR +624672136,624672143,FR +624672144,624672151,PT 624672152,624672159,PL 624672160,624672179,FR 624672180,624672183,IE @@ -12286,7 +12566,8 @@ 624673312,624673343,FR 624673344,624673375,BE 624673376,624673407,FR -624673408,624673431,PL +624673408,624673423,PL +624673424,624673431,FR 624673432,624673439,PT 624673440,624673447,BE 624673448,624673451,FR @@ -12313,7 +12594,8 @@ 624673888,624673891,PL 624673892,624673895,FR 624673896,624673903,GB -624673904,624673927,ES +624673904,624673919,ES +624673920,624673927,FR 624673928,624673931,DE 624673932,624673935,FR 624673936,624673939,NL @@ -12336,7 +12618,8 @@ 624674048,624674303,ES 624674304,624674307,GB 624674308,624674311,PL -624674312,624674351,FR +624674312,624674315,ES +624674316,624674351,FR 624674352,624674367,FI 624674368,624674383,DE 624674384,624674395,IT @@ -12420,7 +12703,7 @@ 624675776,624675787,PL 624675788,624675791,FR 624675792,624675799,GB -624675800,624675803,CZ +624675800,624675803,BE 624675804,624675807,ES 624675808,624675839,GB 624675840,624675871,FR @@ -12498,10 +12781,10 @@ 624676912,624676919,BE 624676920,624676923,FR 624676924,624676927,ES -624676928,624676935,CH +624676928,624676935,FR 624676936,624676939,PL -624676940,624676943,PT -624676944,624676947,PL +624676940,624676943,ES +624676944,624676947,FR 624676948,624676951,GB 624676952,624676959,NL 624676960,624676991,FR @@ -12509,7 +12792,7 @@ 624677120,624677255,FR 624677256,624677259,ES 624677260,624677263,NL -624677264,624677271,CZ +624677264,624677271,FR 624677272,624677279,PT 624677280,624677283,PL 624677284,624677287,ES @@ -12523,11 +12806,10 @@ 624677380,624677383,ES 624677384,624677391,DE 624677392,624677395,PT -624677396,624677399,FR -624677400,624677403,FI +624677396,624677403,FR 624677404,624677407,DE 624677408,624677439,GB -624677440,624677443,ES +624677440,624677443,IE 624677444,624677447,PL 624677448,624677459,FR 624677460,624677463,ES @@ -12576,10 +12858,10 @@ 624678256,624678259,PL 624678260,624678263,FR 624678264,624678279,ES -624678280,624678283,LT +624678280,624678283,PL 624678284,624678287,FR -624678288,624678311,GB -624678312,624678319,FR +624678288,624678303,PT +624678304,624678319,FR 624678320,624678335,ES 624678336,624678351,FR 624678352,624678355,PT @@ -12670,13 +12952,14 @@ 624679772,624679775,PL 624679776,624679779,FR 624679780,624679783,NL -624679784,624679815,FR +624679784,624679791,FR +624679792,624679795,PT +624679796,624679815,FR 624679816,624679819,IT 624679820,624679823,PL 624679824,624679827,PT 624679828,624679831,DE -624679832,624679839,GB -624679840,624679843,FR +624679832,624679843,FR 624679844,624679847,PL 624679848,624679851,PT 624679852,624679855,IE @@ -12684,14 +12967,14 @@ 624679860,624679863,FR 624679864,624679867,ES 624679868,624679871,FR -624679872,624679903,GB +624679872,624679903,CH 624679904,624679907,IT 624679908,624679911,PL 624679912,624679915,ES 624679916,624679919,FR 624679920,624679923,BE 624679924,624679927,FR -624679928,624679935,IE +624679928,624679935,PT 624679936,624680463,FR 624680464,624680467,PL 624680468,624680475,FR @@ -12727,8 +13010,8 @@ 624680992,624680995,FI 624680996,624681023,FR 624681024,624681055,ES -624681056,624681071,FR -624681072,624681079,PL +624681056,624681063,PT +624681064,624681079,PL 624681080,624681083,DE 624681084,624681087,ES 624681088,624681095,GB @@ -12768,28 +13051,25 @@ 624681772,624681775,DE 624681776,624681791,FR 624681792,624681795,PL -624681796,624681803,FR -624681804,624681823,PL +624681796,624681807,FR +624681808,624681823,PL 624681824,624681855,CZ 624681856,624681919,FR 624681920,624681923,DE 624681924,624681927,IE 624681928,624681931,PL -624681932,624681967,FR -624681968,624681971,PL +624681932,624681971,FR 624681972,624681975,BE 624681976,624681979,IE 624681980,624681983,ES 624681984,624681999,PL 624682000,624682003,ES -624682004,624682007,PL -624682008,624682047,FR +624682004,624682047,FR 624682048,624682059,GB 624682060,624682063,IE 624682064,624682071,PT -624682072,624682075,GB -624682076,624682079,PL -624682080,624682083,FR +624682072,624682075,PL +624682076,624682083,FR 624682084,624682087,NL 624682088,624682103,FR 624682104,624682111,IE @@ -12822,8 +13102,7 @@ 624682640,624682655,BE 624682656,624682687,ES 624682688,624682751,FR -624682752,624682767,DE -624682768,624682783,FR +624682752,624682783,DE 624682784,624682787,ES 624682788,624682791,IT 624682792,624682795,DE @@ -12858,7 +13137,8 @@ 624683096,624683099,NL 624683100,624683103,FR 624683104,624683119,ES -624683120,624683243,FR +624683120,624683239,FR +624683240,624683243,IE 624683244,624683251,PL 624683252,624683295,FR 624683296,624683311,IT @@ -12870,11 +13150,9 @@ 624683352,624683359,DE 624683360,624683371,FR 624683372,624683375,ES -624683376,624683379,FR +624683376,624683379,PT 624683380,624683383,IT -624683384,624683387,FR -624683388,624683391,GB -624683392,624683491,FR +624683384,624683491,FR 624683492,624683495,NL 624683496,624683519,FR 624683520,624683583,PT @@ -12918,7 +13196,7 @@ 624684008,624684015,FR 624684016,624684019,DE 624684020,624684023,CH -624684024,624684027,GB +624684024,624684027,FR 624684028,624684031,CH 624684032,624684039,FR 624684040,624684043,DE @@ -12946,7 +13224,7 @@ 624684188,624684191,PL 624684192,624684195,CH 624684196,624684199,PL -624684200,624684203,GB +624684200,624684203,FR 624684204,624684207,PL 624684208,624684211,ES 624684212,624684219,FR @@ -12984,8 +13262,7 @@ 624684688,624684703,IE 624684704,624684711,GB 624684712,624684719,BE -624684720,624684767,FR -624684768,624684775,IE +624684720,624684775,FR 624684776,624684779,IT 624684780,624684799,FR 624684800,624684803,DE @@ -13005,7 +13282,7 @@ 624684892,624684895,NL 624684896,624684899,FR 624684900,624684903,BE -624684904,624684907,GB +624684904,624684907,FR 624684908,624684911,ES 624684912,624684915,PL 624684916,624684919,FR @@ -13081,14 +13358,15 @@ 624685936,624685943,IT 624685944,624685951,FR 624685952,624685967,FI -624685968,624685987,IE +624685968,624685983,FR +624685984,624685987,IE 624685988,624685991,FR 624685992,624685999,DE 624686000,624686003,LT 624686004,624686007,GB 624686008,624686015,ES -624686016,624686399,FR -624686400,624686419,DE +624686016,624686415,FR +624686416,624686419,DE 624686420,624686439,FR 624686440,624686443,IT 624686444,624686447,PT @@ -13106,8 +13384,7 @@ 624686708,624686711,IE 624686712,624686715,FR 624686716,624686719,ES -624686720,624686751,IE -624686752,624686815,FR +624686720,624686815,FR 624686816,624686847,GB 624686848,624686855,FR 624686856,624686859,PL @@ -13192,7 +13469,8 @@ 624688648,624688655,PT 624688656,624688663,NL 624688664,624688671,ES -624688672,624688691,PL +624688672,624688687,PL +624688688,624688691,FR 624688692,624688695,ES 624688696,624688699,PL 624688700,624688703,FI @@ -13209,16 +13487,14 @@ 624688796,624688799,DE 624688800,624688815,NL 624688816,624688831,PL -624688832,624688863,FR -624688864,624688895,NL -624688896,624688927,FR +624688832,624688927,FR 624688928,624688935,PL 624688936,624688943,CH 624688944,624688951,FR 624688952,624688955,LT 624688956,624688959,PL 624688960,624688975,FR -624688976,624688991,DE +624688976,624688991,PT 624688992,624688999,FR 624689000,624689007,PT 624689008,624689015,IE @@ -13300,8 +13576,8 @@ 625516544,625518591,BE 625518592,625518631,US 625518632,625518647,NL -625518648,625518847,US -625518848,625519615,NL +625518648,625519103,US +625519104,625519615,NL 625519616,625519999,US 625520000,625520071,NL 625520072,625520079,US @@ -13390,21 +13666,17 @@ 627834880,627965951,PL 627965952,628006911,RU 628006912,628015103,GE -628015104,628015791,FR -628015792,628015807,GB +628015104,628015799,FR +628015800,628015807,GB 628015808,628015831,FR 628015832,628015871,GB 628015872,628016087,FR 628016088,628016127,GB 628016128,628016231,FR 628016232,628016239,GB -628016240,628016297,FR -628016298,628016298,ES -628016299,628016319,FR +628016240,628016319,FR 628016320,628016351,GB -628016352,628016479,FR -628016480,628016511,GB -628016512,628016603,FR +628016352,628016603,FR 628016604,628016639,GB 628016640,628016863,FR 628016864,628016895,GB @@ -13575,11 +13847,7 @@ 630491136,630493183,DE 630493184,630495231,NO 630495232,630497279,DE -630497280,630498054,NL -630498055,630498055,RU -630498056,630499076,NL -630499077,630499077,RU -630499078,630499327,NL +630497280,630499327,NL 630499328,630501375,LV 630501376,630503423,BE 630503424,630505831,NL @@ -13614,7 +13882,9 @@ 630806528,630808575,ES 630808576,630810175,NL 630810176,630816767,CH -630816768,630833151,RO +630816768,630828543,RO +630828544,630829055,FR +630829056,630833151,RO 630833152,630849535,NL 630849536,630980607,TR 630980608,631001087,RO @@ -13648,7 +13918,8 @@ 631242752,632291327,FR 632291328,632815615,IT 632815616,632946687,BE -632946688,633077759,AT +632946688,633012223,AT +633012224,633077759,FR 633077760,633094143,RU 633094144,633098239,NL 633098240,633100287,HU @@ -13769,9 +14040,7 @@ 635199648,635199655,IT 635199656,635199663,GB 635199664,635199671,IT -635199672,635199719,GB -635199720,635199727,IT -635199728,635199735,GB +635199672,635199735,GB 635199736,635199743,IT 635199744,635199775,GB 635199776,635199783,IT @@ -13797,7 +14066,9 @@ 635200416,635200423,IT 635200424,635200431,GB 635200432,635200439,IT -635200440,635200631,GB +635200440,635200487,GB +635200488,635200495,IT +635200496,635200631,GB 635200632,635200639,IT 635200640,635200959,GB 635200960,635200975,IT @@ -13807,13 +14078,15 @@ 635201088,635201095,IT 635201096,635201159,GB 635201160,635201167,IT -635201168,635201199,GB -635201200,635201207,IT -635201208,635201255,GB +635201168,635201255,GB 635201256,635201263,IT 635201264,635201383,GB 635201384,635201391,IT -635201392,635203583,GB +635201392,635201415,GB +635201416,635201423,IT +635201424,635201463,GB +635201464,635201471,IT +635201472,635203583,GB 635203584,635207679,JO 635207680,635211775,HU 635211776,635213823,NL @@ -14365,7 +14638,9 @@ 635723776,635725823,ES 635725824,635727871,US 635727872,635729919,RU -635729920,635732479,DE +635729920,635732235,DE +635732236,635732239,AT +635732240,635732479,DE 635732480,635732991,US 635732992,635748351,DE 635748352,635764735,IE @@ -14846,7 +15121,7 @@ 693069824,693071871,ZA 693071872,693072895,ZW 693072896,693073919,NG -693073920,693074943,SD +693073920,693074943,SS 693074944,693075967,CV 693075968,693076991,CM 693076992,693078015,ZW @@ -15027,11 +15302,15 @@ 700593152,700594175,NG 700594176,700595967,A2 700595968,700596223,CD -700596224,700645375,A2 +700596224,700604927,A2 +700604928,700605183,NG +700605184,700645375,A2 700645376,700710911,ZA 700710912,700776447,EG 700776448,700841983,RW -700841984,700851199,MU +700841984,700846079,MU +700846080,700850175,NA +700850176,700851199,MU 700851200,700852223,NA 700852224,700866559,MU 700866560,700866815,NG @@ -15088,11 +15367,13 @@ 701423616,701431807,NG 701431808,701439999,CI 701440000,701448191,MG -701448192,701461247,KE +701448192,701458831,KE +701458832,701458847,CG +701458848,701461247,KE 701461248,701461503,CD 701461504,701462783,KE -701462784,701463039,CG -701463040,701463394,KE +701462784,701463295,CG +701463296,701463394,KE 701463395,701463395,NG 701463396,701463528,KE 701463529,701463529,NG @@ -15102,7 +15383,10 @@ 701464576,701472767,MU 701472768,701480959,TG 701480960,701489151,CI -701489152,701493247,ZA +701489152,701490175,ZA +701490176,701491199,AO +701491200,701492223,MU +701492224,701493247,ZA 701493248,701495295,TZ 701495296,701513727,ZA 701513728,701530111,LY @@ -15390,7 +15674,10 @@ 772276224,772284415,NL 772284416,772284927,RU 772284928,772285183,UA -772285184,772296703,RU +772285184,772285439,UZ +772285440,772286719,RU +772286720,772286975,LB +772286976,772296703,RU 772296704,772300799,UA 772300800,772341759,RU 772341760,772407295,NO @@ -15504,7 +15791,9 @@ 772982272,772982279,US 772982280,772982783,FR 772982784,772984831,RU -772984832,772986879,FR +772984832,772985567,FR +772985568,772985598,MA +772985599,772986879,FR 772986880,772988927,GB 772988928,772990975,FR 772990976,772993023,IT @@ -15605,7 +15894,9 @@ 773160960,773165055,FR 773165056,773166463,NL 773166464,773166591,PL -773166592,773168799,US +773166592,773167199,US +773167200,773167207,NL +773167208,773168799,US 773168800,773168815,NL 773168816,773169151,US 773169152,773171343,NL @@ -15689,8 +15980,7 @@ 773638144,773640191,CH 773640192,773640513,ES 773640514,773640515,FR -773640516,773640516,NL -773640517,773642239,ES +773640516,773642239,ES 773642240,773644287,HU 773644288,773646335,RU 773646336,773648383,TR @@ -15817,7 +16107,9 @@ 773818368,773820415,HR 773820416,773822463,TR 773822464,773824511,RU -773824512,773826559,FR +773824512,773825263,FR +773825264,773825266,TD +773825267,773826559,FR 773826560,773828607,GB 773828608,773830655,HU 773830656,773832703,NO @@ -15865,8 +16157,7 @@ 774000880,774000895,US 774000896,774001151,NL 774001152,774001407,ES -774001408,774001471,US -774001472,774001487,ES +774001408,774001487,US 774001488,774001503,NL 774001504,774001535,ES 774001536,774002687,NL @@ -16201,15 +16492,20 @@ 774162939,774162942,UM 774162943,774162943,VA 774162944,774162964,CH -774162965,774162969,LU +774162965,774162966,LU +774162967,774162967,LI +774162968,774162969,LU 774162970,774162974,BY 774162975,774162979,MY 774162980,774162984,IN 774162985,774162989,HR 774162990,774162999,RU -774163000,774163004,PK -774163005,774163009,NZ -774163010,774163014,VE +774163000,774163000,PK +774163001,774163004,BO +774163005,774163005,NZ +774163006,774163009,BO +774163010,774163010,VE +774163011,774163014,BO 774163015,774163074,CH 774163075,774163084,GW 774163085,774163094,LS @@ -16459,8 +16755,7 @@ 778666128,778666135,FR 778666136,778666143,PL 778666144,778666151,FR -778666152,778666155,GB -778666156,778666159,ES +778666152,778666159,ES 778666160,778666191,FR 778666192,778666239,PL 778666240,778666243,PT @@ -16480,8 +16775,7 @@ 778666392,778666399,PL 778666400,778666479,FR 778666480,778666495,DE -778666496,778666751,IE -778666752,778666783,CZ +778666496,778666783,IE 778666784,778666847,FR 778666848,778666863,PT 778666864,778666867,GB @@ -16497,8 +16791,7 @@ 778667128,778667131,PL 778667132,778667135,BE 778667136,778667139,PL -778667140,778667143,GB -778667144,778667151,FR +778667140,778667151,FR 778667152,778667155,PL 778667156,778667159,ES 778667160,778667163,IT @@ -16515,7 +16808,8 @@ 778667284,778667287,PL 778667288,778667291,IT 778667292,778667295,CH -778667296,778667331,GB +778667296,778667327,FR +778667328,778667331,GB 778667332,778667335,FR 778667336,778667343,ES 778667344,778667347,FR @@ -16541,15 +16835,12 @@ 778667856,778667859,FR 778667860,778667863,PL 778667864,778667871,GB -778667872,778667875,ES -778667876,778667879,LT -778667880,778667887,FI -778667888,778667895,IT -778667896,778667903,IE -778667904,778667911,GB -778667912,778667915,PL -778667916,778667919,PT -778667920,778667927,NL +778667872,778667879,FR +778667880,778667887,PT +778667888,778667903,PL +778667904,778667911,PT +778667912,778667919,BE +778667920,778667927,FR 778667928,778667931,GB 778667932,778667935,CZ 778667936,778667943,FR @@ -16562,7 +16853,7 @@ 778668024,778668027,PT 778668028,778668031,NL 778668032,778668319,FR -778668320,778668351,GB +778668320,778668351,DE 778668352,778668359,FR 778668360,778668367,PL 778668368,778668371,DE @@ -16602,7 +16893,8 @@ 778668736,778668799,IT 778668800,778668863,FR 778668864,778668895,DE -778668896,778669055,FR +778668896,778668927,ES +778668928,778669055,FR 778669056,778669087,ES 778669088,778669103,FR 778669104,778669107,CZ @@ -16638,9 +16930,8 @@ 778669592,778669599,BE 778669600,778669615,FR 778669616,778669623,GB -778669624,778669631,PL -778669632,778669663,FR -778669664,778669695,NL +778669624,778669631,IT +778669632,778669695,FR 778669696,778669727,PT 778669728,778669759,NL 778669760,778669767,DE @@ -16687,8 +16978,8 @@ 778670292,778670295,FR 778670296,778670299,PL 778670300,778670303,DE -778670304,778670335,FR -778670336,778670343,DE +778670304,778670339,FR +778670340,778670343,DE 778670344,778670347,FR 778670348,778670351,PL 778670352,778670355,DE @@ -16701,13 +16992,11 @@ 778670400,778670407,PL 778670408,778670411,DE 778670412,778670415,NL -778670416,778670439,FR -778670440,778670447,PL -778670448,778670455,CH -778670456,778670495,CZ -778670496,778670503,FR -778670504,778670511,ES -778670512,778670519,NL +778670416,778670447,FR +778670448,778670463,GB +778670464,778670495,CZ +778670496,778670511,IE +778670512,778670519,GB 778670520,778670523,FR 778670524,778670527,PT 778670528,778670559,FR @@ -16717,7 +17006,7 @@ 778670576,778670591,IT 778670592,778671103,ES 778671104,778671127,GB -778671128,778671135,PT +778671128,778671135,FR 778671136,778671167,BE 778671168,778671171,DE 778671172,778671175,FR @@ -16726,9 +17015,7 @@ 778671204,778671207,FI 778671208,778671211,FR 778671212,778671215,PL -778671216,778671231,FR -778671232,778671239,GB -778671240,778671247,FR +778671216,778671247,FR 778671248,778671263,PL 778671264,778671279,GB 778671280,778671311,FR @@ -16739,26 +17026,26 @@ 778671344,778671631,FR 778671632,778671647,PL 778671648,778671807,FR -778671808,778671839,ES +778671808,778671839,IE 778671840,778671871,FR 778671872,778671875,DE 778671876,778671879,ES 778671880,778671883,NL 778671884,778671887,FR -778671888,778671903,GB +778671888,778671903,BE 778671904,778671907,NL 778671908,778671915,FR 778671916,778671919,GB -778671920,778671967,FR +778671920,778671935,FR +778671936,778671967,PT 778671968,778671999,NL 778672000,778672055,FR -778672056,778672063,PL +778672056,778672063,NL 778672064,778672067,GB 778672068,778672071,BE 778672072,778672079,GB 778672080,778672095,BE -778672096,778672103,CH -778672104,778672111,NL +778672096,778672111,IE 778672112,778672119,GB 778672120,778672123,ES 778672124,778672127,CH @@ -16770,8 +17057,7 @@ 778672480,778672511,ES 778672512,778672527,PL 778672528,778672543,FR -778672544,778672551,ES -778672552,778672559,CH +778672544,778672559,DE 778672560,778672563,GB 778672564,778672567,IT 778672568,778672639,FR @@ -16818,15 +17104,15 @@ 778673360,778673375,GB 778673376,778673387,FR 778673388,778673391,DE -778673392,778673407,PT +778673392,778673407,FR 778673408,778673663,PL 778673664,778673711,FR 778673712,778673719,PT 778673720,778673723,IT 778673724,778673727,PL 778673728,778673807,FR -778673808,778673839,ES -778673840,778673843,FR +778673808,778673823,ES +778673824,778673843,FR 778673844,778673847,GB 778673848,778673851,DE 778673852,778673879,FR @@ -16853,7 +17139,7 @@ 778674464,778674471,CH 778674472,778674475,BE 778674476,778674479,CH -778674480,778674487,FR +778674480,778674487,DE 778674488,778674491,CZ 778674492,778674495,PL 778674496,778674499,CZ @@ -16865,7 +17151,7 @@ 778674536,778674539,PT 778674540,778674543,PL 778674544,778674559,DE -778674560,778674575,GB +778674560,778674575,FR 778674576,778674583,NL 778674584,778674587,DE 778674588,778674623,FR @@ -16875,7 +17161,8 @@ 778674688,778674719,GB 778674720,778674783,FR 778674784,778674799,PL -778674800,778674847,FR +778674800,778674815,IE +778674816,778674847,FR 778674848,778674863,IT 778674864,778674879,FI 778674880,778674911,FR @@ -16954,16 +17241,14 @@ 778675780,778675783,PL 778675784,778675791,ES 778675792,778675795,NL -778675796,778675799,DE -778675800,778675803,GB +778675796,778675799,FR +778675800,778675803,DE 778675804,778675807,CZ 778675808,778675811,PL -778675812,778675815,GB -778675816,778675819,FR +778675812,778675819,FR 778675820,778675823,GB 778675824,778675827,ES -778675828,778675831,DE -778675832,778675839,FR +778675828,778675839,FR 778675840,778675843,FI 778675844,778675847,FR 778675848,778675851,GB @@ -16974,14 +17259,14 @@ 778675872,778675887,FR 778675888,778675891,DE 778675892,778675895,LT -778675896,778675903,PL +778675896,778675903,ES 778675904,778675907,CH 778675908,778675911,CZ 778675912,778675915,NL 778675916,778675919,DE 778675920,778675923,FR 778675924,778675927,IT -778675928,778675935,FR +778675928,778675935,GB 778675936,778675947,ES 778675948,778676095,FR 778676096,778676099,DE @@ -17048,7 +17333,7 @@ 778676780,778676799,FR 778676800,778676803,GB 778676804,778676807,IT -778676808,778676815,GB +778676808,778676815,FR 778676816,778676823,LT 778676824,778676827,GB 778676828,778676831,NL @@ -17081,7 +17366,7 @@ 778677128,778677131,FR 778677132,778677135,BE 778677136,778677151,FR -778677152,778677167,DE +778677152,778677167,ES 778677168,778677183,FR 778677184,778677215,ES 778677216,778677247,PL @@ -17110,7 +17395,7 @@ 778677484,778677487,FR 778677488,778677503,PL 778677504,778677507,IE -778677508,778677511,DE +778677508,778677511,FR 778677512,778677515,IT 778677516,778677519,GB 778677520,778677523,PL @@ -17147,17 +17432,15 @@ 778677940,778677943,BE 778677944,778677947,IT 778677948,778677951,DE -778677952,778677967,FR -778677968,778677983,GB -778677984,778677999,FR +778677952,778677999,FR 778678000,778678003,BE 778678004,778678007,PL 778678008,778678015,FR 778678016,778678019,PL 778678020,778678023,DE 778678024,778678027,ES -778678028,778678031,FR -778678032,778678039,PL +778678028,778678035,FR +778678036,778678039,PL 778678040,778678043,GB 778678044,778678047,PL 778678048,778678119,FR @@ -17232,7 +17515,8 @@ 778679552,778679615,FR 778679616,778679679,ES 778679680,778679695,PT -778679696,778679807,FR +778679696,778679711,NL +778679712,778679807,FR 778679808,778679823,IT 778679824,778679839,FR 778679840,778679843,CH @@ -17270,8 +17554,7 @@ 778680288,778680471,FR 778680472,778680475,ES 778680476,778680479,IE -778680480,778680559,FR -778680560,778680575,ES +778680480,778680575,FR 778680576,778680639,NL 778680640,778680643,FR 778680644,778680647,PT @@ -17284,8 +17567,7 @@ 778680896,778680959,CH 778680960,778681023,DE 778681024,778681087,FI -778681088,778681343,FR -778681344,778681359,GB +778681088,778681359,FR 778681360,778681367,ES 778681368,778681371,FR 778681372,778681375,LT @@ -17307,7 +17589,8 @@ 778681472,778681479,FR 778681480,778681483,IE 778681484,778681487,PL -778681488,778681495,IE +778681488,778681491,FR +778681492,778681495,IE 778681496,778681503,FR 778681504,778681507,DE 778681508,778681511,PL @@ -17328,7 +17611,8 @@ 778681616,778681619,ES 778681620,778681623,DE 778681624,778681631,ES -778681632,778681643,PL +778681632,778681639,PL +778681640,778681643,FR 778681644,778681647,DE 778681648,778681655,FR 778681656,778681667,DE @@ -17348,8 +17632,7 @@ 778681768,778681771,PL 778681772,778681775,IT 778681776,778681779,GB -778681780,778681787,FR -778681788,778681791,NL +778681780,778681791,FR 778681792,778681823,IE 778681824,778681839,FR 778681840,778681843,IT @@ -17382,7 +17665,7 @@ 778682208,778682239,FR 778682240,778682243,NL 778682244,778682247,LT -778682248,778682251,GB +778682248,778682251,FR 778682252,778682255,CZ 778682256,778682295,FR 778682296,778682299,PL @@ -17399,8 +17682,9 @@ 778690640,778690655,IT 778690656,778690687,FR 778690688,778690703,IE -778690704,778690723,FR -778690724,778690727,GB +778690704,778690711,FR +778690712,778690719,NL +778690720,778690727,FR 778690728,778690735,PL 778690736,778690751,PT 778690752,778690787,DE @@ -17420,8 +17704,7 @@ 778690992,778690999,IT 778691000,778691003,PL 778691004,778691007,GB -778691008,778691023,FR -778691024,778691039,IE +778691008,778691039,FR 778691040,778691043,PL 778691044,778691047,ES 778691048,778691051,PL @@ -17448,8 +17731,7 @@ 778691520,778691583,GB 778691584,778691599,IE 778691600,778691615,FR -778691616,778691619,DE -778691620,778691623,IE +778691616,778691623,DE 778691624,778691627,ES 778691628,778691631,PL 778691632,778691711,FR @@ -17489,7 +17771,7 @@ 778692116,778692119,GB 778692120,778692191,FR 778692192,778692195,ES -778692196,778692199,CZ +778692196,778692199,GB 778692200,778692207,ES 778692208,778692287,FR 778692288,778692351,IE @@ -17498,12 +17780,9 @@ 778692388,778692391,GB 778692392,778692479,FR 778692480,778692483,PL -778692484,778692487,GB -778692488,778692495,FR +778692484,778692495,FR 778692496,778692499,ES -778692500,778692503,FR -778692504,778692511,ES -778692512,778692515,FR +778692500,778692515,FR 778692516,778692519,GB 778692520,778692539,FR 778692540,778692543,GB @@ -17518,7 +17797,8 @@ 778692624,778692639,NL 778692640,778692647,FR 778692648,778692651,DE -778692652,778692671,FR +778692652,778692655,ES +778692656,778692671,FR 778692672,778692679,DE 778692680,778692683,ES 778692684,778692687,CZ @@ -17553,7 +17833,8 @@ 778692892,778692895,GB 778692896,778692911,FR 778692912,778692927,NL -778692928,778692943,PL +778692928,778692935,FR +778692936,778692943,PL 778692944,778692967,FR 778692968,778692975,GB 778692976,778692983,DE @@ -17602,7 +17883,8 @@ 778693428,778693431,CZ 778693432,778693439,FR 778693440,778693455,GB -778693456,778693511,FR +778693456,778693459,BE +778693460,778693511,FR 778693512,778693515,DE 778693516,778693567,FR 778693568,778693599,BE @@ -17616,7 +17898,7 @@ 778693632,778693663,FR 778693664,778693679,NL 778693680,778693695,DE -778693696,778693759,IE +778693696,778693759,FR 778693760,778693763,NL 778693764,778693767,ES 778693768,778693771,PL @@ -17631,7 +17913,7 @@ 778693892,778693895,FR 778693896,778693899,ES 778693900,778693903,NL -778693904,778693919,IE +778693904,778693919,FR 778693920,778693927,CH 778693928,778693931,PL 778693932,778693935,DE @@ -17651,7 +17933,9 @@ 778694192,778694195,BE 778694196,778694199,NL 778694200,778694203,IT -778694204,778694291,FR +778694204,778694207,FR +778694208,778694239,IE +778694240,778694291,FR 778694292,778694295,DE 778694296,778694299,FR 778694300,778694303,PL @@ -17668,8 +17952,8 @@ 778694464,778694479,FR 778694480,778694511,IT 778694512,778694515,PL -778694516,778694527,ES -778694528,778694543,FR +778694516,778694519,ES +778694520,778694543,FR 778694544,778694555,DE 778694556,778694559,NL 778694560,778694563,PL @@ -17690,17 +17974,14 @@ 778694828,778694831,PL 778694832,778694839,IT 778694840,778694847,PL -778694848,778694911,FR -778694912,778694943,LT -778694944,778694959,FR +778694848,778694959,FR 778694960,778694975,ES 778694976,778695007,FR 778695008,778695039,ES 778695040,778695071,IT 778695072,778695075,BE 778695076,778695079,PL -778695080,778695083,NL -778695084,778695087,FR +778695080,778695087,FR 778695088,778695103,PT 778695104,778695167,PL 778695168,778695183,FR @@ -17710,8 +17991,7 @@ 778695204,778695207,ES 778695208,778695215,FR 778695216,778695231,DE -778695232,778695295,NL -778695296,778695299,FR +778695232,778695299,FR 778695300,778695303,IT 778695304,778695307,PL 778695308,778695319,FR @@ -17731,8 +18011,9 @@ 778695440,778695447,FI 778695448,778695455,NL 778695456,778695471,FR -778695472,778695479,PL -778695480,778695487,FR +778695472,778695475,PL +778695476,778695479,ES +778695480,778695487,PT 778695488,778695503,BE 778695504,778695519,FR 778695520,778695535,GB @@ -17743,15 +18024,15 @@ 778695564,778695575,PL 778695576,778695579,ES 778695580,778695583,FI -778695584,778695615,BE +778695584,778695615,FR 778695616,778695623,DE 778695624,778695627,CZ 778695628,778695631,FR 778695632,778695647,GB 778695648,778695663,FR 778695664,778695679,NL -778695680,778695711,PT -778695712,778695751,FR +778695680,778695743,PT +778695744,778695751,FR 778695752,778695759,PL 778695760,778695767,GB 778695768,778695775,ES @@ -17861,8 +18142,7 @@ 778697424,778697431,FR 778697432,778697435,PL 778697436,778697439,GB -778697440,778697455,FR -778697456,778697471,LT +778697440,778697471,FR 778697472,778697479,IE 778697480,778697483,LT 778697484,778697499,FR @@ -17878,11 +18158,13 @@ 778697684,778697695,FR 778697696,778697727,NL 778697728,778697791,FI -778697792,778697807,ES +778697792,778697807,FR 778697808,778697815,PL 778697816,778697819,FR 778697820,778697823,IT -778697824,778697927,FR +778697824,778697847,FR +778697848,778697851,DE +778697852,778697927,FR 778697928,778697935,DE 778697936,778697943,PL 778697944,778697947,CH @@ -17967,7 +18249,7 @@ 780468224,780533759,UA 780533760,780599295,PL 780599296,780664831,CZ -780664832,780665087,NL +780664832,780665087,HK 780665088,780665343,DE 780665344,780665599,FR 780665600,780665855,GB @@ -18318,19 +18600,17 @@ 782446728,782446775,BA 782446776,782446783,SI 782446784,782446815,BA -782446816,782446847,SI -782446848,782447615,BA +782446816,782446831,SI +782446832,782447615,BA 782447616,782449151,SI 782449152,782449407,HR -782449408,782449519,SI -782449520,782449535,RS +782449408,782449503,SI +782449504,782449535,RS 782449536,782449551,SI -782449552,782449567,RS -782449568,782449583,SI -782449584,782449599,RS -782449600,782449615,SI -782449616,782449623,RS -782449624,782449639,SI +782449552,782449559,RS +782449560,782449591,SI +782449592,782449599,RS +782449600,782449639,SI 782449640,782449647,RS 782449648,782449663,SI 782449664,782449671,BA @@ -18590,7 +18870,9 @@ 786595840,786597887,FR 786597888,786599935,EE 786599936,786601983,ES -786601984,786604031,SE +786601984,786603007,SE +786603008,786603519,NL +786603520,786604031,SE 786604032,786606079,RU 786606080,786608127,GB 786608128,786610175,IT @@ -18658,8 +18940,8 @@ 786788352,786792447,CZ 786792448,786796543,RU 786796544,786800639,PL -786800640,786803711,US -786803712,786804223,UA +786800640,786803967,US +786803968,786804223,UA 786804224,786804735,US 786804736,786808831,RU 786808832,786812927,BG @@ -18688,7 +18970,9 @@ 786919696,786919703,IT 786919704,786919879,GB 786919880,786919887,IT -786919888,786920167,GB +786919888,786920143,GB +786920144,786920151,IT +786920152,786920167,GB 786920168,786920175,IT 786920176,786920191,GB 786920192,786920199,IT @@ -18696,7 +18980,9 @@ 786920344,786920351,IT 786920352,786920495,GB 786920496,786920503,IT -786920504,786920703,GB +786920504,786920583,GB +786920584,786920591,IT +786920592,786920703,GB 786920704,786920711,IT 786920712,786920839,GB 786920840,786920847,IT @@ -18919,14 +19205,59 @@ 787863552,787865599,DE 787865600,787869695,FR 787869696,787873791,GB -787873792,787890559,SE +787873792,787877887,SE +787877888,787878000,SE +787878001,787878014,SE +787878015,787878256,SE +787878257,787878270,SE +787878271,787878399,SE +787878400,787878526,SE +787878527,787878768,SE +787878769,787878782,SE +787878783,787879024,SE +787879025,787879038,SE +787879039,787879183,SE +787879184,787879191,SE +787879192,787879280,SE +787879281,787879294,SE +787879295,787879536,SE +787879537,787879550,SE +787879551,787879792,SE +787879793,787879806,SE +787879807,787879935,SE +787879936,787881727,SE +787881728,787881983,SE +787881984,787890559,SE 787890560,787890687,GB -787890688,787892223,SE +787890688,787891070,SE +787891071,787891199,SE +787891200,787891711,SE +787891712,787891824,SE +787891825,787891838,SE +787891839,787891967,SE +787891968,787892223,SE 787892224,787894271,SE 787894272,787896319,US -787896320,787896575,SE -787896576,787896703,SE -787896704,787906559,SE +787896320,787896412,SE +787896413,787896413,SE +787896414,787896423,SE +787896424,787896427,SE +787896428,787896432,SE +787896433,787896446,SE +787896447,787896495,SE +787896496,787896511,SE +787896512,787896703,SE +787896704,787896958,SE +787896959,787896959,SE +787896960,787897023,SE +787897024,787897071,SE +787897072,787897072,SE +787897073,787897087,SE +787897088,787897343,SE +787897344,787897456,SE +787897457,787897470,SE +787897471,787897599,SE +787897600,787906559,SE 787906560,787939327,GR 787939328,787972095,GB 787972096,788004863,UA @@ -19321,17 +19652,7 @@ 840278016,840282111,CA 840282112,840294399,US 840294400,840298495,CA -840298496,840835908,US -840835909,840835909,CA -840835910,840835942,US -840835943,840835944,CA -840835945,840835949,US -840835950,840835951,TW -840835952,840835962,US -840835963,840835963,IN -840835964,840836077,US -840836078,840836085,RO -840836086,840836159,US +840298496,840836159,US 840836160,840836223,BR 840836224,840836287,US 840836288,840836351,BR @@ -19349,12 +19670,7 @@ 840837120,840837183,US 840837184,840837343,BR 840837344,840837375,RS -840837376,840837503,US -840837504,840837564,CA -840837565,840837572,BR -840837573,840837575,TH -840837576,840837577,BR -840837578,840838175,US +840837376,840838175,US 840838176,840838239,BR 840838240,840838271,GB 840838272,840838303,NL @@ -19364,45 +19680,7 @@ 840838400,840838655,US 840838656,840838687,TR 840838688,840838719,CA -840838720,840838726,US -840838727,840838728,TW -840838729,840838975,US -840838976,840838977,AU -840838978,840838978,TH -840838979,840838979,DE -840838980,840838980,CA -840838981,840838985,US -840838986,840838986,EC -840838987,840838987,US -840838988,840838988,CY -840838989,840838989,BR -840838990,840838990,CO -840838991,840838991,US -840838992,840838992,BR -840838993,840838994,US -840838995,840838995,BR -840838996,840838996,US -840838997,840838997,MX -840838998,840839004,US -840839005,840839005,MX -840839006,840839006,US -840839007,840839007,CO -840839008,840839008,LT -840839009,840839012,US -840839013,840839016,CA -840839017,840839019,US -840839020,840839020,UA -840839021,840839023,US -840839024,840839025,CA -840839026,840839026,PK -840839027,840839027,BR -840839028,840839030,RU -840839031,840839031,US -840839032,840839032,BR -840839033,840839035,US -840839036,840839036,GB -840839037,840839037,BR -840839038,840898047,US +840838720,840898047,US 840898048,840898559,CA 840898560,840909055,US 840909056,840909311,CA @@ -19418,15 +19696,7 @@ 845283328,845545471,CA 845545472,846439770,US 846439771,846439778,RO -846439779,846439781,US -846439782,846439782,BD -846439783,846439817,US -846439818,846439819,BD -846439820,846440499,US -846440500,846440500,BD -846440501,846440644,US -846440645,846440646,BD -846440647,846441780,US +846439779,846441780,US 846441781,846441790,RO 846441791,846441792,US 846441793,846441801,RO @@ -19436,9 +19706,19 @@ 846441890,846441900,RO 846441901,846442495,US 846442496,846446591,CA -846446592,846537727,US +846446592,846529791,US +846529792,846530047,US +846530048,846537727,US 846537728,846537983,US -846537984,846561279,US +846537984,846542847,US +846542848,846543103,US +846543104,846543615,US +846543616,846543871,US +846543872,846544127,US +846544128,846544383,US +846544384,846546943,US +846546944,846547199,US +846547200,846561279,US 846561280,846594047,CA 846594048,846626815,US 846626816,846627071,CN @@ -20161,32 +20441,26 @@ 1041705904,1041705911,GB 1041705912,1041705935,FR 1041705936,1041705951,GB -1041705952,1041706120,FR -1041706121,1041706127,GB +1041705952,1041706119,FR +1041706120,1041706127,GB 1041706128,1041706223,FR 1041706224,1041706231,IT 1041706232,1041706239,GB -1041706240,1041708687,FR -1041708688,1041708695,GB -1041708696,1041708703,FR -1041708704,1041708799,GB -1041708800,1041709463,FR +1041706240,1041709463,FR 1041709464,1041709471,GB 1041709472,1041709479,FR 1041709480,1041709487,GB -1041709488,1041709767,FR +1041709488,1041709751,FR +1041709752,1041709759,GB +1041709760,1041709767,FR 1041709768,1041709775,GB -1041709776,1041709783,FR -1041709784,1041709791,GB -1041709792,1041709903,FR +1041709776,1041709903,FR 1041709904,1041709911,GB 1041709912,1041709919,FR 1041709920,1041709927,GB 1041709928,1041709935,FR 1041709936,1041709943,GB -1041709944,1041709991,FR -1041709992,1041709999,GB -1041710000,1041710007,FR +1041709944,1041710007,FR 1041710008,1041710015,GB 1041710016,1041710047,FR 1041710048,1041710055,GB @@ -20208,7 +20482,9 @@ 1041710776,1041710783,GB 1041710784,1041711487,FR 1041711488,1041711519,GB -1041711520,1041711551,FR +1041711520,1041711535,FR +1041711536,1041711543,GB +1041711544,1041711551,FR 1041711552,1041711567,GB 1041711568,1041711583,FR 1041711584,1041711599,GB @@ -20242,9 +20518,7 @@ 1041715584,1041715615,GB 1041715616,1041715631,FR 1041715632,1041715647,GB -1041715648,1041715775,FR -1041715776,1041715791,GB -1041715792,1041715807,FR +1041715648,1041715807,FR 1041715808,1041715823,GB 1041715824,1041715863,FR 1041715864,1041715870,GB @@ -20307,16 +20581,14 @@ 1041719008,1041719167,FR 1041719168,1041719175,GB 1041719176,1041719203,FR -1041719204,1041719223,GB -1041719224,1041719224,FR -1041719225,1041719227,GB -1041719228,1041719228,FR -1041719229,1041719231,GB +1041719204,1041719231,GB 1041719232,1041719247,FR 1041719248,1041719263,GB 1041719264,1041719487,FR 1041719488,1041719519,GB -1041719520,1041720191,FR +1041719520,1041720111,FR +1041720112,1041720119,GB +1041720120,1041720191,FR 1041720192,1041720319,GB 1041720320,1041721343,FR 1041721344,1041721359,GB @@ -20362,7 +20634,9 @@ 1041725120,1041725167,GB 1041725168,1041725175,FR 1041725176,1041725183,GB -1041725184,1041726063,FR +1041725184,1041725951,FR +1041725952,1041725959,GB +1041725960,1041726063,FR 1041726064,1041726079,GB 1041726080,1041726127,FR 1041726128,1041726151,GB @@ -20391,25 +20665,13 @@ 1041726980,1041726983,FR 1041726984,1041726987,GB 1041726988,1041726991,FR -1041726992,1041726992,GB -1041726993,1041726994,FR -1041726995,1041726995,GB +1041726992,1041726995,GB 1041726996,1041727007,FR -1041727008,1041727028,GB -1041727029,1041727029,FR -1041727030,1041727036,GB -1041727037,1041727038,FR -1041727039,1041727042,GB -1041727043,1041727043,FR -1041727044,1041727049,GB -1041727050,1041727050,FR -1041727051,1041727055,GB +1041727008,1041727055,GB 1041727056,1041727063,FR -1041727064,1041727070,GB -1041727071,1041727087,FR -1041727088,1041727089,GB -1041727090,1041727090,FR -1041727091,1041727091,GB +1041727064,1041727071,GB +1041727072,1041727087,FR +1041727088,1041727091,GB 1041727092,1041727167,FR 1041727168,1041727239,GB 1041727240,1041727303,FR @@ -20424,10 +20686,8 @@ 1041729504,1041729519,GB 1041729520,1041729527,FR 1041729528,1041729535,GB -1041729536,1041729561,FR -1041729562,1041729564,GB -1041729565,1041729566,FR -1041729567,1041729567,GB +1041729536,1041729559,FR +1041729560,1041729567,GB 1041729568,1041729615,FR 1041729616,1041729623,GB 1041729624,1041729663,FR @@ -20470,7 +20730,9 @@ 1041736376,1041736383,GB 1041736384,1041736423,FR 1041736424,1041736455,GB -1041736456,1041736487,FR +1041736456,1041736463,FR +1041736464,1041736471,GB +1041736472,1041736487,FR 1041736488,1041736495,GB 1041736496,1041736527,FR 1041736528,1041736535,GB @@ -20706,7 +20968,8 @@ 1041746864,1041746895,GB 1041746896,1041747463,FR 1041747464,1041747487,GB -1041747488,1041748991,FR +1041747488,1041748735,FR +1041748736,1041748991,GB 1041748992,1041749247,EU 1041749248,1041751303,FR 1041751304,1041751311,GB @@ -21390,471 +21653,62 @@ 1043919872,1043921919,A2 1043921920,1043922943,IL 1043922944,1043988479,ES -1043988480,1043988551,BE -1043988552,1043988559,NL -1043988560,1043988575,BE -1043988576,1043988607,NL -1043988608,1043988679,BE -1043988680,1043988703,NL -1043988704,1043988719,BE -1043988720,1043988727,NL -1043988728,1043988775,BE -1043988776,1043988799,NL -1043988800,1043988895,BE -1043988896,1043988927,NL -1043988928,1043989119,BE -1043989120,1043989503,NL -1043989504,1043989535,BE -1043989536,1043989543,NL -1043989544,1043989567,BE -1043989568,1043989583,NL -1043989584,1043989591,BE -1043989592,1043989599,NL -1043989600,1043989639,BE -1043989640,1043989655,NL -1043989656,1043989751,BE -1043989752,1043990143,NL -1043990144,1043990303,BE -1043990304,1043990367,NL -1043990368,1043990535,BE -1043990536,1043990543,NL -1043990544,1043990567,BE -1043990568,1043990591,NL -1043990592,1043990615,BE -1043990616,1043990623,NL -1043990624,1043990631,BE -1043990632,1043990783,NL -1043990784,1043991055,BE -1043991056,1043991063,NL -1043991064,1043991103,BE -1043991104,1043991231,NL -1043991232,1043992063,BE -1043992064,1043992319,NL -1043992320,1043992575,BE -1043992576,1043992831,NL -1043992832,1043993599,BE -1043993600,1043993855,NL -1043993856,1043994643,BE -1043994644,1043994651,NL -1043994652,1043994655,BE -1043994656,1043994667,NL -1043994668,1043994671,BE -1043994672,1043994675,NL -1043994676,1043994679,BE -1043994680,1043994699,NL -1043994700,1043994703,BE -1043994704,1043994707,NL -1043994708,1043994711,BE -1043994712,1043994723,NL -1043994724,1043994727,BE -1043994728,1043994747,NL -1043994748,1043994811,BE -1043994812,1043994815,NL -1043994816,1043994851,BE -1043994852,1043994855,NL -1043994856,1043994863,BE -1043994864,1043994867,NL -1043994868,1043994871,BE -1043994872,1043994875,NL -1043994876,1043994879,BE -1043994880,1043994887,NL -1043994888,1043994907,BE -1043994908,1043994911,NL -1043994912,1043994931,BE -1043994932,1043994935,NL -1043994936,1043994975,BE -1043994976,1043994979,NL -1043994980,1043994995,BE -1043994996,1043995003,NL -1043995004,1043995023,BE -1043995024,1043995027,NL -1043995028,1043995047,BE -1043995048,1043995051,NL -1043995052,1043995103,BE -1043995104,1043995111,NL -1043995112,1043995127,BE -1043995128,1043995131,NL -1043995132,1043995135,BE -1043995136,1043995139,NL -1043995140,1043995183,BE -1043995184,1043995187,NL -1043995188,1043995219,BE -1043995220,1043995223,NL -1043995224,1043995279,BE -1043995280,1043995283,NL -1043995284,1043995291,BE -1043995292,1043995295,NL -1043995296,1043995303,BE -1043995304,1043995311,NL -1043995312,1043995663,BE -1043995664,1043995687,NL -1043995688,1043995695,BE -1043995696,1043995703,NL -1043995704,1043995719,BE -1043995720,1043995735,NL -1043995736,1043995767,BE -1043995768,1043995783,NL -1043995784,1043995807,BE -1043995808,1043995831,NL -1043995832,1043995871,BE -1043995872,1043995887,NL -1043995888,1043995919,BE -1043995920,1043995935,NL -1043995936,1043995943,BE -1043995944,1043995951,NL -1043995952,1043995975,BE -1043995976,1043995999,NL -1043996000,1043996015,BE -1043996016,1043996023,NL -1043996024,1043996095,BE -1043996096,1043996103,NL -1043996104,1043996111,BE -1043996112,1043996119,NL -1043996120,1043996143,BE -1043996144,1043996151,NL -1043996152,1043996159,BE -1043996160,1043996287,NL -1043996288,1043996319,BE -1043996320,1043996335,NL -1043996336,1043996415,BE -1043996416,1043997375,NL -1043997376,1043997463,BE -1043997464,1043997471,NL -1043997472,1043997519,BE -1043997520,1043997535,NL -1043997536,1043997559,BE -1043997560,1043997583,NL -1043997584,1043997615,BE -1043997616,1043997631,NL -1043997632,1043997639,BE -1043997640,1043997647,NL -1043997648,1043997655,BE -1043997656,1043997671,NL -1043997672,1043997687,BE -1043997688,1043997807,NL -1043997808,1043997887,BE -1043997888,1043997903,NL -1043997904,1043997919,BE -1043997920,1043997927,NL -1043997928,1043998079,BE -1043998080,1043998103,NL -1043998104,1043998111,BE -1043998112,1043998143,NL -1043998144,1043998151,BE -1043998152,1043998159,NL -1043998160,1043998167,BE -1043998168,1043998191,NL -1043998192,1043998195,BE -1043998196,1043998198,NL -1043998199,1043998199,BE -1043998200,1043998207,NL -1043998208,1043998463,BE -1043998464,1043998719,NL -1043998720,1043998759,BE -1043998760,1043998783,NL -1043998784,1043998799,BE -1043998800,1043998855,NL -1043998856,1043998863,BE -1043998864,1043998879,NL -1043998880,1043998887,BE -1043998888,1043998911,NL -1043998912,1043998975,BE -1043998976,1043998983,NL -1043998984,1043999039,BE -1043999040,1043999055,NL -1043999056,1043999103,BE -1043999104,1043999111,NL -1043999112,1043999119,BE -1043999120,1043999143,NL -1043999144,1043999207,BE -1043999208,1043999215,NL -1043999216,1043999231,BE -1043999232,1043999487,NL -1043999488,1043999751,BE -1043999752,1043999759,NL -1043999760,1043999775,BE -1043999776,1043999783,NL -1043999784,1043999791,BE -1043999792,1043999823,NL -1043999824,1043999831,BE -1043999832,1043999839,NL -1043999840,1043999871,BE -1043999872,1043999951,NL -1043999952,1044000031,BE -1044000032,1044000063,NL -1044000064,1044000095,BE -1044000096,1044000767,NL -1044000768,1044000831,BE -1044000832,1044000895,NL -1044000896,1044000999,BE -1044001000,1044001015,NL -1044001016,1044001271,BE -1044001272,1044001663,NL -1044001664,1044001791,BE -1044001792,1044001823,NL -1044001824,1044001839,BE -1044001840,1044001847,NL -1044001848,1044001895,BE -1044001896,1044001927,NL -1044001928,1044001943,BE -1044001944,1044001951,NL -1044001952,1044002023,BE -1044002024,1044002031,NL -1044002032,1044002063,BE -1044002064,1044002087,NL -1044002088,1044002095,BE -1044002096,1044002103,NL -1044002104,1044002135,BE -1044002136,1044002143,NL -1044002144,1044002303,BE -1044002304,1044002831,NL -1044002832,1044002855,BE -1044002856,1044002859,NL -1044002860,1044002879,BE -1044002880,1044002883,NL -1044002884,1044002891,BE -1044002892,1044002899,NL -1044002900,1044002911,BE -1044002912,1044002919,NL -1044002920,1044002931,BE -1044002932,1044002947,NL -1044002948,1044002959,BE -1044002960,1044002975,NL -1044002976,1044002983,BE -1044002984,1044002987,NL -1044002988,1044002999,BE -1044003000,1044003003,NL -1044003004,1044003019,BE -1044003020,1044003023,NL -1044003024,1044003027,BE -1044003028,1044003031,NL -1044003032,1044003071,BE -1044003072,1044003075,NL -1044003076,1044003099,BE -1044003100,1044003103,NL -1044003104,1044003115,BE -1044003116,1044003119,NL -1044003120,1044003123,BE -1044003124,1044003131,NL -1044003132,1044003147,BE -1044003148,1044003151,NL -1044003152,1044003155,BE -1044003156,1044003159,NL -1044003160,1044003167,BE -1044003168,1044003171,NL -1044003172,1044003183,BE -1044003184,1044003187,NL -1044003188,1044003211,BE -1044003212,1044003215,NL -1044003216,1044003223,BE -1044003224,1044003227,NL -1044003228,1044003235,BE -1044003236,1044003251,NL -1044003252,1044003279,BE -1044003280,1044003283,NL -1044003284,1044003291,BE -1044003292,1044003295,NL -1044003296,1044003299,BE -1044003300,1044003303,NL -1044003304,1044003311,BE -1044003312,1044003315,NL -1044003316,1044003331,BE -1044003332,1044003343,NL -1044003344,1044003359,BE -1044003360,1044003362,NL -1044003363,1044003363,BE -1044003364,1044003371,NL -1044003372,1044003379,BE -1044003380,1044003383,NL -1044003384,1044003423,BE -1044003424,1044003427,NL -1044003428,1044003459,BE -1044003460,1044003463,NL -1044003464,1044003467,BE -1044003468,1044003471,NL -1044003472,1044003483,BE -1044003484,1044003487,NL -1044003488,1044003511,BE -1044003512,1044003527,NL -1044003528,1044003539,BE -1044003540,1044003543,NL -1044003544,1044003551,BE -1044003552,1044003563,NL -1044003564,1044003579,BE -1044003580,1044003591,NL -1044003592,1044003595,BE -1044003596,1044003599,NL -1044003600,1044003619,BE -1044003620,1044003631,NL -1044003632,1044003635,BE -1044003636,1044003639,NL -1044003640,1044003647,BE -1044003648,1044003651,NL -1044003652,1044003655,BE -1044003656,1044003659,NL -1044003660,1044003663,BE -1044003664,1044003667,NL -1044003668,1044003675,BE -1044003676,1044003683,NL -1044003684,1044003687,BE -1044003688,1044003691,NL -1044003692,1044003695,BE -1044003696,1044003699,NL -1044003700,1044003723,BE -1044003724,1044003727,NL -1044003728,1044003731,BE -1044003732,1044003751,NL -1044003752,1044003755,BE -1044003756,1044003775,NL -1044003776,1044003783,BE -1044003784,1044003787,NL -1044003788,1044003807,BE -1044003808,1044003811,NL -1044003812,1044003815,BE -1044003816,1044003819,NL -1044003820,1044003823,BE -1044003824,1044003831,NL -1044003832,1044003855,BE -1044003856,1044003863,NL -1044003864,1044003879,BE -1044003880,1044003895,NL -1044003896,1044003911,BE -1044003912,1044003919,NL -1044003920,1044003927,BE -1044003928,1044003959,NL -1044003960,1044003967,BE -1044003968,1044003975,NL -1044003976,1044003983,BE -1044003984,1044003991,NL -1044003992,1044004031,BE -1044004032,1044004079,NL -1044004080,1044004095,BE -1044004096,1044004303,NL -1044004304,1044004351,BE -1044004352,1044004879,NL -1044004880,1044004903,BE -1044004904,1044004911,NL -1044004912,1044004927,BE -1044004928,1044004991,NL -1044004992,1044005503,BE -1044005504,1044005631,NL -1044005632,1044005639,BE -1044005640,1044005647,NL -1044005648,1044005663,BE -1044005664,1044005671,NL -1044005672,1044005679,BE -1044005680,1044005687,NL -1044005688,1044005695,BE -1044005696,1044005759,NL -1044005760,1044005799,BE -1044005800,1044005807,NL -1044005808,1044005839,BE -1044005840,1044005847,NL -1044005848,1044005887,BE -1044005888,1044006143,NL -1044006144,1044006655,BE -1044006656,1044006927,NL -1044006928,1044006935,BE -1044006936,1044006943,NL -1044006944,1044007007,BE -1044007008,1044007023,NL -1044007024,1044007031,BE -1044007032,1044007039,NL -1044007040,1044007047,BE -1044007048,1044007055,NL -1044007056,1044007071,BE -1044007072,1044007087,NL -1044007088,1044007119,BE -1044007120,1044007127,NL -1044007128,1044007167,BE -1044007168,1044007679,NL -1044007680,1044007935,BE -1044007936,1044007967,NL -1044007968,1044007983,BE -1044007984,1044007991,NL -1044007992,1044008007,BE -1044008008,1044008023,NL -1044008024,1044008031,BE -1044008032,1044008039,NL -1044008040,1044008047,BE -1044008048,1044008063,NL -1044008064,1044008095,BE -1044008096,1044008127,NL -1044008128,1044008183,BE -1044008184,1044008223,NL -1044008224,1044008239,BE -1044008240,1044008255,NL -1044008256,1044008279,BE -1044008280,1044008287,NL -1044008288,1044008319,BE -1044008320,1044008735,NL -1044008736,1044009055,BE -1044009056,1044009087,NL -1044009088,1044009183,BE -1044009184,1044009199,NL -1044009200,1044009215,BE -1044009216,1044009455,NL -1044009456,1044009487,BE -1044009488,1044009503,NL -1044009504,1044009535,BE -1044009536,1044009583,NL -1044009584,1044009599,BE -1044009600,1044009983,NL -1044009984,1044011007,BE -1044011008,1044011019,NL -1044011020,1044011023,BE -1044011024,1044011039,NL -1044011040,1044011043,BE -1044011044,1044011055,NL -1044011056,1044011059,BE -1044011060,1044011223,NL -1044011224,1044011227,BE -1044011228,1044011367,NL -1044011368,1044011371,BE -1044011372,1044011427,NL -1044011428,1044011431,BE -1044011432,1044011455,NL -1044011456,1044011459,BE -1044011460,1044011471,NL -1044011472,1044011475,BE -1044011476,1044011535,NL -1044011536,1044011543,BE -1044011544,1044011635,NL -1044011636,1044011639,BE -1044011640,1044011703,NL -1044011704,1044011707,BE -1044011708,1044011731,NL -1044011732,1044011735,BE -1044011736,1044011763,NL -1044011764,1044011767,BE -1044011768,1044011771,NL -1044011772,1044011775,BE -1044011776,1044011791,NL -1044011792,1044011795,BE -1044011796,1044011827,NL -1044011828,1044011831,BE -1044011832,1044011943,NL -1044011944,1044011947,BE -1044011948,1044011971,NL -1044011972,1044012031,BE -1044012032,1044013055,NL -1044013056,1044013111,BE -1044013112,1044013119,NL -1044013120,1044013135,BE -1044013136,1044013143,NL +1043988480,1044013059,NL +1044013060,1044013111,BE +1044013112,1044013143,NL 1044013144,1044013247,BE 1044013248,1044013263,NL 1044013264,1044013271,BE -1044013272,1044013279,NL -1044013280,1044013375,BE -1044013376,1044013439,NL -1044013440,1044014111,BE -1044014112,1044014119,NL -1044014120,1044017919,BE -1044017920,1044017983,NL -1044017984,1044018039,BE -1044018040,1044018047,NL -1044018048,1044019279,BE +1044013272,1044013287,NL +1044013288,1044013375,BE +1044013376,1044013567,NL +1044013568,1044013839,BE +1044013840,1044013847,NL +1044013848,1044013959,BE +1044013960,1044013967,NL +1044013968,1044014047,BE +1044014048,1044014055,NL +1044014056,1044014095,BE +1044014096,1044014135,NL +1044014136,1044014143,BE +1044014144,1044014207,NL +1044014208,1044014223,BE +1044014224,1044014231,NL +1044014232,1044014239,BE +1044014240,1044014247,NL +1044014248,1044014263,BE +1044014264,1044014271,NL +1044014272,1044014847,BE +1044014848,1044015487,NL +1044015488,1044015531,BE +1044015532,1044015543,NL +1044015544,1044015567,BE +1044015568,1044015583,NL +1044015584,1044015631,BE +1044015632,1044015647,NL +1044015648,1044015679,BE +1044015680,1044015703,NL +1044015704,1044015727,BE +1044015728,1044015743,NL +1044015744,1044015791,BE +1044015792,1044015823,NL +1044015824,1044016647,BE +1044016648,1044016655,NL +1044016656,1044016671,BE +1044016672,1044016703,NL +1044016704,1044016783,BE +1044016784,1044016799,NL +1044016800,1044017407,BE +1044017408,1044017983,NL +1044017984,1044017999,BE +1044018000,1044018007,NL +1044018008,1044018031,BE +1044018032,1044018047,NL +1044018048,1044018175,BE +1044018176,1044019199,NL +1044019200,1044019231,BE +1044019232,1044019235,NL +1044019236,1044019279,BE 1044019280,1044019283,NL 1044019284,1044019291,BE 1044019292,1044019295,NL @@ -21862,1092 +21716,178 @@ 1044019316,1044019323,NL 1044019324,1044019347,BE 1044019348,1044019351,NL -1044019352,1044019383,BE -1044019384,1044019399,NL +1044019352,1044019379,BE +1044019380,1044019399,NL 1044019400,1044019403,BE 1044019404,1044019407,NL 1044019408,1044019415,BE 1044019416,1044019439,NL 1044019440,1044019443,BE -1044019444,1044019471,NL -1044019472,1044019491,BE +1044019444,1044019475,NL +1044019476,1044019483,BE +1044019484,1044019487,NL +1044019488,1044019491,BE 1044019492,1044019495,NL 1044019496,1044019503,BE 1044019504,1044019507,NL -1044019508,1044019695,BE -1044019696,1044019699,NL -1044019700,1044019819,BE -1044019820,1044019823,NL -1044019824,1044019995,BE -1044019996,1044019999,NL -1044020000,1044020147,BE +1044019508,1044019515,BE +1044019516,1044019527,NL +1044019528,1044019531,BE +1044019532,1044019539,NL +1044019540,1044019563,BE +1044019564,1044019567,NL +1044019568,1044019575,BE +1044019576,1044019583,NL +1044019584,1044019695,BE +1044019696,1044019711,NL +1044019712,1044019723,BE +1044019724,1044019731,NL +1044019732,1044019735,BE +1044019736,1044019739,NL +1044019740,1044019743,BE +1044019744,1044019747,NL +1044019748,1044019751,BE +1044019752,1044019755,NL +1044019756,1044019759,BE +1044019760,1044019771,NL +1044019772,1044019775,BE +1044019776,1044019779,NL +1044019780,1044019787,BE +1044019788,1044019799,NL +1044019800,1044019803,BE +1044019804,1044019807,NL +1044019808,1044019811,BE +1044019812,1044019827,NL +1044019828,1044019835,BE +1044019836,1044019843,NL +1044019844,1044019851,BE +1044019852,1044019859,NL +1044019860,1044019867,BE +1044019868,1044019871,NL +1044019872,1044019875,BE +1044019876,1044019887,NL +1044019888,1044019891,BE +1044019892,1044019911,NL +1044019912,1044019915,BE +1044019916,1044019919,NL +1044019920,1044019923,BE +1044019924,1044019931,NL +1044019932,1044019939,BE +1044019940,1044019955,NL +1044019956,1044019963,BE +1044019964,1044019979,NL +1044019980,1044019987,BE +1044019988,1044019991,NL +1044019992,1044019995,BE +1044019996,1044020003,NL +1044020004,1044020015,BE +1044020016,1044020019,NL +1044020020,1044020031,BE +1044020032,1044020035,NL +1044020036,1044020039,BE +1044020040,1044020047,NL +1044020048,1044020059,BE +1044020060,1044020071,NL +1044020072,1044020075,BE +1044020076,1044020083,NL +1044020084,1044020127,BE +1044020128,1044020131,NL +1044020132,1044020147,BE 1044020148,1044020151,NL -1044020152,1044020215,BE -1044020216,1044020219,NL +1044020152,1044020155,BE +1044020156,1044020159,NL +1044020160,1044020163,BE +1044020164,1044020167,NL +1044020168,1044020187,BE +1044020188,1044020199,NL +1044020200,1044020203,BE +1044020204,1044020219,NL 1044020220,1044020255,BE 1044020256,1044020263,NL 1044020264,1044020303,BE 1044020304,1044020319,NL -1044020320,1044020511,BE +1044020320,1044020351,BE +1044020352,1044020359,NL +1044020360,1044020511,BE 1044020512,1044020551,NL 1044020552,1044020567,BE 1044020568,1044020591,NL 1044020592,1044020607,BE 1044020608,1044020671,NL 1044020672,1044020735,BE -1044020736,1044021759,NL -1044021760,1044021887,BE -1044021888,1044022319,NL -1044022320,1044022335,BE -1044022336,1044022351,NL -1044022352,1044022415,BE -1044022416,1044022783,NL -1044022784,1044023039,BE -1044023040,1044023295,NL -1044023296,1044023351,BE -1044023352,1044023359,NL -1044023360,1044023407,BE -1044023408,1044023439,NL -1044023440,1044024319,BE -1044024320,1044024447,NL -1044024448,1044024575,BE -1044024576,1044024835,NL -1044024836,1044024843,BE -1044024844,1044024847,NL -1044024848,1044024851,BE -1044024852,1044024855,NL -1044024856,1044024863,BE -1044024864,1044024867,NL -1044024868,1044024879,BE -1044024880,1044024883,NL -1044024884,1044024887,BE -1044024888,1044024891,NL -1044024892,1044024959,BE -1044024960,1044025351,NL -1044025352,1044025599,BE -1044025600,1044025855,NL -1044025856,1044025863,BE -1044025864,1044025871,NL -1044025872,1044025879,BE -1044025880,1044025927,NL -1044025928,1044025935,BE -1044025936,1044025967,NL -1044025968,1044025983,BE -1044025984,1044025999,NL -1044026000,1044026007,BE -1044026008,1044026023,NL -1044026024,1044026031,BE -1044026032,1044026047,NL -1044026048,1044026055,BE -1044026056,1044026079,NL -1044026080,1044026095,BE -1044026096,1044026111,NL -1044026112,1044026119,BE -1044026120,1044026143,NL -1044026144,1044026159,BE -1044026160,1044026167,NL -1044026168,1044026175,BE -1044026176,1044026183,NL -1044026184,1044026199,BE -1044026200,1044026207,NL -1044026208,1044026215,BE -1044026216,1044026247,NL -1044026248,1044026255,BE -1044026256,1044026263,NL -1044026264,1044026279,BE -1044026280,1044026327,NL -1044026328,1044026343,BE -1044026344,1044026383,NL -1044026384,1044026391,BE -1044026392,1044026399,NL -1044026400,1044026407,BE -1044026408,1044026415,NL -1044026416,1044026431,BE -1044026432,1044026447,NL -1044026448,1044026455,BE -1044026456,1044026479,NL -1044026480,1044026487,BE -1044026488,1044026519,NL -1044026520,1044026535,BE -1044026536,1044026607,NL -1044026608,1044026615,BE -1044026616,1044026631,NL -1044026632,1044026639,BE -1044026640,1044026647,NL -1044026648,1044026655,BE -1044026656,1044026663,NL -1044026664,1044026671,BE -1044026672,1044026679,NL -1044026680,1044026687,BE -1044026688,1044026695,NL -1044026696,1044026703,BE -1044026704,1044026727,NL -1044026728,1044026767,BE -1044026768,1044026791,NL -1044026792,1044026799,BE -1044026800,1044026815,NL -1044026816,1044026839,BE -1044026840,1044026855,NL -1044026856,1044026863,BE -1044026864,1044026895,NL -1044026896,1044027263,BE -1044027264,1044027407,NL -1044027408,1044027415,BE -1044027416,1044027423,NL -1044027424,1044027431,BE -1044027432,1044027447,NL -1044027448,1044027455,BE -1044027456,1044027471,NL -1044027472,1044027487,BE -1044027488,1044027519,NL -1044027520,1044027527,BE -1044027528,1044027535,NL -1044027536,1044027575,BE -1044027576,1044027583,NL -1044027584,1044027591,BE -1044027592,1044027639,NL -1044027640,1044027647,BE -1044027648,1044027655,NL -1044027656,1044027671,BE -1044027672,1044027687,NL -1044027688,1044027711,BE -1044027712,1044027727,NL -1044027728,1044027775,BE -1044027776,1044027839,NL -1044027840,1044027903,BE -1044027904,1044028159,NL -1044028160,1044028543,BE -1044028544,1044028559,NL -1044028560,1044028799,BE -1044028800,1044028927,NL -1044028928,1044028939,BE -1044028940,1044028943,NL -1044028944,1044028955,BE -1044028956,1044028959,NL -1044028960,1044029011,BE -1044029012,1044029015,NL -1044029016,1044029019,BE -1044029020,1044029023,NL -1044029024,1044029027,BE -1044029028,1044029031,NL -1044029032,1044029039,BE -1044029040,1044029043,NL -1044029044,1044029311,BE -1044029312,1044029441,NL -1044029442,1044029442,BE -1044029443,1044029445,NL -1044029446,1044029448,BE -1044029449,1044029451,NL -1044029452,1044029452,BE -1044029453,1044029453,NL -1044029454,1044029455,BE -1044029456,1044029463,NL -1044029464,1044029466,BE -1044029467,1044029467,NL -1044029468,1044029470,BE -1044029471,1044029479,NL -1044029480,1044029483,BE -1044029484,1044029485,NL -1044029486,1044029487,BE -1044029488,1044029488,NL -1044029489,1044029489,BE -1044029490,1044029492,NL -1044029493,1044029493,BE -1044029494,1044029494,NL -1044029495,1044029497,BE -1044029498,1044029498,NL -1044029499,1044029501,BE -1044029502,1044029502,NL -1044029503,1044029505,BE -1044029506,1044029509,NL -1044029510,1044029510,BE -1044029511,1044029511,NL -1044029512,1044029535,BE -1044029536,1044029536,NL -1044029537,1044029537,BE -1044029538,1044029538,NL -1044029539,1044029545,BE -1044029546,1044029546,NL -1044029547,1044029548,BE -1044029549,1044029549,NL -1044029550,1044029552,BE -1044029553,1044029553,NL -1044029554,1044029554,BE -1044029555,1044029556,NL -1044029557,1044029557,BE -1044029558,1044029558,NL -1044029559,1044029561,BE -1044029562,1044029567,NL -1044029568,1044029568,BE -1044029569,1044029569,NL -1044029570,1044029572,BE -1044029573,1044029575,NL -1044029576,1044029580,BE -1044029581,1044029581,NL -1044029582,1044029584,BE -1044029585,1044029585,NL -1044029586,1044029586,BE -1044029587,1044029587,NL -1044029588,1044029590,BE -1044029591,1044029595,NL -1044029596,1044029596,BE -1044029597,1044029598,NL -1044029599,1044029599,BE -1044029600,1044029600,NL -1044029601,1044029601,BE -1044029602,1044029603,NL -1044029604,1044029606,BE -1044029607,1044029608,NL -1044029609,1044029609,BE -1044029610,1044029610,NL -1044029611,1044029611,BE -1044029612,1044029612,NL -1044029613,1044029616,BE -1044029617,1044029618,NL -1044029619,1044029620,BE -1044029621,1044029622,NL -1044029623,1044029625,BE -1044029626,1044029628,NL -1044029629,1044029630,BE -1044029631,1044029631,NL -1044029632,1044029634,BE -1044029635,1044029635,NL -1044029636,1044029636,BE -1044029637,1044029638,NL -1044029639,1044029640,BE -1044029641,1044029641,NL -1044029642,1044029642,BE -1044029643,1044029647,NL -1044029648,1044029648,BE -1044029649,1044029651,NL -1044029652,1044029652,BE -1044029653,1044029659,NL -1044029660,1044029660,BE -1044029661,1044029663,NL -1044029664,1044029665,BE -1044029666,1044029667,NL -1044029668,1044029668,BE -1044029669,1044029669,NL -1044029670,1044029672,BE -1044029673,1044029676,NL -1044029677,1044029678,BE -1044029679,1044029680,NL -1044029681,1044029681,BE -1044029682,1044029682,NL -1044029683,1044029684,BE -1044029685,1044029686,NL -1044029687,1044029687,BE -1044029688,1044029693,NL -1044029694,1044029694,BE -1044029695,1044029695,NL -1044029696,1044029711,BE -1044029712,1044029719,NL -1044029720,1044029727,BE -1044029728,1044029743,NL -1044029744,1044029767,BE -1044029768,1044029775,NL -1044029776,1044029783,BE -1044029784,1044029823,NL -1044029824,1044029839,BE -1044029840,1044029871,NL -1044029872,1044029879,BE -1044029880,1044029887,NL -1044029888,1044029919,BE -1044029920,1044029951,NL -1044029952,1044029959,BE -1044029960,1044029967,NL -1044029968,1044029983,BE -1044029984,1044030015,NL -1044030016,1044030031,BE -1044030032,1044030047,NL -1044030048,1044030055,BE -1044030056,1044030063,NL -1044030064,1044030071,BE -1044030072,1044030111,NL -1044030112,1044030119,BE -1044030120,1044030127,NL -1044030128,1044030135,BE -1044030136,1044030191,NL -1044030192,1044030223,BE -1044030224,1044030231,NL -1044030232,1044030239,BE -1044030240,1044030247,NL -1044030248,1044030263,BE -1044030264,1044030279,NL -1044030280,1044030295,BE -1044030296,1044030303,NL -1044030304,1044030311,BE -1044030312,1044030335,NL -1044030336,1044030343,BE -1044030344,1044030351,NL -1044030352,1044030359,BE -1044030360,1044030375,NL -1044030376,1044030391,BE -1044030392,1044030399,NL -1044030400,1044030415,BE -1044030416,1044030439,NL -1044030440,1044030447,BE -1044030448,1044030463,NL -1044030464,1044030471,BE -1044030472,1044030487,NL -1044030488,1044030495,BE -1044030496,1044030527,NL -1044030528,1044030535,BE -1044030536,1044030543,NL -1044030544,1044030551,BE -1044030552,1044030583,NL -1044030584,1044030591,BE -1044030592,1044030607,NL -1044030608,1044030623,BE -1044030624,1044030639,NL -1044030640,1044030655,BE -1044030656,1044030671,NL -1044030672,1044030687,BE -1044030688,1044030703,NL -1044030704,1044030735,BE -1044030736,1044030759,NL -1044030760,1044030775,BE -1044030776,1044030799,NL -1044030800,1044030807,BE -1044030808,1044030815,NL -1044030816,1044030823,BE -1044030824,1044030831,NL -1044030832,1044030847,BE -1044030848,1044030879,NL -1044030880,1044030887,BE -1044030888,1044030895,NL -1044030896,1044030903,BE -1044030904,1044030911,NL -1044030912,1044030919,BE -1044030920,1044030927,NL -1044030928,1044030935,BE -1044030936,1044030959,NL -1044030960,1044030967,BE -1044030968,1044030975,NL -1044030976,1044030991,BE -1044030992,1044030999,NL -1044031000,1044031007,BE -1044031008,1044031039,NL -1044031040,1044031103,BE -1044031104,1044031119,NL -1044031120,1044031127,BE -1044031128,1044031151,NL -1044031152,1044031167,BE -1044031168,1044031271,NL -1044031272,1044031295,BE -1044031296,1044031319,NL -1044031320,1044031335,BE -1044031336,1044031343,NL -1044031344,1044031351,BE -1044031352,1044031359,NL -1044031360,1044031360,BE -1044031361,1044031363,NL -1044031364,1044031364,BE -1044031365,1044031367,NL -1044031368,1044031375,BE -1044031376,1044031399,NL -1044031400,1044031431,BE -1044031432,1044031439,NL -1044031440,1044031455,BE -1044031456,1044031479,NL -1044031480,1044031487,BE -1044031488,1044031489,NL -1044031490,1044031490,BE -1044031491,1044031494,NL -1044031495,1044031495,BE -1044031496,1044031496,NL -1044031497,1044031497,BE -1044031498,1044031507,NL -1044031508,1044031508,BE -1044031509,1044031509,NL -1044031510,1044031510,BE -1044031511,1044031519,NL -1044031520,1044031520,BE -1044031521,1044031523,NL -1044031524,1044031524,BE -1044031525,1044031531,NL -1044031532,1044031532,BE -1044031533,1044031533,NL -1044031534,1044031536,BE -1044031537,1044031550,NL -1044031551,1044031551,BE -1044031552,1044031552,NL -1044031553,1044031553,BE -1044031554,1044031556,NL -1044031557,1044031557,BE -1044031558,1044031558,NL -1044031559,1044031559,BE -1044031560,1044031562,NL -1044031563,1044031563,BE -1044031564,1044031566,NL -1044031567,1044031567,BE -1044031568,1044031568,NL -1044031569,1044031569,BE -1044031570,1044031571,NL -1044031572,1044031572,BE -1044031573,1044031573,NL -1044031574,1044031574,BE -1044031575,1044031579,NL -1044031580,1044031581,BE -1044031582,1044031582,NL -1044031583,1044031584,BE -1044031585,1044031592,NL -1044031593,1044031593,BE -1044031594,1044031597,NL -1044031598,1044031598,BE -1044031599,1044031599,NL -1044031600,1044031600,BE -1044031601,1044031627,NL -1044031628,1044031628,BE -1044031629,1044031629,NL -1044031630,1044031630,BE -1044031631,1044031635,NL -1044031636,1044031636,BE -1044031637,1044031640,NL -1044031641,1044031641,BE -1044031642,1044031643,NL -1044031644,1044031644,BE -1044031645,1044031651,NL -1044031652,1044031652,BE -1044031653,1044031654,NL -1044031655,1044031655,BE -1044031656,1044031656,NL -1044031657,1044031658,BE -1044031659,1044031666,NL -1044031667,1044031667,BE -1044031668,1044031668,NL -1044031669,1044031670,BE -1044031671,1044031673,NL -1044031674,1044031674,BE -1044031675,1044031675,NL -1044031676,1044031677,BE -1044031678,1044031683,NL -1044031684,1044031684,BE -1044031685,1044031687,NL -1044031688,1044031688,BE -1044031689,1044031690,NL -1044031691,1044031692,BE -1044031693,1044031698,NL -1044031699,1044031699,BE -1044031700,1044031702,NL -1044031703,1044031704,BE -1044031705,1044031709,NL -1044031710,1044031710,BE -1044031711,1044031711,NL -1044031712,1044031712,BE -1044031713,1044031714,NL -1044031715,1044031715,BE -1044031716,1044031717,NL -1044031718,1044031719,BE -1044031720,1044031721,NL -1044031722,1044031723,BE -1044031724,1044031726,NL -1044031727,1044031727,BE -1044031728,1044031751,NL -1044031752,1044031759,BE -1044031760,1044031799,NL -1044031800,1044031807,BE -1044031808,1044031815,NL -1044031816,1044031871,BE -1044031872,1044031879,NL -1044031880,1044031895,BE -1044031896,1044031927,NL -1044031928,1044031943,BE -1044031944,1044031951,NL -1044031952,1044031991,BE -1044031992,1044031999,NL -1044032000,1044032031,BE -1044032032,1044032047,NL -1044032048,1044032055,BE -1044032056,1044032071,NL -1044032072,1044032079,BE -1044032080,1044032103,NL -1044032104,1044032127,BE -1044032128,1044032143,NL -1044032144,1044032167,BE -1044032168,1044032175,NL -1044032176,1044032183,BE -1044032184,1044032191,NL -1044032192,1044032199,BE -1044032200,1044032223,NL -1044032224,1044032239,BE -1044032240,1044032263,NL -1044032264,1044032287,BE -1044032288,1044032303,NL -1044032304,1044032327,BE -1044032328,1044032375,NL -1044032376,1044032407,BE -1044032408,1044032471,NL -1044032472,1044032479,BE -1044032480,1044032527,NL -1044032528,1044032559,BE -1044032560,1044032583,NL -1044032584,1044032615,BE -1044032616,1044032639,NL -1044032640,1044032647,BE -1044032648,1044032655,NL -1044032656,1044032663,BE -1044032664,1044032695,NL -1044032696,1044032703,BE -1044032704,1044032719,NL -1044032720,1044032727,BE -1044032728,1044032735,NL -1044032736,1044032743,BE -1044032744,1044032775,NL -1044032776,1044032783,BE -1044032784,1044032791,NL -1044032792,1044032799,BE -1044032800,1044032815,NL -1044032816,1044032831,BE -1044032832,1044032855,NL -1044032856,1044032863,BE -1044032864,1044032887,NL -1044032888,1044032903,BE -1044032904,1044032927,NL -1044032928,1044032935,BE -1044032936,1044032943,NL -1044032944,1044032959,BE -1044032960,1044032967,NL -1044032968,1044032975,BE -1044032976,1044032991,NL -1044032992,1044032999,BE -1044033000,1044033031,NL -1044033032,1044033055,BE -1044033056,1044033071,NL -1044033072,1044033079,BE -1044033080,1044033087,NL -1044033088,1044033095,BE -1044033096,1044033111,NL -1044033112,1044033119,BE -1044033120,1044033135,NL -1044033136,1044033159,BE -1044033160,1044033207,NL -1044033208,1044033215,BE -1044033216,1044033223,NL -1044033224,1044033231,BE -1044033232,1044033335,NL -1044033336,1044033343,BE -1044033344,1044033351,NL -1044033352,1044033359,BE -1044033360,1044033375,NL -1044033376,1044033407,BE -1044033408,1044033431,NL -1044033432,1044033447,BE -1044033448,1044033527,NL -1044033528,1044033535,BE -1044033536,1044033543,NL -1044033544,1044033551,BE -1044033552,1044033575,NL -1044033576,1044033583,BE -1044033584,1044033623,NL -1044033624,1044033631,BE -1044033632,1044033655,NL -1044033656,1044033663,BE -1044033664,1044033671,NL -1044033672,1044033687,BE -1044033688,1044033719,NL -1044033720,1044033727,BE -1044033728,1044033847,NL -1044033848,1044033855,BE -1044033856,1044033895,NL -1044033896,1044033903,BE -1044033904,1044033927,NL -1044033928,1044033935,BE -1044033936,1044033991,NL -1044033992,1044033999,BE -1044034000,1044034015,NL -1044034016,1044034023,BE -1044034024,1044034031,NL -1044034032,1044034039,BE -1044034040,1044034055,NL -1044034056,1044034063,BE -1044034064,1044034095,NL -1044034096,1044034119,BE -1044034120,1044034127,NL -1044034128,1044034143,BE -1044034144,1044034207,NL -1044034208,1044034215,BE -1044034216,1044034231,NL -1044034232,1044034247,BE -1044034248,1044034263,NL -1044034264,1044034271,BE -1044034272,1044034279,NL -1044034280,1044034295,BE -1044034296,1044034303,NL -1044034304,1044034311,BE -1044034312,1044034327,NL -1044034328,1044034335,BE -1044034336,1044034375,NL -1044034376,1044034383,BE -1044034384,1044034487,NL -1044034488,1044034495,BE -1044034496,1044034511,NL -1044034512,1044034519,BE -1044034520,1044034615,NL -1044034616,1044034623,BE -1044034624,1044034663,NL -1044034664,1044034671,BE -1044034672,1044034735,NL -1044034736,1044034743,BE -1044034744,1044034751,NL -1044034752,1044034759,BE -1044034760,1044034783,NL -1044034784,1044034791,BE -1044034792,1044034847,NL -1044034848,1044034855,BE -1044034856,1044034919,NL -1044034920,1044034927,BE -1044034928,1044034975,NL -1044034976,1044034983,BE -1044034984,1044034999,NL -1044035000,1044035007,BE -1044035008,1044035031,NL -1044035032,1044035039,BE -1044035040,1044035047,NL -1044035048,1044035055,BE -1044035056,1044035063,NL -1044035064,1044035071,BE -1044035072,1044035087,NL -1044035088,1044035095,BE -1044035096,1044035143,NL -1044035144,1044035151,BE -1044035152,1044035191,NL -1044035192,1044035199,BE -1044035200,1044035223,NL -1044035224,1044035231,BE -1044035232,1044035255,NL -1044035256,1044035263,BE -1044035264,1044035287,NL -1044035288,1044035311,BE -1044035312,1044035327,NL -1044035328,1044035351,BE -1044035352,1044035367,NL -1044035368,1044035375,BE -1044035376,1044035407,NL -1044035408,1044035423,BE -1044035424,1044035447,NL -1044035448,1044035471,BE -1044035472,1044035479,NL -1044035480,1044035487,BE -1044035488,1044035495,NL -1044035496,1044035503,BE -1044035504,1044035511,NL -1044035512,1044035527,BE -1044035528,1044035535,NL -1044035536,1044035543,BE -1044035544,1044035559,NL -1044035560,1044035591,BE -1044035592,1044035607,NL -1044035608,1044035623,BE -1044035624,1044035655,NL -1044035656,1044035663,BE -1044035664,1044035671,NL -1044035672,1044035679,BE -1044035680,1044035711,NL -1044035712,1044035727,BE -1044035728,1044035751,NL -1044035752,1044035759,BE -1044035760,1044035791,NL -1044035792,1044035807,BE -1044035808,1044035831,NL -1044035832,1044035839,BE -1044035840,1044035847,NL -1044035848,1044035871,BE -1044035872,1044035887,NL -1044035888,1044035895,BE -1044035896,1044035903,NL -1044035904,1044035919,BE -1044035920,1044035935,NL -1044035936,1044035967,BE -1044035968,1044035975,NL -1044035976,1044035991,BE -1044035992,1044035999,NL -1044036000,1044036007,BE -1044036008,1044036039,NL -1044036040,1044036047,BE -1044036048,1044036079,NL -1044036080,1044036087,BE -1044036088,1044036095,NL -1044036096,1044036103,BE -1044036104,1044036111,NL -1044036112,1044036119,BE -1044036120,1044036127,NL -1044036128,1044036135,BE -1044036136,1044036143,NL -1044036144,1044036159,BE -1044036160,1044036167,NL -1044036168,1044036199,BE -1044036200,1044036223,NL -1044036224,1044036247,BE -1044036248,1044036255,NL -1044036256,1044036271,BE -1044036272,1044036295,NL -1044036296,1044036311,BE -1044036312,1044036327,NL -1044036328,1044036335,BE -1044036336,1044036399,NL -1044036400,1044036407,BE -1044036408,1044036415,NL -1044036416,1044036423,BE -1044036424,1044036439,NL -1044036440,1044036447,BE -1044036448,1044036471,NL -1044036472,1044036479,BE -1044036480,1044036503,NL -1044036504,1044036511,BE -1044036512,1044036527,NL -1044036528,1044036543,BE -1044036544,1044036559,NL -1044036560,1044036567,BE -1044036568,1044036575,NL -1044036576,1044036623,BE -1044036624,1044036647,NL -1044036648,1044036655,BE -1044036656,1044036671,NL -1044036672,1044036687,BE -1044036688,1044036735,NL -1044036736,1044036743,BE -1044036744,1044036759,NL -1044036760,1044036767,BE -1044036768,1044036775,NL -1044036776,1044036783,BE -1044036784,1044036791,NL -1044036792,1044036799,BE -1044036800,1044036807,NL -1044036808,1044036815,BE -1044036816,1044036831,NL -1044036832,1044036839,BE -1044036840,1044036863,NL -1044036864,1044036864,BE -1044036865,1044036865,NL -1044036866,1044036866,BE -1044036867,1044036890,NL -1044036891,1044036891,BE -1044036892,1044036899,NL -1044036900,1044036900,BE -1044036901,1044036907,NL -1044036908,1044036908,BE -1044036909,1044036909,NL -1044036910,1044036910,BE -1044036911,1044036927,NL -1044036928,1044036928,BE -1044036929,1044036942,NL -1044036943,1044036943,BE -1044036944,1044036948,NL -1044036949,1044036951,BE -1044036952,1044036957,NL -1044036958,1044036958,BE -1044036959,1044036967,NL -1044036968,1044036968,BE -1044036969,1044036970,NL -1044036971,1044036971,BE -1044036972,1044036976,NL -1044036977,1044036977,BE -1044036978,1044036984,NL -1044036985,1044036985,BE -1044036986,1044036990,NL -1044036991,1044036991,BE -1044036992,1044037007,NL -1044037008,1044037010,BE -1044037011,1044037014,NL -1044037015,1044037015,BE -1044037016,1044037021,NL -1044037022,1044037022,BE -1044037023,1044037023,NL -1044037024,1044037025,BE -1044037026,1044037026,NL -1044037027,1044037027,BE -1044037028,1044037037,NL -1044037038,1044037038,BE -1044037039,1044037042,NL -1044037043,1044037043,BE -1044037044,1044037047,NL -1044037048,1044037048,BE -1044037049,1044037049,NL -1044037050,1044037051,BE -1044037052,1044037056,NL -1044037057,1044037057,BE -1044037058,1044037061,NL -1044037062,1044037063,BE -1044037064,1044037065,NL -1044037066,1044037066,BE -1044037067,1044037070,NL -1044037071,1044037071,BE -1044037072,1044037074,NL -1044037075,1044037075,BE -1044037076,1044037091,NL -1044037092,1044037092,BE -1044037093,1044037098,NL -1044037099,1044037100,BE -1044037101,1044037101,NL -1044037102,1044037102,BE -1044037103,1044037106,NL -1044037107,1044037107,BE -1044037108,1044037109,NL -1044037110,1044037110,BE -1044037111,1044037143,NL -1044037144,1044037151,BE -1044037152,1044037159,NL -1044037160,1044037167,BE -1044037168,1044037191,NL -1044037192,1044037223,BE -1044037224,1044037271,NL -1044037272,1044037279,BE -1044037280,1044037287,NL -1044037288,1044037295,BE -1044037296,1044037319,NL -1044037320,1044037327,BE -1044037328,1044037375,NL -1044037376,1044037631,BE -1044037632,1044038143,NL -1044038144,1044038527,BE -1044038528,1044038535,NL -1044038536,1044038543,BE -1044038544,1044038559,NL -1044038560,1044038567,BE -1044038568,1044038575,NL -1044038576,1044038583,BE -1044038584,1044038591,NL -1044038592,1044038599,BE -1044038600,1044038607,NL -1044038608,1044038623,BE -1044038624,1044038639,NL -1044038640,1044038647,BE -1044038648,1044038671,NL -1044038672,1044038679,BE -1044038680,1044038687,NL -1044038688,1044038703,BE -1044038704,1044038783,NL -1044038784,1044038911,BE -1044038912,1044038919,NL -1044038920,1044038927,BE -1044038928,1044038935,NL -1044038936,1044038943,BE -1044038944,1044039295,NL -1044039296,1044039303,BE -1044039304,1044039311,NL -1044039312,1044039359,BE -1044039360,1044039951,NL -1044039952,1044039959,BE -1044039960,1044039967,NL -1044039968,1044040015,BE -1044040016,1044040063,NL -1044040064,1044040111,BE -1044040112,1044040143,NL -1044040144,1044040159,BE -1044040160,1044040191,NL -1044040192,1044040223,BE -1044040224,1044040231,NL -1044040232,1044040239,BE -1044040240,1044040255,NL -1044040256,1044040703,BE -1044040704,1044041727,NL -1044041728,1044043775,BE -1044043776,1044043783,NL -1044043784,1044043787,BE -1044043788,1044043791,NL -1044043792,1044043795,BE -1044043796,1044043799,NL -1044043800,1044043803,BE -1044043804,1044043807,NL -1044043808,1044043811,BE -1044043812,1044043823,NL -1044043824,1044043827,BE -1044043828,1044043835,NL -1044043836,1044043847,BE -1044043848,1044043851,NL -1044043852,1044043879,BE -1044043880,1044043883,NL -1044043884,1044043895,BE -1044043896,1044043903,NL -1044043904,1044043907,BE -1044043908,1044043919,NL -1044043920,1044043927,BE -1044043928,1044043931,NL -1044043932,1044043935,BE -1044043936,1044043943,NL -1044043944,1044043955,BE -1044043956,1044043971,NL -1044043972,1044043975,BE -1044043976,1044043987,NL -1044043988,1044043999,BE -1044044000,1044044003,NL -1044044004,1044044007,BE -1044044008,1044044011,NL -1044044012,1044044015,BE -1044044016,1044044019,NL -1044044020,1044044027,BE -1044044028,1044044035,NL -1044044036,1044044043,BE -1044044044,1044044051,NL -1044044052,1044044055,BE -1044044056,1044044059,NL -1044044060,1044044071,BE -1044044072,1044044083,NL -1044044084,1044044099,BE -1044044100,1044044119,NL -1044044120,1044044131,BE -1044044132,1044044135,NL -1044044136,1044044143,BE -1044044144,1044044163,NL -1044044164,1044044167,BE -1044044168,1044044171,NL -1044044172,1044044187,BE -1044044188,1044044215,NL -1044044216,1044044227,BE -1044044228,1044044243,NL -1044044244,1044044247,BE -1044044248,1044044251,NL -1044044252,1044045311,BE -1044045312,1044045695,NL -1044045696,1044045911,BE +1044020736,1044024063,NL +1044024064,1044024319,BE +1044024320,1044045823,NL +1044045824,1044045855,BE +1044045856,1044045887,NL +1044045888,1044045911,BE 1044045912,1044045919,NL -1044045920,1044046079,BE -1044046080,1044046223,NL -1044046224,1044046231,BE -1044046232,1044046239,NL +1044045920,1044046047,BE +1044046048,1044046055,NL +1044046056,1044046079,BE +1044046080,1044046239,NL 1044046240,1044046319,BE 1044046320,1044046327,NL -1044046328,1044051987,BE +1044046328,1044046335,BE +1044046336,1044051967,NL +1044051968,1044051987,BE 1044051988,1044051991,NL -1044051992,1044052011,BE +1044051992,1044051995,BE +1044051996,1044051999,NL +1044052000,1044052011,BE 1044052012,1044052015,NL 1044052016,1044052031,BE 1044052032,1044052039,NL -1044052040,1044052063,BE +1044052040,1044052051,BE +1044052052,1044052055,NL +1044052056,1044052063,BE 1044052064,1044052067,NL 1044052068,1044052107,BE 1044052108,1044052111,NL -1044052112,1044052131,BE -1044052132,1044052135,NL -1044052136,1044052223,BE +1044052112,1044052127,BE +1044052128,1044052135,NL +1044052136,1044052151,BE +1044052152,1044052155,NL +1044052156,1044052223,BE 1044052224,1044052227,NL 1044052228,1044052255,BE 1044052256,1044052259,NL 1044052260,1044052347,BE 1044052348,1044052359,NL 1044052360,1044052363,BE -1044052364,1044052375,NL -1044052376,1044052479,BE -1044052480,1044052483,NL -1044052484,1044052967,BE -1044052968,1044052971,NL +1044052364,1044052971,NL 1044052972,1044052983,BE -1044052984,1044052987,NL -1044052988,1044053055,BE -1044053056,1044053063,NL -1044053064,1044053255,BE +1044052984,1044052999,NL +1044053000,1044053055,BE +1044053056,1044053071,NL +1044053072,1044053255,BE 1044053256,1044053263,NL -1044053264,1044053455,BE +1044053264,1044053399,BE +1044053400,1044053415,NL +1044053416,1044053423,BE +1044053424,1044053431,NL +1044053432,1044053455,BE 1044053456,1044053463,NL -1044053464,1044053567,BE -1044053568,1044059263,NL -1044059264,1044059935,BE -1044059936,1044060031,NL -1044060032,1044060063,BE -1044060064,1044061183,NL -1044061184,1044061223,BE -1044061224,1044061263,NL -1044061264,1044061271,BE -1044061272,1044061343,NL -1044061344,1044061375,BE -1044061376,1044061391,NL -1044061392,1044061399,BE -1044061400,1044061431,NL -1044061432,1044061439,BE -1044061440,1044061695,NL -1044061696,1044061703,BE -1044061704,1044061759,NL -1044061760,1044061775,BE -1044061776,1044061783,NL -1044061784,1044061807,BE -1044061808,1044061831,NL -1044061832,1044061839,BE -1044061840,1044061879,NL -1044061880,1044061895,BE -1044061896,1044061919,NL -1044061920,1044061951,BE -1044061952,1044062015,NL -1044062016,1044062047,BE -1044062048,1044062079,NL -1044062080,1044062095,BE -1044062096,1044062103,NL -1044062104,1044062135,BE -1044062136,1044062175,NL -1044062176,1044062199,BE -1044062200,1044062223,NL -1044062224,1044062239,BE -1044062240,1044062375,NL -1044062376,1044062383,BE -1044062384,1044062399,NL -1044062400,1044062415,BE -1044062416,1044062455,NL -1044062456,1044062471,BE -1044062472,1044062503,NL -1044062504,1044062527,BE -1044062528,1044062535,NL -1044062536,1044062543,BE -1044062544,1044062575,NL -1044062576,1044062583,BE -1044062584,1044062591,NL -1044062592,1044062599,BE -1044062600,1044062607,NL -1044062608,1044062623,BE -1044062624,1044062647,NL -1044062648,1044062655,BE -1044062656,1044062663,NL -1044062664,1044062671,BE -1044062672,1044063231,NL -1044063232,1044063355,BE -1044063356,1044063363,NL -1044063364,1044067327,BE -1044067328,1044068351,NL -1044068352,1044068991,BE -1044068992,1044069631,NL -1044069632,1044070399,BE -1044070400,1044076607,NL -1044076608,1044076799,BE -1044076800,1044077055,NL -1044077056,1044077567,BE -1044077568,1044092927,NL -1044092928,1044093183,BE -1044093184,1044094975,NL -1044094976,1044099071,BE -1044099072,1044103263,NL -1044103264,1044103423,BE -1044103424,1044103999,NL -1044104000,1044104031,BE -1044104032,1044104095,NL -1044104096,1044104159,BE -1044104160,1044104287,NL -1044104288,1044104319,BE -1044104320,1044104367,NL -1044104368,1044104383,BE -1044104384,1044104543,NL -1044104544,1044104559,BE -1044104560,1044104831,NL -1044104832,1044105023,BE -1044105024,1044105055,NL -1044105056,1044105087,BE -1044105088,1044105151,NL -1044105152,1044106771,BE +1044053464,1044053503,BE +1044053504,1044106239,NL +1044106240,1044106367,BE +1044106368,1044106495,NL +1044106496,1044106751,BE +1044106752,1044106755,NL +1044106756,1044106763,BE +1044106764,1044106767,NL +1044106768,1044106771,BE 1044106772,1044106775,NL 1044106776,1044106787,BE 1044106788,1044106795,NL 1044106796,1044106807,BE -1044106808,1044106815,NL -1044106816,1044107263,BE -1044107264,1044111359,NL -1044111360,1044115455,BE -1044115456,1044117503,NL -1044117504,1044117551,BE -1044117552,1044117567,NL -1044117568,1044118527,BE -1044118528,1044118783,NL -1044118784,1044118847,BE -1044118848,1044118895,NL -1044118896,1044118903,BE -1044118904,1044119551,NL +1044106808,1044117503,NL +1044117504,1044117543,BE +1044117544,1044117567,NL +1044117568,1044117847,BE +1044117848,1044117855,NL +1044117856,1044118527,BE +1044118528,1044119551,NL 1044119552,1044152319,GB 1044152320,1044185087,IR 1044185088,1044193279,RU @@ -23320,8 +22260,8 @@ 1044934160,1044934191,BE 1044934192,1044934199,GB 1044934200,1044934231,BE -1044934232,1044934247,GB -1044934248,1044934287,BE +1044934232,1044934255,GB +1044934256,1044934287,BE 1044934288,1044934295,GB 1044934296,1044934319,BE 1044934320,1044934327,GB @@ -23378,8 +22318,8 @@ 1044936352,1044936439,BE 1044936440,1044936455,GB 1044936456,1044936463,FR -1044936464,1044936495,BE -1044936496,1044936503,GB +1044936464,1044936487,BE +1044936488,1044936503,GB 1044936504,1044937183,BE 1044937184,1044937187,GB 1044937188,1044937287,BE @@ -23395,9 +22335,7 @@ 1044937552,1044937567,BE 1044937568,1044937583,GB 1044937584,1044937591,BE -1044937592,1044937599,GB -1044937600,1044937607,BE -1044937608,1044937639,GB +1044937592,1044937639,GB 1044937640,1044937679,BE 1044937680,1044937695,GB 1044937696,1044937703,BE @@ -23478,125 +22416,9 @@ 1045118976,1045119231,US 1045119232,1045119743,AL 1045119744,1045135359,GR -1045135360,1045138659,DE -1045138660,1045138660,CH -1045138661,1045138661,DE -1045138662,1045138662,IL -1045138663,1045141759,DE +1045135360,1045141759,DE 1045141760,1045142015,PL -1045142016,1045148613,DE -1045148614,1045148614,US -1045148615,1045148615,UA -1045148616,1045148617,DE -1045148618,1045148618,US -1045148619,1045148619,DE -1045148620,1045148620,US -1045148621,1045148625,DE -1045148626,1045148626,US -1045148627,1045148637,DE -1045148638,1045148638,US -1045148639,1045148653,DE -1045148654,1045148655,US -1045148656,1045148669,DE -1045148670,1045148670,US -1045148671,1045149315,DE -1045149316,1045149316,GR -1045149317,1045149317,PL -1045149318,1045149318,CZ -1045149319,1045149319,DE -1045149320,1045149320,GR -1045149321,1045149333,DE -1045149334,1045149335,PL -1045149336,1045149341,DE -1045149342,1045149342,RU -1045149343,1045149343,BD -1045149344,1045149344,PK -1045149345,1045149345,US -1045149346,1045149346,PL -1045149347,1045149347,DE -1045149348,1045149348,LT -1045149349,1045149351,DE -1045149352,1045149352,GB -1045149353,1045149353,DE -1045149354,1045149354,TR -1045149355,1045149355,US -1045149356,1045149358,DE -1045149359,1045149359,LT -1045149360,1045149361,DE -1045149362,1045149362,UA -1045149363,1045149364,DE -1045149365,1045149365,CZ -1045149366,1045149366,GR -1045149367,1045149367,BD -1045149368,1045149369,DE -1045149370,1045149371,PK -1045149372,1045149381,DE -1045149382,1045149382,CZ -1045149383,1045149383,NL -1045149384,1045149386,DE -1045149387,1045149387,CZ -1045149388,1045149389,DE -1045149390,1045149390,CZ -1045149391,1045149392,DE -1045149393,1045149394,LT -1045149395,1045149396,CZ -1045149397,1045149397,GR -1045149398,1045149398,IR -1045149399,1045149399,DE -1045149400,1045149410,CZ -1045149411,1045149413,DE -1045149414,1045149419,CZ -1045149420,1045154059,DE -1045154060,1045154060,IL -1045154061,1045154061,DE -1045154062,1045154062,BR -1045154063,1045154065,DE -1045154066,1045154068,BR -1045154069,1045154074,DE -1045154075,1045154083,BR -1045154084,1045154084,IL -1045154085,1045154086,IN -1045154087,1045154087,LT -1045154088,1045154097,CH -1045154098,1045154100,US -1045154101,1045154104,CH -1045154105,1045154106,UA -1045154107,1045154108,IL -1045154109,1045154109,NL -1045154110,1045154110,IL -1045154111,1045154115,DE -1045154116,1045154116,US -1045154117,1045154120,DE -1045154121,1045154121,US -1045154122,1045154123,DE -1045154124,1045154124,US -1045154125,1045154127,DE -1045154128,1045154128,US -1045154129,1045154129,DE -1045154130,1045154130,US -1045154131,1045154131,DE -1045154132,1045154132,IN -1045154133,1045154133,DE -1045154134,1045154135,US -1045154136,1045154140,DE -1045154141,1045154142,US -1045154143,1045154145,DE -1045154146,1045154147,US -1045154148,1045154148,DE -1045154149,1045154149,CZ -1045154150,1045154152,DE -1045154153,1045154153,NO -1045154154,1045154154,IN -1045154155,1045154155,US -1045154156,1045154158,IN -1045154159,1045154159,DE -1045154160,1045154160,US -1045154161,1045154161,UA -1045154162,1045154166,DE -1045154167,1045154170,US -1045154171,1045154171,DE -1045154172,1045154174,US -1045154175,1045154559,DE +1045142016,1045154559,DE 1045154560,1045154591,NL 1045154592,1045154687,DE 1045154688,1045154719,US @@ -23605,225 +22427,13 @@ 1045154784,1045154815,BR 1045154816,1045155071,DE 1045155072,1045155327,CH -1045155328,1045158148,DE -1045158149,1045158149,US -1045158150,1045158158,DE -1045158159,1045158159,US -1045158160,1045158161,DE -1045158162,1045158162,US -1045158163,1045158163,IL -1045158164,1045158168,DE -1045158169,1045158169,IL -1045158170,1045158171,IE -1045158172,1045158172,IL -1045158173,1045158174,IE -1045158175,1045158180,DE -1045158181,1045158182,TR -1045158183,1045158184,DE -1045158185,1045158188,TR -1045158189,1045158189,DE -1045158190,1045158191,US -1045158192,1045158192,DE -1045158193,1045158193,US -1045158194,1045158200,UA -1045158201,1045158201,LV -1045158202,1045158204,US -1045158205,1045158275,DE -1045158276,1045158276,SG -1045158277,1045158277,US -1045158278,1045158278,IL -1045158279,1045158279,UA -1045158280,1045158280,IL -1045158281,1045158281,DE -1045158282,1045158284,IL -1045158285,1045158285,MA -1045158286,1045158286,DE -1045158287,1045158288,IN -1045158289,1045158291,DE -1045158292,1045158293,CH -1045158294,1045158294,DE -1045158295,1045158299,IL -1045158300,1045158300,NL -1045158301,1045158301,DE -1045158302,1045158302,IN -1045158303,1045158303,DE -1045158304,1045158304,FI -1045158305,1045158332,GB -1045158333,1045158333,DE -1045158334,1045158334,GB -1045158335,1045159684,DE -1045159685,1045159685,GR -1045159686,1045159686,UA -1045159687,1045159687,KR -1045159688,1045159691,DE -1045159692,1045159692,RU -1045159693,1045159694,DE -1045159695,1045159695,CH -1045159696,1045159698,DE -1045159699,1045159699,LK -1045159700,1045159702,DE -1045159703,1045159703,GT -1045159704,1045159706,DE -1045159707,1045159707,DK -1045159708,1045159708,SG -1045159709,1045159709,RU -1045159710,1045159710,BR -1045159711,1045159711,SG -1045159712,1045159722,DE -1045159723,1045159723,UA -1045159724,1045159724,IT -1045159725,1045159727,DE -1045159728,1045159730,GR -1045159731,1045159731,AT -1045159732,1045159734,DE -1045159735,1045159735,BR -1045159736,1045159736,MD -1045159737,1045159737,DE -1045159738,1045159739,SA -1045159740,1045159740,DE -1045159741,1045159741,CZ -1045159742,1045159747,DE -1045159748,1045159748,IN -1045159749,1045159752,DE -1045159753,1045159753,IN -1045159754,1045159754,US -1045159755,1045159764,DE -1045159765,1045159765,IN -1045159766,1045159766,HK -1045159767,1045159769,DE -1045159770,1045159771,IN -1045159772,1045159773,DE -1045159774,1045159774,IN -1045159775,1045159784,DE -1045159785,1045159785,IN -1045159786,1045159788,SG -1045159789,1045159795,DE -1045159796,1045159796,IN -1045159797,1045159817,DE -1045159818,1045159818,US -1045159819,1045159820,DE -1045159821,1045159822,US -1045159823,1045159850,DE -1045159851,1045159851,NO -1045159852,1045159856,DE -1045159857,1045159857,US -1045159858,1045159859,DE -1045159860,1045159865,US -1045159866,1045159866,DE -1045159867,1045159867,US -1045159868,1045159876,DE -1045159877,1045159877,US -1045159878,1045159878,IN -1045159879,1045159881,US -1045159882,1045159883,DE -1045159884,1045159884,US -1045159885,1045159885,DE -1045159886,1045159886,US -1045159887,1045159887,DE -1045159888,1045159888,US -1045159889,1045159890,DE -1045159891,1045159892,US -1045159893,1045159893,FI -1045159894,1045159897,US -1045159898,1045159898,DE -1045159899,1045159900,US -1045159901,1045159901,DE -1045159902,1045159902,US -1045159903,1045159908,DE -1045159909,1045159909,AT -1045159910,1045159910,US -1045159911,1045159911,TR -1045159912,1045159914,US -1045159915,1045159920,TR -1045159921,1045159921,DE -1045159922,1045159922,IN -1045159923,1045159923,CA -1045159924,1045159925,IN -1045159926,1045159926,DE -1045159927,1045159931,TR -1045159932,1045159932,DE -1045159933,1045159933,TR -1045159934,1045160959,DE +1045155328,1045160959,DE 1045160960,1045160991,TR -1045160992,1045161023,DE -1045161024,1045161055,AT +1045160992,1045161055,DE 1045161056,1045161087,US 1045161088,1045161119,DE 1045161120,1045161151,NL -1045161152,1045162143,DE -1045162144,1045162144,HR -1045162145,1045162165,DE -1045162166,1045162166,LT -1045162167,1045162167,BR -1045162168,1045162171,DE -1045162172,1045162172,TR -1045162173,1045162173,MD -1045162174,1045162687,DE -1045162688,1045162688,PK -1045162689,1045162689,CA -1045162690,1045162700,DE -1045162701,1045162703,CA -1045162704,1045167876,DE -1045167877,1045167877,TR -1045167878,1045167878,DE -1045167879,1045167879,TW -1045167880,1045167880,DE -1045167881,1045167881,PT -1045167882,1045167882,DE -1045167883,1045167883,AR -1045167884,1045167884,BD -1045167885,1045167886,DE -1045167887,1045167887,TR -1045167888,1045167895,DE -1045167896,1045167896,RU -1045167897,1045167897,PT -1045167898,1045167901,DE -1045167902,1045167902,HR -1045167903,1045167903,RU -1045167904,1045167904,US -1045167905,1045167907,PK -1045167908,1045167908,DE -1045167909,1045167909,IT -1045167910,1045167911,DE -1045167912,1045167917,TR -1045167918,1045167918,DE -1045167919,1045167922,UA -1045167923,1045167923,DE -1045167924,1045167924,TW -1045167925,1045167925,TR -1045167926,1045167933,DE -1045167934,1045167934,MD -1045167935,1045168003,DE -1045168004,1045168004,US -1045168005,1045168011,DE -1045168012,1045168013,US -1045168014,1045168014,DE -1045168015,1045168021,US -1045168022,1045168024,DE -1045168025,1045168045,US -1045168046,1045168046,DE -1045168047,1045168052,US -1045168053,1045168054,RU -1045168055,1045168055,US -1045168056,1045168057,DE -1045168058,1045168058,SG -1045168059,1045168059,CZ -1045168060,1045168074,DE -1045168075,1045168075,IL -1045168076,1045168076,IN -1045168077,1045168077,DE -1045168078,1045168079,IN -1045168080,1045168080,DE -1045168081,1045168086,IN -1045168087,1045168087,DE -1045168088,1045168099,IN -1045168100,1045168116,DE -1045168117,1045168117,LT -1045168118,1045168123,DE -1045168124,1045168124,US -1045168125,1045168125,DE -1045168126,1045168126,TR -1045168127,1045168127,DE +1045161152,1045168127,DE 1045168128,1045233663,RU 1045233664,1045241855,GB 1045241856,1045250047,IT @@ -23921,8 +22531,8 @@ 1045744672,1045745407,GB 1045745408,1045745695,SE 1045745696,1045745759,GB -1045745760,1045745768,SE -1045745769,1045745791,GB +1045745760,1045745767,SE +1045745768,1045745791,GB 1045745792,1045745855,SE 1045745856,1045745919,GB 1045745920,1045745951,SE @@ -23940,9 +22550,7 @@ 1045747840,1045747855,SE 1045747856,1045747919,GB 1045747920,1045747935,SE -1045747936,1045747967,GB -1045747968,1045748223,SE -1045748224,1045748319,GB +1045747936,1045748319,GB 1045748320,1045748351,SE 1045748352,1045748463,GB 1045748464,1045748471,SE @@ -24116,7 +22724,9 @@ 1046483232,1046483471,GB 1046483472,1046483583,DE 1046483584,1046483967,GB -1046483968,1046484255,DE +1046483968,1046484191,DE +1046484192,1046484223,GB +1046484224,1046484255,DE 1046484256,1046484287,GB 1046484288,1046484351,DE 1046484352,1046484479,GB @@ -24136,7 +22746,9 @@ 1046486376,1046486383,GB 1046486384,1046491223,DE 1046491224,1046491231,GB -1046491232,1046491391,DE +1046491232,1046491319,DE +1046491320,1046491327,GB +1046491328,1046491391,DE 1046491392,1046491399,GB 1046491400,1046491423,DE 1046491424,1046491431,GB @@ -24216,7 +22828,9 @@ 1046495880,1046495895,GB 1046495896,1046495999,DE 1046496000,1046496047,GB -1046496048,1046496127,DE +1046496048,1046496055,DE +1046496056,1046496063,GB +1046496064,1046496127,DE 1046496128,1046496135,GB 1046496136,1046496191,DE 1046496192,1046496215,GB @@ -24307,7 +22921,9 @@ 1046511616,1046516287,DE 1046516288,1046516735,GB 1046516736,1046516751,DE -1046516752,1046516991,GB +1046516752,1046516767,GB +1046516768,1046516775,DE +1046516776,1046516991,GB 1046516992,1046517031,DE 1046517032,1046517039,GB 1046517040,1046517087,DE @@ -24365,7 +22981,9 @@ 1046531840,1046532095,DE 1046532096,1046534015,GB 1046534016,1046534047,DE -1046534048,1046534655,GB +1046534048,1046534079,GB +1046534080,1046534143,DE +1046534144,1046534655,GB 1046534656,1046534743,DE 1046534744,1046534847,GB 1046534848,1046534895,DE @@ -24400,9 +23018,7 @@ 1046536668,1046536959,GB 1046536960,1046537023,DE 1046537024,1046537055,GB -1046537056,1046537071,DE -1046537072,1046537087,GB -1046537088,1046537151,DE +1046537056,1046537151,DE 1046537152,1046537215,GB 1046537216,1046537727,DE 1046537728,1046537983,GB @@ -24420,10 +23036,8 @@ 1046541568,1046541631,GB 1046541632,1046541695,DE 1046541696,1046541727,GB -1046541728,1046541759,DE -1046541760,1046541767,GB -1046541768,1046541775,DE -1046541776,1046541807,GB +1046541728,1046541783,DE +1046541784,1046541807,GB 1046541808,1046543103,DE 1046543104,1046543263,GB 1046543264,1046543295,DE @@ -24780,7 +23394,8 @@ 1047740416,1047740431,US 1047740432,1047740447,DE 1047740448,1047740463,IT -1047740464,1047740543,SE +1047740464,1047740479,EU +1047740480,1047740543,SE 1047740544,1047740671,DE 1047740672,1047740927,A2 1047740928,1047781679,EU @@ -24799,8 +23414,8 @@ 1047782832,1047782847,EU 1047782848,1047782911,SE 1047782912,1047785471,EU -1047785472,1047788031,DE -1047788032,1047788287,SE +1047785472,1047787007,DE +1047787008,1047788287,EU 1047788288,1047788543,NL 1047788544,1047789055,GB 1047789056,1047789311,AT @@ -24843,7 +23458,6 @@ 1048182784,1048184831,UA 1048184832,1048186879,FR 1048186880,1048188927,LV -1048188928,1048190975,BE 1048190976,1048193023,UA 1048193024,1048195071,RO 1048195072,1048197119,RU @@ -24875,8 +23489,8 @@ 1048592384,1048600575,IT 1048600576,1048601599,UA 1048601600,1048602111,RU -1048602112,1048602223,PL -1048602224,1048604671,UA +1048602112,1048602247,PL +1048602248,1048604671,UA 1048604672,1048604687,EE 1048604688,1048604751,UA 1048604752,1048604759,EE @@ -24892,8 +23506,8 @@ 1048605104,1048605119,LT 1048605120,1048605695,UA 1048605696,1048606719,EE -1048606720,1048607231,UA -1048607232,1048607503,EE +1048606720,1048606975,UA +1048606976,1048607503,EE 1048607504,1048607743,UA 1048607744,1048607759,EE 1048607760,1048607775,UA @@ -24994,7 +23608,11 @@ 1048847424,1048847431,DE 1048847432,1048847455,NL 1048847456,1048847463,DE -1048847464,1048847807,NL +1048847464,1048847623,NL +1048847624,1048847631,DE +1048847632,1048847735,NL +1048847736,1048847743,DE +1048847744,1048847807,NL 1048847808,1048847815,DE 1048847816,1048847847,NL 1048847848,1048847855,DE @@ -25012,7 +23630,9 @@ 1048848440,1048848447,DE 1048848448,1048848479,NL 1048848480,1048848487,DE -1048848488,1048848551,NL +1048848488,1048848511,NL +1048848512,1048848519,DE +1048848520,1048848551,NL 1048848552,1048848559,DE 1048848560,1048848591,NL 1048848592,1048848599,DE @@ -25030,7 +23650,11 @@ 1048849560,1048849567,DE 1048849568,1048849599,NL 1048849600,1048849607,DE -1048849608,1048849863,NL +1048849608,1048849783,NL +1048849784,1048849791,DE +1048849792,1048849839,NL +1048849840,1048849847,DE +1048849848,1048849863,NL 1048849864,1048849871,DE 1048849872,1048849895,NL 1048849896,1048849903,DE @@ -25040,7 +23664,9 @@ 1048850064,1048850071,DE 1048850072,1048850151,NL 1048850152,1048850159,DE -1048850160,1048850711,NL +1048850160,1048850263,NL +1048850264,1048850271,DE +1048850272,1048850711,NL 1048850712,1048850719,DE 1048850720,1048850959,NL 1048850960,1048850967,DE @@ -25052,13 +23678,19 @@ 1048851152,1048851159,DE 1048851160,1048851223,NL 1048851224,1048851231,DE -1048851232,1048851471,NL +1048851232,1048851351,NL +1048851352,1048851359,DE +1048851360,1048851391,NL +1048851392,1048851399,DE +1048851400,1048851471,NL 1048851472,1048851479,DE -1048851480,1048851503,NL -1048851504,1048851511,DE +1048851480,1048851495,NL +1048851496,1048851511,DE 1048851512,1048851591,NL 1048851592,1048851607,DE -1048851608,1048851655,NL +1048851608,1048851623,NL +1048851624,1048851631,DE +1048851632,1048851655,NL 1048851656,1048851663,DE 1048851664,1048851679,NL 1048851680,1048851687,DE @@ -25078,9 +23710,17 @@ 1048852648,1048852655,DE 1048852656,1048852783,NL 1048852784,1048852799,DE -1048852800,1048852871,NL +1048852800,1048852823,NL +1048852824,1048852831,DE +1048852832,1048852871,NL 1048852872,1048852879,DE -1048852880,1048853031,NL +1048852880,1048852887,NL +1048852888,1048852895,DE +1048852896,1048852943,NL +1048852944,1048852951,DE +1048852952,1048852999,NL +1048853000,1048853007,DE +1048853008,1048853031,NL 1048853032,1048853039,DE 1048853040,1048853127,NL 1048853128,1048853135,DE @@ -25100,9 +23740,13 @@ 1048853808,1048853815,DE 1048853816,1048853863,NL 1048853864,1048853871,DE -1048853872,1048854055,NL +1048853872,1048853951,NL +1048853952,1048853959,DE +1048853960,1048854055,NL 1048854056,1048854063,DE -1048854064,1048854391,NL +1048854064,1048854303,NL +1048854304,1048854311,DE +1048854312,1048854391,NL 1048854392,1048854407,DE 1048854408,1048854527,NL 1048854528,1048855039,DE @@ -25120,7 +23764,9 @@ 1048855328,1048855335,DE 1048855336,1048855487,NL 1048855488,1048855495,DE -1048855496,1048855687,NL +1048855496,1048855583,NL +1048855584,1048855591,DE +1048855592,1048855687,NL 1048855688,1048855695,DE 1048855696,1048855703,NL 1048855704,1048855711,DE @@ -25138,7 +23784,9 @@ 1048856136,1048856151,DE 1048856152,1048856183,NL 1048856184,1048856191,DE -1048856192,1048856359,NL +1048856192,1048856271,NL +1048856272,1048856279,DE +1048856280,1048856359,NL 1048856360,1048856367,DE 1048856368,1048856375,NL 1048856376,1048856383,DE @@ -25154,7 +23802,9 @@ 1048856840,1048856847,DE 1048856848,1048856919,NL 1048856920,1048856927,DE -1048856928,1048856991,NL +1048856928,1048856967,NL +1048856968,1048856975,DE +1048856976,1048856991,NL 1048856992,1048857007,DE 1048857008,1048857207,NL 1048857208,1048857215,DE @@ -25164,7 +23814,9 @@ 1048857344,1048857351,DE 1048857352,1048857543,NL 1048857544,1048857551,DE -1048857552,1048857735,NL +1048857552,1048857695,NL +1048857696,1048857703,DE +1048857704,1048857735,NL 1048857736,1048857743,DE 1048857744,1048857767,NL 1048857768,1048857775,DE @@ -25180,7 +23832,9 @@ 1048858704,1048858711,DE 1048858712,1048858783,NL 1048858784,1048858791,DE -1048858792,1048858823,NL +1048858792,1048858799,NL +1048858800,1048858807,DE +1048858808,1048858823,NL 1048858824,1048858831,DE 1048858832,1048858855,NL 1048858856,1048858863,DE @@ -25188,17 +23842,21 @@ 1048858968,1048858975,DE 1048858976,1048859095,NL 1048859096,1048859103,DE -1048859104,1048859495,NL +1048859104,1048859455,NL +1048859456,1048859463,DE +1048859464,1048859495,NL 1048859496,1048859503,DE 1048859504,1048859519,NL 1048859520,1048859527,DE 1048859528,1048859727,NL 1048859728,1048859735,DE 1048859736,1048859903,NL -1048859904,1048859911,DE -1048859912,1048860311,NL +1048859904,1048859919,DE +1048859920,1048860311,NL 1048860312,1048860327,DE -1048860328,1048860407,NL +1048860328,1048860367,NL +1048860368,1048860375,DE +1048860376,1048860407,NL 1048860408,1048860415,DE 1048860416,1048860455,NL 1048860456,1048860463,DE @@ -25206,7 +23864,9 @@ 1048860488,1048860495,DE 1048860496,1048860511,NL 1048860512,1048860519,DE -1048860520,1048860607,NL +1048860520,1048860591,NL +1048860592,1048860599,DE +1048860600,1048860607,NL 1048860608,1048860615,DE 1048860616,1048860703,NL 1048860704,1048860711,DE @@ -25214,7 +23874,9 @@ 1048860800,1048860807,DE 1048860808,1048860975,NL 1048860976,1048860983,DE -1048860984,1048861031,NL +1048860984,1048860991,NL +1048860992,1048860999,DE +1048861000,1048861031,NL 1048861032,1048861039,DE 1048861040,1048861127,NL 1048861128,1048861135,DE @@ -25232,7 +23894,9 @@ 1048861768,1048861775,DE 1048861776,1048861839,NL 1048861840,1048861847,DE -1048861848,1048862031,NL +1048861848,1048861871,NL +1048861872,1048861879,DE +1048861880,1048862031,NL 1048862032,1048862039,DE 1048862040,1048862247,NL 1048862248,1048862255,DE @@ -25246,7 +23910,9 @@ 1048862392,1048862399,DE 1048862400,1048862423,NL 1048862424,1048862431,DE -1048862432,1048862511,NL +1048862432,1048862479,NL +1048862480,1048862487,DE +1048862488,1048862511,NL 1048862512,1048862519,DE 1048862520,1048862623,NL 1048862624,1048862639,DE @@ -25258,7 +23924,9 @@ 1048862712,1048862719,DE 1048862720,1048862919,NL 1048862920,1048862927,DE -1048862928,1048862951,NL +1048862928,1048862935,NL +1048862936,1048862943,DE +1048862944,1048862951,NL 1048862952,1048862959,DE 1048862960,1048863055,NL 1048863056,1048863063,DE @@ -25278,7 +23946,9 @@ 1048863376,1048863383,DE 1048863384,1048863391,NL 1048863392,1048863399,DE -1048863400,1048863575,NL +1048863400,1048863487,NL +1048863488,1048863495,DE +1048863496,1048863575,NL 1048863576,1048863591,DE 1048863592,1048863599,NL 1048863600,1048863607,DE @@ -25334,7 +24004,9 @@ 1048867032,1048867039,DE 1048867040,1048867207,NL 1048867208,1048867215,DE -1048867216,1048867295,NL +1048867216,1048867271,NL +1048867272,1048867279,DE +1048867280,1048867295,NL 1048867296,1048867303,DE 1048867304,1048867327,NL 1048867328,1048868351,DE @@ -25762,7 +24434,9 @@ 1048891912,1048891919,DE 1048891920,1048892087,NL 1048892088,1048892095,DE -1048892096,1048892183,NL +1048892096,1048892151,NL +1048892152,1048892159,DE +1048892160,1048892183,NL 1048892184,1048892199,DE 1048892200,1048892239,NL 1048892240,1048892247,DE @@ -26111,7 +24785,9 @@ 1048986880,1048987135,DE 1048987136,1048991743,EU 1048991744,1048991747,DE -1048991748,1049001983,EU +1048991748,1048991775,EU +1048991776,1048991806,DE +1048991807,1049001983,EU 1049001984,1049002015,DE 1049002016,1049002111,EU 1049002112,1049002239,DE @@ -26150,23 +24826,23 @@ 1049017984,1049018047,GE 1049018048,1049018367,DE 1049018368,1049018623,EU -1049018624,1049020127,DE -1049020128,1049020135,FR -1049020136,1049021343,DE +1049018624,1049021343,DE 1049021344,1049021375,US 1049021376,1049026559,DE 1049026560,1049026815,EU 1049026816,1049031999,DE 1049032000,1049032031,EU -1049032032,1049032159,DE -1049032160,1049032167,EU -1049032168,1049032175,DE +1049032032,1049032175,DE 1049032176,1049032191,EU 1049032192,1049034751,DE 1049034752,1049067519,EG 1049067520,1049100287,DK 1049100288,1049231359,GB -1049231360,1049296895,DE +1049231360,1049261223,DE +1049261224,1049261231,AT +1049261232,1049261511,DE +1049261512,1049261519,AT +1049261520,1049296895,DE 1049296896,1049362431,EG 1049362432,1049362623,DE 1049362624,1049362687,GB @@ -26321,10 +24997,16 @@ 1049770112,1049770127,AE 1049770128,1049770751,DE 1049770752,1049771007,CH -1049771008,1049772895,DE +1049771008,1049771391,DE +1049771392,1049771519,LI +1049771520,1049771647,DE +1049771648,1049771775,LI +1049771776,1049772895,DE 1049772896,1049772927,AE 1049772928,1049773055,ES -1049773056,1049774367,DE +1049773056,1049773439,DE +1049773440,1049773567,LI +1049773568,1049774367,DE 1049774368,1049774399,IT 1049774400,1049775103,DE 1049775104,1049775119,CH @@ -26352,9 +25034,19 @@ 1049783072,1049783103,DK 1049783104,1049783743,DE 1049783744,1049783759,AE -1049783760,1049784999,DE +1049783760,1049784063,DE +1049784064,1049784319,LI +1049784320,1049784575,DE +1049784576,1049784831,LI +1049784832,1049784999,DE 1049785000,1049785007,AT -1049785008,1049794559,DE +1049785008,1049785087,DE +1049785088,1049785343,LI +1049785344,1049785855,DE +1049785856,1049785983,LI +1049785984,1049787135,DE +1049787136,1049787391,LI +1049787392,1049794559,DE 1049794560,1049795583,CH 1049795584,1049811455,DE 1049811456,1049811711,PL @@ -26424,19 +25116,13 @@ 1050672488,1050673151,DE 1050673152,1050684095,FR 1050684096,1050684103,GB -1050684104,1050684609,FR -1050684610,1050684610,LU -1050684611,1050702623,FR +1050684104,1050702623,FR 1050702624,1050702631,DE -1050702632,1050704661,FR -1050704662,1050704662,GB -1050704663,1050725463,FR +1050702632,1050725463,FR 1050725464,1050725471,GB 1050725472,1050726335,FR 1050726336,1050726343,DE -1050726344,1050731146,FR -1050731147,1050731147,GB -1050731148,1050768551,FR +1050726344,1050768551,FR 1050768552,1050768558,CH 1050768559,1050804223,FR 1050804224,1050869759,MK @@ -26455,101 +25141,26 @@ 1051017216,1051033599,NL 1051033600,1051049983,FI 1051049984,1051066367,HU -1051066368,1051082751,BE -1051082752,1051084287,NL -1051084288,1051084799,BE -1051084800,1051096831,NL -1051096832,1051097087,BE -1051097088,1051098111,NL -1051098112,1051099135,BE -1051099136,1051099647,NL -1051099648,1051099663,BE -1051099664,1051099671,NL -1051099672,1051099687,BE -1051099688,1051099695,NL -1051099696,1051099711,BE -1051099712,1051099727,NL -1051099728,1051099775,BE -1051099776,1051099791,NL -1051099792,1051099815,BE -1051099816,1051099823,NL -1051099824,1051099855,BE -1051099856,1051099863,NL -1051099864,1051099879,BE -1051099880,1051099887,NL -1051099888,1051099927,BE -1051099928,1051099959,NL -1051099960,1051099975,BE -1051099976,1051099983,NL -1051099984,1051100015,BE -1051100016,1051100023,NL -1051100024,1051100079,BE -1051100080,1051100095,NL -1051100096,1051100151,BE -1051100152,1051100159,NL -1051100160,1051100455,BE -1051100456,1051100463,NL -1051100464,1051100487,BE -1051100488,1051100499,NL -1051100500,1051100591,BE -1051100592,1051100607,NL -1051100608,1051100631,BE -1051100632,1051100663,NL -1051100664,1051100695,BE -1051100696,1051100703,NL -1051100704,1051100711,BE -1051100712,1051100735,NL -1051100736,1051100831,BE -1051100832,1051100839,NL -1051100840,1051100879,BE -1051100880,1051100911,NL -1051100912,1051100951,BE -1051100952,1051100967,NL -1051100968,1051101047,BE -1051101048,1051101055,NL -1051101056,1051101127,BE -1051101128,1051101151,NL -1051101152,1051101207,BE -1051101208,1051101231,NL -1051101232,1051101247,BE -1051101248,1051101279,NL -1051101280,1051101287,BE -1051101288,1051101407,NL -1051101408,1051101415,BE -1051101416,1051101431,NL -1051101432,1051101447,BE -1051101448,1051101463,NL -1051101464,1051101471,BE -1051101472,1051101591,NL -1051101592,1051101607,BE -1051101608,1051101615,NL -1051101616,1051101623,BE -1051101624,1051101631,NL -1051101632,1051101655,BE -1051101656,1051101671,NL -1051101672,1051101687,BE -1051101688,1051101719,NL -1051101720,1051101735,BE -1051101736,1051101783,NL -1051101784,1051101807,BE -1051101808,1051101823,NL -1051101824,1051101855,BE -1051101856,1051101919,NL -1051101920,1051101927,BE -1051101928,1051101959,NL -1051101960,1051101967,BE -1051101968,1051101983,NL -1051101984,1051102007,BE -1051102008,1051102055,NL -1051102056,1051102071,BE -1051102072,1051102079,NL -1051102080,1051102087,BE -1051102088,1051102095,NL -1051102096,1051102103,BE -1051102104,1051102119,NL -1051102120,1051102159,BE -1051102160,1051102207,NL -1051102208,1051102879,BE +1051066368,1051084287,NL +1051084288,1051084415,BE +1051084416,1051084423,NL +1051084424,1051084655,BE +1051084656,1051084663,NL +1051084664,1051084711,BE +1051084712,1051084719,NL +1051084720,1051084727,BE +1051084728,1051084735,NL +1051084736,1051084799,BE +1051084800,1051102207,NL +1051102208,1051102463,BE +1051102464,1051102471,NL +1051102472,1051102527,BE +1051102528,1051102535,NL +1051102536,1051102559,BE +1051102560,1051102567,NL +1051102568,1051102687,BE +1051102688,1051102703,NL +1051102704,1051102879,BE 1051102880,1051102887,NL 1051102888,1051103007,BE 1051103008,1051103015,NL @@ -26558,245 +25169,7 @@ 1051103120,1051103207,BE 1051103208,1051103215,NL 1051103216,1051103231,BE -1051103232,1051103233,NL -1051103234,1051103247,BE -1051103248,1051103287,NL -1051103288,1051103295,BE -1051103296,1051103359,NL -1051103360,1051103367,BE -1051103368,1051103431,NL -1051103432,1051103447,BE -1051103448,1051103487,NL -1051103488,1051103495,BE -1051103496,1051103503,NL -1051103504,1051103519,BE -1051103520,1051103527,NL -1051103528,1051103535,BE -1051103536,1051103543,NL -1051103544,1051103567,BE -1051103568,1051103583,NL -1051103584,1051103607,BE -1051103608,1051103639,NL -1051103640,1051103647,BE -1051103648,1051103663,NL -1051103664,1051103679,BE -1051103680,1051103687,NL -1051103688,1051103703,BE -1051103704,1051103767,NL -1051103768,1051103775,BE -1051103776,1051103799,NL -1051103800,1051103815,BE -1051103816,1051103823,NL -1051103824,1051103831,BE -1051103832,1051103863,NL -1051103864,1051103871,BE -1051103872,1051103879,NL -1051103880,1051103887,BE -1051103888,1051103911,NL -1051103912,1051103927,BE -1051103928,1051103959,NL -1051103960,1051103975,BE -1051103976,1051103991,NL -1051103992,1051103999,BE -1051104000,1051104015,NL -1051104016,1051104039,BE -1051104040,1051104071,NL -1051104072,1051104079,BE -1051104080,1051104111,NL -1051104112,1051104143,BE -1051104144,1051104167,NL -1051104168,1051104183,BE -1051104184,1051104191,NL -1051104192,1051104199,BE -1051104200,1051104231,NL -1051104232,1051104255,BE -1051104256,1051104311,NL -1051104312,1051104319,BE -1051104320,1051104327,NL -1051104328,1051104335,BE -1051104336,1051104351,NL -1051104352,1051104367,BE -1051104368,1051104383,NL -1051104384,1051104399,BE -1051104400,1051104503,NL -1051104504,1051104527,BE -1051104528,1051104559,NL -1051104560,1051104567,BE -1051104568,1051104583,NL -1051104584,1051104599,BE -1051104600,1051104607,NL -1051104608,1051104631,BE -1051104632,1051104679,NL -1051104680,1051104695,BE -1051104696,1051104719,NL -1051104720,1051104727,BE -1051104728,1051104751,NL -1051104752,1051104759,BE -1051104760,1051104791,NL -1051104792,1051104799,BE -1051104800,1051104823,NL -1051104824,1051104831,BE -1051104832,1051104839,NL -1051104840,1051104863,BE -1051104864,1051104903,NL -1051104904,1051104911,BE -1051104912,1051104935,NL -1051104936,1051104943,BE -1051104944,1051104951,NL -1051104952,1051104967,BE -1051104968,1051104975,NL -1051104976,1051104983,BE -1051104984,1051104991,NL -1051104992,1051104999,BE -1051105000,1051105047,NL -1051105048,1051105055,BE -1051105056,1051105063,NL -1051105064,1051105079,BE -1051105080,1051105103,NL -1051105104,1051105119,BE -1051105120,1051105127,NL -1051105128,1051105135,BE -1051105136,1051105143,NL -1051105144,1051105151,BE -1051105152,1051105183,NL -1051105184,1051105199,BE -1051105200,1051105207,NL -1051105208,1051105223,BE -1051105224,1051105255,NL -1051105256,1051105263,BE -1051105264,1051105271,NL -1051105272,1051105279,BE -1051105280,1051105319,NL -1051105320,1051105327,BE -1051105328,1051105359,NL -1051105360,1051105383,BE -1051105384,1051105439,NL -1051105440,1051105455,BE -1051105456,1051105503,NL -1051105504,1051105511,BE -1051105512,1051105519,NL -1051105520,1051105551,BE -1051105552,1051105599,NL -1051105600,1051105607,BE -1051105608,1051105703,NL -1051105704,1051105711,BE -1051105712,1051105791,NL -1051105792,1051105799,BE -1051105800,1051105807,NL -1051105808,1051105815,BE -1051105816,1051105831,NL -1051105832,1051105839,BE -1051105840,1051105863,NL -1051105864,1051105871,BE -1051105872,1051105895,NL -1051105896,1051105903,BE -1051105904,1051105911,NL -1051105912,1051105943,BE -1051105944,1051105967,NL -1051105968,1051105983,BE -1051105984,1051105999,NL -1051106000,1051106023,BE -1051106024,1051106031,NL -1051106032,1051106039,BE -1051106040,1051106047,NL -1051106048,1051106055,BE -1051106056,1051106071,NL -1051106072,1051106079,BE -1051106080,1051106087,NL -1051106088,1051106103,BE -1051106104,1051106111,NL -1051106112,1051106119,BE -1051106120,1051106127,NL -1051106128,1051106143,BE -1051106144,1051106167,NL -1051106168,1051106175,BE -1051106176,1051106183,NL -1051106184,1051106191,BE -1051106192,1051106247,NL -1051106248,1051106271,BE -1051106272,1051106303,NL -1051106304,1051106311,BE -1051106312,1051106319,NL -1051106320,1051106327,BE -1051106328,1051106335,NL -1051106336,1051106351,BE -1051106352,1051106383,NL -1051106384,1051106399,BE -1051106400,1051106423,NL -1051106424,1051106431,BE -1051106432,1051106463,NL -1051106464,1051106471,BE -1051106472,1051106503,NL -1051106504,1051106519,BE -1051106520,1051106527,NL -1051106528,1051106535,BE -1051106536,1051106543,NL -1051106544,1051106551,BE -1051106552,1051106583,NL -1051106584,1051106599,BE -1051106600,1051106607,NL -1051106608,1051106615,BE -1051106616,1051106639,NL -1051106640,1051106655,BE -1051106656,1051106663,NL -1051106664,1051106671,BE -1051106672,1051106711,NL -1051106712,1051106719,BE -1051106720,1051106759,NL -1051106760,1051106767,BE -1051106768,1051106775,NL -1051106776,1051106783,BE -1051106784,1051106799,NL -1051106800,1051106807,BE -1051106808,1051106823,NL -1051106824,1051106831,BE -1051106832,1051106847,NL -1051106848,1051106863,BE -1051106864,1051106895,NL -1051106896,1051106911,BE -1051106912,1051106927,NL -1051106928,1051106935,BE -1051106936,1051106943,NL -1051106944,1051106951,BE -1051106952,1051106959,NL -1051106960,1051106967,BE -1051106968,1051106975,NL -1051106976,1051107007,BE -1051107008,1051107015,NL -1051107016,1051107039,BE -1051107040,1051107055,NL -1051107056,1051107063,BE -1051107064,1051107071,NL -1051107072,1051107095,BE -1051107096,1051107103,NL -1051107104,1051107119,BE -1051107120,1051107127,NL -1051107128,1051107135,BE -1051107136,1051107143,NL -1051107144,1051107167,BE -1051107168,1051107183,NL -1051107184,1051107215,BE -1051107216,1051107223,NL -1051107224,1051107231,BE -1051107232,1051107239,NL -1051107240,1051107247,BE -1051107248,1051107279,NL -1051107280,1051107287,BE -1051107288,1051107295,NL -1051107296,1051107303,BE -1051107304,1051107311,NL -1051107312,1051107327,BE -1051107328,1051107329,NL -1051107330,1051107359,BE -1051107360,1051107375,NL -1051107376,1051107383,BE -1051107384,1051107391,NL -1051107392,1051107407,BE -1051107408,1051107423,NL -1051107424,1051107455,BE -1051107456,1051107519,NL -1051107520,1051107839,BE -1051107840,1051115519,NL +1051103232,1051115519,NL 1051115520,1051121287,BE 1051121288,1051121295,NL 1051121296,1051123711,BE @@ -26811,7 +25184,21 @@ 1051124816,1051124895,NL 1051124896,1051124911,BE 1051124912,1051125247,NL -1051125248,1051125759,BE +1051125248,1051125263,BE +1051125264,1051125279,NL +1051125280,1051125327,BE +1051125328,1051125335,NL +1051125336,1051125343,BE +1051125344,1051125351,NL +1051125352,1051125375,BE +1051125376,1051125391,NL +1051125392,1051125399,BE +1051125400,1051125407,NL +1051125408,1051125575,BE +1051125576,1051125583,NL +1051125584,1051125639,BE +1051125640,1051125655,NL +1051125656,1051125759,BE 1051125760,1051131903,NL 1051131904,1051197439,CH 1051197440,1051213823,CZ @@ -27991,9 +26378,7 @@ 1052712960,1052770303,GB 1052770304,1052772991,CH 1052772992,1052773119,ES -1052773120,1052775711,CH -1052775712,1052775727,DE -1052775728,1052778495,CH +1052773120,1052778495,CH 1052778496,1052786687,RU 1052786688,1052789759,GR 1052789760,1052803071,NL @@ -28216,7 +26601,9 @@ 1053340416,1053340479,EU 1053340480,1053340511,NL 1053340512,1053340671,EU -1053340672,1053341567,GB +1053340672,1053340807,GB +1053340808,1053340815,EU +1053340816,1053341567,GB 1053341568,1053341575,EU 1053341576,1053341647,GB 1053341648,1053341655,EU @@ -28257,8 +26644,10 @@ 1053353224,1053353247,IE 1053353248,1053353263,EU 1053353264,1053353279,IE -1053353280,1053353327,GB -1053353328,1053353983,EU +1053353280,1053353331,GB +1053353332,1053353343,EU +1053353344,1053353407,GB +1053353408,1053353983,EU 1053353984,1053354239,IL 1053354240,1053354495,EU 1053354496,1053354655,IL @@ -28368,8 +26757,8 @@ 1053852048,1053852111,EU 1053852112,1053852127,GB 1053852128,1053852159,DE -1053852160,1053853695,EU -1053853696,1053859839,GB +1053852160,1053855743,EU +1053855744,1053859839,GB 1053859840,1053860863,DE 1053860864,1053862655,EU 1053862656,1053862783,DE @@ -28440,9 +26829,7 @@ 1053894744,1053894751,GE 1053894752,1053894783,DE 1053894784,1053894815,IL -1053894816,1053894831,DE -1053894832,1053894847,US -1053894848,1053896087,DE +1053894816,1053896087,DE 1053896088,1053896095,US 1053896096,1053896127,GB 1053896128,1053896159,DE @@ -30136,11 +28523,7 @@ 1076010688,1076010727,CA 1076010728,1076010735,US 1076010736,1076011007,CA -1076011008,1076012236,US -1076012237,1076012237,IN -1076012238,1076013094,US -1076013095,1076013095,IN -1076013096,1076018303,US +1076011008,1076018303,US 1076018304,1076018367,BR 1076018368,1076024307,US 1076024308,1076024315,CA @@ -30266,17 +28649,11 @@ 1076049920,1076050175,IL 1076050176,1076174847,US 1076174848,1076178943,BM -1076178944,1076179161,US -1076179162,1076179163,IN -1076179164,1076179196,US -1076179197,1076179198,IN -1076179199,1076180201,US +1076178944,1076180201,US 1076180202,1076180222,PK 1076180223,1076180795,US 1076180796,1076180799,IN -1076180800,1076181236,US -1076181237,1076181237,CA -1076181238,1076183039,US +1076180800,1076183039,US 1076183040,1076183071,IN 1076183072,1076183231,US 1076183232,1076183295,CA @@ -30480,8 +28857,8 @@ 1076850688,1076850943,CA 1076850944,1076851035,US 1076851036,1076851039,CA -1076851040,1076851169,US -1076851170,1076851175,CA +1076851040,1076851171,US +1076851172,1076851175,CA 1076851176,1076851351,US 1076851352,1076851359,CA 1076851360,1076880383,US @@ -30566,9 +28943,7 @@ 1077869760,1077869823,GR 1077869824,1077870335,US 1077870336,1077870591,CN -1077870592,1077936149,US -1077936150,1077936150,NL -1077936151,1077936189,US +1077870592,1077936189,US 1077936190,1077936193,CA 1077936194,1077936201,US 1077936202,1077936205,GB @@ -30601,15 +28976,9 @@ 1077936446,1077936449,TW 1077936450,1077936453,US 1077936454,1077936457,PT -1077936458,1077936461,US -1077936462,1077936463,GB -1077936464,1077936465,US +1077936458,1077936465,US 1077936466,1077936469,IN -1077936470,1077936473,US -1077936474,1077936474,CA -1077936475,1077936475,US -1077936476,1077936477,GB -1077936478,1077936485,US +1077936470,1077936485,US 1077936486,1077936489,TR 1077936490,1077936501,US 1077936502,1077936505,AR @@ -30627,9 +28996,7 @@ 1077936598,1077936601,CA 1077936602,1077936613,US 1077936614,1077936617,UY -1077936618,1077936621,US -1077936622,1077936622,AU -1077936623,1077936630,US +1077936618,1077936630,US 1077936631,1077936634,PE 1077936635,1077936638,CA 1077936639,1077936645,US @@ -30639,9 +29006,7 @@ 1077936668,1077936671,CA 1077936672,1077936691,US 1077936692,1077936695,IT -1077936696,1077936742,US -1077936743,1077936743,BE -1077936744,1077936759,US +1077936696,1077936759,US 1077936760,1077936763,GB 1077936764,1077936767,UA 1077936768,1077936771,US @@ -30679,9 +29044,7 @@ 1077937068,1077937071,GB 1077937072,1077937079,US 1077937080,1077937083,SE -1077937084,1077937087,US -1077937088,1077937088,BE -1077937089,1077937089,CA +1077937084,1077937089,US 1077937090,1077937093,IT 1077937094,1077937133,US 1077937134,1077937137,NG @@ -30773,9 +29136,7 @@ 1077938259,1077938262,PE 1077938263,1077938266,US 1077938267,1077938269,GB -1077938270,1077938281,US -1077938282,1077938283,DE -1077938284,1077938284,CH +1077938270,1077938284,US 1077938285,1077938288,CA 1077938289,1077938292,US 1077938293,1077938296,GB @@ -30795,15 +29156,9 @@ 1077938427,1077938430,SE 1077938431,1077938437,US 1077938438,1077938441,PE -1077938442,1077938445,US -1077938446,1077938446,BE -1077938447,1077938533,US +1077938442,1077938533,US 1077938534,1077938537,CA -1077938538,1077938551,US -1077938552,1077938552,ES -1077938553,1077938570,US -1077938571,1077938571,NL -1077938572,1077938588,US +1077938538,1077938588,US 1077938589,1077938592,MX 1077938593,1077938630,US 1077938631,1077938644,IN @@ -30817,11 +29172,9 @@ 1077938681,1077938702,US 1077938703,1077938706,ID 1077938707,1077938734,GB -1077938735,1077938735,PK -1077938736,1077938739,US +1077938735,1077938739,US 1077938740,1077938749,NO -1077938750,1077938750,NL -1077938751,1077938785,US +1077938750,1077938785,US 1077938786,1077938789,GR 1077938790,1077938793,CA 1077938794,1077938805,US @@ -30837,9 +29190,7 @@ 1077938896,1077938927,CA 1077938928,1077938949,US 1077938950,1077938969,CA -1077938970,1077938981,US -1077938982,1077938982,NL -1077938983,1077938983,US +1077938970,1077938983,US 1077938984,1077938988,CA 1077938989,1077939005,US 1077939006,1077939009,BE @@ -30849,17 +29200,11 @@ 1077939026,1077939028,TH 1077939029,1077939044,US 1077939045,1077939048,IN -1077939049,1077939064,US -1077939065,1077939065,TH -1077939066,1077939135,US +1077939049,1077939135,US 1077939136,1077939139,IN 1077939140,1077939189,US 1077939190,1077939193,CA -1077939194,1077939209,US -1077939210,1077939210,BE -1077939211,1077939218,US -1077939219,1077939219,NL -1077939220,1077939240,US +1077939194,1077939240,US 1077939241,1077939244,NL 1077939245,1077939251,US 1077939252,1077939255,BR @@ -30891,27 +29236,20 @@ 1077939631,1077939634,GB 1077939635,1077939644,US 1077939645,1077939648,GR -1077939649,1077939725,US -1077939726,1077939727,DE -1077939728,1077939751,US +1077939649,1077939751,US 1077939752,1077939755,BZ -1077939756,1077939763,US -1077939764,1077939764,CH -1077939765,1077939766,US +1077939756,1077939766,US 1077939767,1077939770,RU 1077939771,1077939776,DE 1077939777,1077939780,CA 1077939781,1077939784,GB -1077939785,1077939785,FR -1077939786,1077939790,US +1077939785,1077939790,US 1077939791,1077939794,PE 1077939795,1077939799,US 1077939800,1077939803,BE 1077939804,1077939867,US 1077939868,1077939871,AU -1077939872,1077939873,US -1077939874,1077939874,DE -1077939875,1077939911,US +1077939872,1077939911,US 1077939912,1077939915,DO 1077939916,1077939919,CA 1077939920,1077939923,IN @@ -30924,9 +29262,7 @@ 1077940002,1077940005,EG 1077940006,1077940089,US 1077940090,1077940093,SA -1077940094,1077940097,US -1077940098,1077940099,DE -1077940100,1077940168,US +1077940094,1077940168,US 1077940169,1077940172,GB 1077940173,1077940182,US 1077940183,1077940186,CA @@ -30951,7 +29287,7 @@ 1078001664,1078067199,US 1078067200,1078071295,BS 1078071296,1078075391,CA -1078079488,1078124543,US +1078075392,1078124543,US 1078124544,1078128639,CA 1078128640,1078247423,US 1078247424,1078251519,CA @@ -32037,21 +30373,11 @@ 1082314752,1082315263,CA 1082315264,1082315471,US 1082315472,1082318847,CA -1082318848,1082343909,US -1082343910,1082343911,GB -1082343912,1082344080,US +1082318848,1082344080,US 1082344081,1082344084,GB -1082344085,1082344784,US -1082344785,1082344786,HN -1082344787,1082345202,US -1082345203,1082345204,FR -1082345205,1082345208,US +1082344085,1082345208,US 1082345209,1082345211,FR -1082345212,1082345275,US -1082345276,1082345276,FR -1082345277,1082345457,US -1082345458,1082345459,FR -1082345460,1082345733,US +1082345212,1082345733,US 1082345734,1082345737,CA 1082345738,1082346510,US 1082346511,1082346514,IN @@ -32066,8 +30392,8 @@ 1082347897,1082348005,US 1082348006,1082348009,IN 1082348010,1082348104,US -1082348105,1082348110,FR -1082348111,1082348115,US +1082348105,1082348108,FR +1082348109,1082348115,US 1082348116,1082348123,CA 1082348124,1082348319,US 1082348320,1082348327,GB @@ -33495,15 +31821,7 @@ 1107808843,1107808846,PE 1107808847,1107808877,US 1107808878,1107808881,PE -1107808882,1107809392,US -1107809393,1107809393,QA -1107809394,1107809394,US -1107809395,1107809396,QA -1107809397,1107809418,US -1107809419,1107809419,QA -1107809420,1107809850,US -1107809851,1107809851,CA -1107809852,1107810392,US +1107808882,1107810392,US 1107810393,1107810396,IN 1107810397,1107812031,US 1107812032,1107812095,CA @@ -33574,9 +31892,7 @@ 1108056288,1108056319,CR 1108056320,1108056407,CA 1108056408,1108056415,US -1108056416,1108056579,CA -1108056580,1108056581,US -1108056582,1108056671,CA +1108056416,1108056671,CA 1108056672,1108056703,US 1108056704,1108056727,CA 1108056728,1108056735,US @@ -33611,15 +31927,7 @@ 1108861680,1108861687,LK 1108861688,1108862271,US 1108862272,1108862335,LT -1108862336,1109246537,US -1109246538,1109246538,CA -1109246539,1109246557,US -1109246558,1109246558,CA -1109246559,1109246583,US -1109246584,1109246584,CA -1109246585,1109246585,US -1109246586,1109246586,CA -1109246587,1109250860,US +1108862336,1109250860,US 1109250861,1109250868,PH 1109250869,1109252455,US 1109252456,1109252463,AU @@ -35979,13 +34287,9 @@ 1125626112,1125626367,US 1125626368,1125628671,US 1125628672,1125628703,NZ -1125628704,1125641790,US -1125641791,1125641792,CA -1125641793,1125642185,US +1125628704,1125642185,US 1125642186,1125642189,CA -1125642190,1125642301,US -1125642302,1125642303,IN -1125642304,1125642674,US +1125642190,1125642674,US 1125642675,1125642694,BO 1125642695,1125643183,US 1125643184,1125643187,BR @@ -36853,19 +35157,29 @@ 1145307136,1145311231,CA 1145311232,1145333031,US 1145333032,1145333039,IT -1145333040,1145333191,US +1145333040,1145333063,US +1145333064,1145333071,US +1145333072,1145333191,US 1145333192,1145333199,CN 1145333200,1145333215,US 1145333216,1145333223,CN -1145333224,1145333879,US +1145333224,1145333343,US +1145333344,1145333351,US +1145333352,1145333879,US 1145333880,1145333887,CN -1145333888,1145334151,US +1145333888,1145334023,US +1145334024,1145334027,US +1145334028,1145334151,US 1145334152,1145334167,CN 1145334168,1145334175,US 1145334176,1145334223,CN 1145334224,1145334231,US 1145334232,1145334239,CN -1145334240,1145335103,US +1145334240,1145334527,US +1145334528,1145335039,US +1145335040,1145335047,US +1145335048,1145335051,US +1145335052,1145335103,US 1145335104,1145335135,NL 1145335136,1145335167,US 1145335168,1145335183,CN @@ -37200,7 +35514,9 @@ 1158999672,1158999863,CA 1158999864,1158999871,US 1158999872,1159004159,CA -1159004160,1159213055,US +1159004160,1159117567,US +1159117568,1159117823,US +1159117824,1159213055,US 1159213056,1159217151,CA 1159217152,1159249919,US 1159249920,1159254015,PR @@ -38100,19 +36416,11 @@ 1161773056,1161777151,SZ 1161777152,1161793851,US 1161793852,1161793860,PA -1161793861,1161793911,US -1161793912,1161793912,IT -1161793913,1161793916,US -1161793917,1161793917,IT -1161793918,1161793920,US +1161793861,1161793920,US 1161793921,1161793929,IT 1161793930,1161794011,US 1161794012,1161794020,AO -1161794021,1161794036,US -1161794037,1161794037,IT -1161794038,1161794039,US -1161794040,1161794040,IT -1161794041,1161794468,US +1161794021,1161794468,US 1161794469,1161794472,ZA 1161794473,1161795643,US 1161795644,1161795647,CA @@ -38124,507 +36432,17 @@ 1161796100,1161796103,CZ 1161796104,1161818111,US 1161818112,1161822207,CA -1161822208,1161830401,US -1161830402,1161830402,LT -1161830403,1161830417,US -1161830418,1161830418,JP -1161830419,1161830425,US -1161830426,1161830426,UA -1161830427,1161830427,US -1161830428,1161830428,DE -1161830429,1161830438,US -1161830439,1161830439,CA -1161830440,1161830449,US -1161830450,1161830450,HR -1161830451,1161830465,US -1161830466,1161830466,BR -1161830467,1161830471,US -1161830472,1161830472,GB -1161830473,1161830477,US -1161830478,1161830478,DO -1161830479,1161830479,US -1161830480,1161830480,BY -1161830481,1161830493,US -1161830494,1161830494,PK -1161830495,1161830497,US -1161830498,1161830498,VN -1161830499,1161830505,US -1161830506,1161830506,MX -1161830507,1161830554,US -1161830555,1161830555,BR -1161830556,1161830582,US -1161830583,1161830583,AE -1161830584,1161830613,US -1161830614,1161830614,EC -1161830615,1161830620,US -1161830621,1161830621,CA -1161830622,1161830639,US -1161830640,1161830640,BR -1161830641,1161830662,US -1161830663,1161830664,BR -1161830665,1161830683,US -1161830684,1161830684,BR -1161830685,1161830694,US -1161830695,1161830695,UA -1161830696,1161830696,GT -1161830697,1161830707,US -1161830708,1161830708,PK -1161830709,1161830721,US -1161830722,1161830722,CY -1161830723,1161830753,US -1161830754,1161830754,CA -1161830755,1161830758,US -1161830759,1161830759,UA -1161830760,1161830779,US -1161830780,1161830780,BE -1161830781,1161830784,US -1161830785,1161830785,CY -1161830786,1161830798,US -1161830799,1161830799,MX -1161830800,1161830800,BE -1161830801,1161830804,US -1161830805,1161830805,BE -1161830806,1161830806,BD -1161830807,1161830807,CA -1161830808,1161830811,US -1161830812,1161830812,DE -1161830813,1161830813,US -1161830814,1161830814,CA -1161830815,1161830815,US -1161830816,1161830816,CN -1161830817,1161830817,US -1161830818,1161830818,CA -1161830819,1161830819,CN -1161830820,1161830820,PK -1161830821,1161830821,CY -1161830822,1161830822,CN -1161830823,1161830825,US -1161830826,1161830826,UA -1161830827,1161830832,US -1161830833,1161830833,CN -1161830834,1161830839,US -1161830840,1161830840,PK -1161830841,1161830842,US -1161830843,1161830843,PK -1161830844,1161830844,CL -1161830845,1161830845,US -1161830846,1161830846,MD -1161830847,1161830852,US -1161830853,1161830853,CO -1161830854,1161830866,US -1161830867,1161830867,VN -1161830868,1161830881,US -1161830882,1161830882,CA -1161830883,1161830893,US -1161830894,1161830894,BE -1161830895,1161830895,BR -1161830896,1161830928,US -1161830929,1161830929,MX -1161830930,1161830933,US -1161830934,1161830934,MX -1161830935,1161830944,US -1161830945,1161830945,MX -1161830946,1161831001,US -1161831002,1161831002,MD -1161831003,1161831015,US -1161831016,1161831016,MX -1161831017,1161831025,US -1161831026,1161831026,MX -1161831027,1161831052,US -1161831053,1161831053,MX -1161831054,1161831059,US -1161831060,1161831060,BR -1161831061,1161831123,US -1161831124,1161831124,BR -1161831125,1161831128,US -1161831129,1161831129,CN -1161831130,1161831131,US -1161831132,1161831132,MD -1161831133,1161831136,US -1161831137,1161831139,PK -1161831140,1161831178,US -1161831179,1161831180,CA -1161831181,1161831181,US -1161831182,1161831182,AR -1161831183,1161831187,US -1161831188,1161831189,CA -1161831190,1161831190,US -1161831191,1161831191,CA -1161831192,1161831202,US -1161831203,1161831203,RO -1161831204,1161831204,US -1161831205,1161831205,BR -1161831206,1161831208,US -1161831209,1161831209,UA -1161831210,1161831236,US -1161831237,1161831237,MX -1161831238,1161831241,US -1161831242,1161831247,CO -1161831248,1161831250,US -1161831251,1161831251,DE -1161831252,1161831254,US -1161831255,1161831255,ID -1161831256,1161831259,US -1161831260,1161831261,GE -1161831262,1161831262,MX -1161831263,1161831263,US -1161831264,1161831264,TH -1161831265,1161831265,DE -1161831266,1161831269,US -1161831270,1161831270,DE -1161831271,1161831271,US -1161831272,1161831272,BR -1161831273,1161831273,DE -1161831274,1161831274,IN -1161831275,1161831276,US -1161831277,1161831277,IN -1161831278,1161831278,RU -1161831279,1161831281,DE -1161831282,1161831282,GE -1161831283,1161831283,BR -1161831284,1161831285,US -1161831286,1161831286,DE -1161831287,1161831287,BR -1161831288,1161831288,US -1161831289,1161831289,UY -1161831290,1161831290,BR -1161831291,1161831299,US -1161831300,1161831301,CA -1161831302,1161831302,BR -1161831303,1161831303,US -1161831304,1161831304,BR -1161831305,1161831306,US -1161831307,1161831307,CO -1161831308,1161831308,US -1161831309,1161831309,PK -1161831310,1161831314,US -1161831315,1161831315,PK -1161831316,1161831318,US -1161831319,1161831319,JP -1161831320,1161831326,US -1161831327,1161831327,PK -1161831328,1161831328,DE -1161831329,1161831329,BR -1161831330,1161831330,CA -1161831331,1161831331,EC -1161831332,1161831334,US -1161831335,1161831335,CA -1161831336,1161831338,US -1161831339,1161831340,MX -1161831341,1161831341,US -1161831342,1161831342,MX -1161831343,1161831343,BR -1161831344,1161831344,CA -1161831345,1161831346,US -1161831347,1161831347,CA -1161831348,1161831364,US -1161831365,1161831365,IN -1161831366,1161831366,PK -1161831367,1161831368,US -1161831369,1161831369,PK -1161831370,1161831370,BR -1161831371,1161831371,HU -1161831372,1161831375,US -1161831376,1161831377,BR -1161831378,1161831378,BD -1161831379,1161831380,PK -1161831381,1161831382,US -1161831383,1161831384,CO -1161831385,1161831385,UA -1161831386,1161831388,US -1161831389,1161831390,CA -1161831391,1161831391,US -1161831392,1161831392,CA -1161831393,1161831395,CO -1161831396,1161831397,US -1161831398,1161831399,SG -1161831400,1161831400,BR -1161831401,1161831401,ID -1161831402,1161831402,AE -1161831403,1161831404,US -1161831405,1161831406,AE -1161831407,1161831410,US -1161831411,1161831411,SI -1161831412,1161831412,US -1161831413,1161831413,CO -1161831414,1161831414,CA -1161831415,1161831415,US -1161831416,1161831416,JP -1161831417,1161831478,US -1161831479,1161831480,BR -1161831481,1161831486,US -1161831487,1161831487,DO -1161831488,1161831541,US -1161831542,1161831542,LV -1161831543,1161831545,US -1161831546,1161831546,BR -1161831547,1161831588,US -1161831589,1161831589,CA -1161831590,1161831590,BR -1161831591,1161831595,US -1161831596,1161831596,UA -1161831597,1161831631,US -1161831632,1161831632,PK -1161831633,1161831633,TH -1161831634,1161831701,US -1161831702,1161831702,IN -1161831703,1161831733,US -1161831734,1161831734,BR -1161831735,1161831763,US -1161831764,1161831764,GR -1161831765,1161831981,US -1161831982,1161831982,MX -1161831983,1161832132,US -1161832133,1161832133,IN -1161832134,1161832174,US -1161832175,1161832175,BR -1161832176,1161832176,IN -1161832177,1161832182,US -1161832183,1161832183,BR -1161832184,1161832188,US -1161832189,1161832189,CA -1161832190,1161832215,US -1161832216,1161832216,BR -1161832217,1161832231,US -1161832232,1161832232,BE -1161832233,1161832234,RU -1161832235,1161832260,US -1161832261,1161832261,IN -1161832262,1161832288,US -1161832289,1161832289,BR -1161832290,1161832293,US -1161832294,1161832294,BR -1161832295,1161832303,US -1161832304,1161832304,CL -1161832305,1161832429,US -1161832430,1161832430,IN -1161832431,1161832451,US -1161832452,1161832453,BR -1161832454,1161832454,US -1161832455,1161832455,CA -1161832456,1161832456,RU -1161832457,1161832457,AR -1161832458,1161832458,BR -1161832459,1161832461,DE -1161832462,1161832464,IN -1161832465,1161832465,CA -1161832466,1161832466,US -1161832467,1161832468,UY -1161832469,1161832473,US -1161832474,1161832475,CA -1161832476,1161832476,US -1161832477,1161832478,CA -1161832479,1161832483,US -1161832484,1161832484,UA -1161832485,1161832485,TR -1161832486,1161832486,US -1161832487,1161832488,TR -1161832489,1161832490,US -1161832491,1161832491,CA -1161832492,1161832503,US -1161832504,1161832504,VN -1161832505,1161832507,US -1161832508,1161832508,BR -1161832509,1161832509,MX -1161832510,1161832510,MD -1161832511,1161832516,US -1161832517,1161832530,BR -1161832531,1161832531,US -1161832532,1161832536,BR -1161832537,1161832537,US -1161832538,1161832538,BR -1161832539,1161832539,PK -1161832540,1161832541,BR -1161832542,1161832542,US -1161832543,1161832543,BR -1161832544,1161832545,US -1161832546,1161832550,BR -1161832551,1161832555,US -1161832556,1161832556,BR -1161832557,1161832558,IN -1161832559,1161832559,BR -1161832560,1161832562,US -1161832563,1161832563,BR -1161832564,1161832565,US -1161832566,1161832566,BR -1161832567,1161832583,US -1161832584,1161832585,BR -1161832586,1161832588,US -1161832589,1161832589,IN -1161832590,1161832591,US -1161832592,1161832592,IN -1161832593,1161832593,PK -1161832594,1161832596,IN -1161832597,1161832597,BR -1161832598,1161832598,IN -1161832599,1161832599,US -1161832600,1161832607,IN -1161832608,1161832616,US -1161832617,1161832618,BR -1161832619,1161832620,US -1161832621,1161832622,BR -1161832623,1161832623,CA -1161832624,1161832625,US -1161832626,1161832632,CA -1161832633,1161832735,US -1161832736,1161832738,AR -1161832739,1161832739,US -1161832740,1161832767,AR -1161832768,1161832770,US -1161832771,1161832782,BR -1161832783,1161832799,US +1161822208,1161832799,US 1161832800,1161832831,BR -1161832832,1161832895,US -1161832896,1161832901,AR -1161832902,1161832927,IN +1161832832,1161832927,US 1161832928,1161832959,LT -1161832960,1161833015,US -1161833016,1161833017,BR -1161833018,1161833055,US -1161833056,1161833057,PK -1161833058,1161833062,US -1161833063,1161833063,PK -1161833064,1161833064,US -1161833065,1161833072,PK -1161833073,1161833073,US -1161833074,1161833075,PK -1161833076,1161833077,US -1161833078,1161833081,BR -1161833082,1161833097,US -1161833098,1161833100,CA -1161833101,1161833101,US -1161833102,1161833128,CA -1161833129,1161833129,US -1161833130,1161833132,CA -1161833133,1161833134,BR -1161833135,1161833136,US -1161833137,1161833138,BR -1161833139,1161833139,US -1161833140,1161833144,BR -1161833145,1161833145,US -1161833146,1161833151,BR -1161833152,1161833152,US -1161833153,1161833168,BR -1161833169,1161833169,US -1161833170,1161833170,BR -1161833171,1161833964,US -1161833965,1161833965,IL -1161833966,1161835875,US -1161835876,1161835877,BR -1161835878,1161835878,US -1161835879,1161835879,BR -1161835880,1161835930,US -1161835931,1161835931,BR -1161835932,1161835941,US -1161835942,1161835947,PK -1161835948,1161835952,US -1161835953,1161835954,PK -1161835955,1161835955,US -1161835956,1161835956,PK -1161835957,1161835957,US -1161835958,1161835961,PK -1161835962,1161835969,US -1161835970,1161835971,PK -1161835972,1161836020,US -1161836021,1161836028,CA -1161836029,1161836063,US +1161832960,1161836063,US 1161836064,1161836095,JP 1161836096,1161836383,US 1161836384,1161836415,CY -1161836416,1161836446,US -1161836447,1161836447,BR -1161836448,1161837281,US -1161837282,1161837282,CA -1161837283,1161837336,US -1161837337,1161837337,BR -1161837338,1161837457,US -1161837458,1161837458,CO -1161837459,1161837502,US -1161837503,1161837503,BR -1161837504,1161837567,US +1161836416,1161837567,US 1161837568,1161837823,JP -1161837824,1161837825,US -1161837826,1161837826,BR -1161837827,1161837854,US -1161837855,1161837856,BR -1161837857,1161837858,US -1161837859,1161837889,BR -1161837890,1161837890,US -1161837891,1161837894,BR -1161837895,1161837895,US -1161837896,1161837900,BR -1161837901,1161837901,US -1161837902,1161837906,BR -1161837907,1161837907,US -1161837908,1161837911,BR -1161837912,1161837914,US -1161837915,1161837922,BR -1161837923,1161837924,US -1161837925,1161837932,BR -1161837933,1161837938,US -1161837939,1161837940,BR -1161837941,1161837946,PK -1161837947,1161837947,US -1161837948,1161837948,PK -1161837949,1161837958,BR -1161837959,1161837959,US -1161837960,1161837971,BR -1161837972,1161837974,US -1161837975,1161837976,BR -1161837977,1161837993,US -1161837994,1161838000,BR -1161838001,1161838001,US -1161838002,1161838031,BR -1161838032,1161838038,US -1161838039,1161838045,BR -1161838046,1161838046,US -1161838047,1161838050,BR -1161838051,1161838051,US -1161838052,1161838068,BR -1161838069,1161838069,US -1161838070,1161838070,AT -1161838071,1161838076,BR -1161838077,1161838355,US -1161838356,1161838358,SK -1161838359,1161838435,US -1161838436,1161838436,SG -1161838437,1161838437,BR -1161838438,1161838441,US -1161838442,1161838442,BR -1161838443,1161838452,US -1161838453,1161838453,PH -1161838454,1161838456,US -1161838457,1161838458,RU -1161838459,1161838459,US -1161838460,1161838460,BR -1161838461,1161838468,US -1161838469,1161838469,DO -1161838470,1161838475,US -1161838476,1161838476,CA -1161838477,1161838477,BR -1161838478,1161838480,US -1161838481,1161838481,CA -1161838482,1161838484,US -1161838485,1161838485,IN -1161838486,1161838505,US -1161838506,1161838506,CA -1161838507,1161838511,US -1161838512,1161838512,AU -1161838513,1161838513,SG -1161838514,1161838514,UY -1161838515,1161838515,PK -1161838516,1161838516,IN -1161838517,1161838517,US -1161838518,1161838518,IN -1161838519,1161838521,US -1161838522,1161838522,IN -1161838523,1161838529,US -1161838530,1161838530,PK -1161838531,1161838535,US -1161838536,1161838536,BR -1161838537,1161838574,US -1161838575,1161838575,CO -1161838576,1161841101,US +1161837824,1161841101,US 1161841102,1161841112,DE 1161841113,1161842101,US 1161842102,1161842109,CH @@ -38701,11 +36519,7 @@ 1162408784,1162408831,CR 1162408832,1162409727,US 1162409728,1162409983,US -1162409984,1162451511,US -1162451512,1162451512,IN -1162451513,1162451598,US -1162451599,1162451601,IN -1162451602,1162457991,US +1162409984,1162457991,US 1162457992,1162457999,ID 1162458000,1162461183,US 1162461184,1162461695,BB @@ -38931,9 +36745,7 @@ 1163533696,1163533727,US 1163533728,1163533759,CA 1163533760,1163533791,AU -1163533792,1163533797,US -1163533798,1163533798,CA -1163533799,1163533807,US +1163533792,1163533807,US 1163533808,1163533951,CA 1163533952,1163534015,US 1163534016,1163534031,CA @@ -39184,11 +36996,7 @@ 1163582192,1163583487,CA 1163583488,1163585199,US 1163585200,1163585215,CA -1163585216,1163586740,US -1163586741,1163586743,CA -1163586744,1163586744,NL -1163586745,1163586745,GB -1163586746,1163587583,US +1163585216,1163587583,US 1163587584,1163588095,CA 1163588096,1163588111,US 1163588112,1163588159,CA @@ -39267,9 +37075,7 @@ 1168510976,1168515071,CA 1168515072,1168535551,US 1168535552,1168539647,CA -1168539648,1168621268,US -1168621269,1168621270,IN -1168621271,1168670719,US +1168539648,1168670719,US 1168670720,1168687103,CA 1168687104,1168727551,US 1168727552,1168727807,ES @@ -39422,11 +37228,7 @@ 1170522112,1170545083,US 1170545084,1170545087,CN 1170545088,1170573375,US -1170573376,1170573391,RU -1170573392,1170573392,US -1170573393,1170573393,RU -1170573394,1170573394,US -1170573395,1170573439,RU +1170573376,1170573439,RU 1170573440,1170585047,US 1170585048,1170585055,RU 1170585056,1175977983,US @@ -39557,9 +37359,7 @@ 1176736416,1176736447,GN 1176736448,1176736623,A2 1176736624,1176736639,LR -1176736640,1176736767,A2 -1176736768,1176737247,CR -1176737248,1176737471,A2 +1176736640,1176737471,A2 1176737472,1176737535,NI 1176737536,1176737919,A2 1176737920,1176737935,NG @@ -39614,7 +37414,9 @@ 1176925016,1176928255,CA 1176928256,1176997375,US 1176997376,1176997407,GB -1176997408,1177022975,US +1176997408,1177008127,US +1177008128,1177009151,A2 +1177009152,1177022975,US 1177022976,1177023231,GB 1177023232,1177030655,US 1177030656,1177033727,AG @@ -39935,7 +37737,9 @@ 1208834976,1208834991,US 1208834992,1208834999,NP 1208835000,1208835007,CA -1208835008,1208852479,US +1208835008,1208835047,US +1208835048,1208835055,US +1208835056,1208852479,US 1208852480,1208860671,CA 1208860672,1208918015,US 1208918016,1208922111,CA @@ -40182,19 +37986,7 @@ 1211308752,1211308767,CA 1211308768,1211308783,US 1211308784,1211310079,CA -1211310080,1211310404,US -1211310405,1211310405,IN -1211310406,1211311378,US -1211311379,1211311379,IN -1211311380,1211311394,US -1211311395,1211311395,IN -1211311396,1211311883,US -1211311884,1211311884,IN -1211311885,1211311963,US -1211311964,1211311964,IN -1211311965,1211312569,US -1211312570,1211312570,IN -1211312571,1211313431,US +1211310080,1211313431,US 1211313432,1211313439,IN 1211313440,1211313567,US 1211313568,1211313579,IN @@ -40245,15 +38037,11 @@ 1211392608,1211392639,GB 1211392640,1211394063,US 1211394064,1211394079,ES -1211394080,1211404421,US -1211404422,1211404422,CA -1211404423,1211407293,US +1211394080,1211407293,US 1211407294,1211407333,MX 1211407334,1211419489,US 1211419490,1211419497,CA -1211419498,1211421739,US -1211421740,1211421740,CA -1211421741,1211432959,US +1211419498,1211432959,US 1211432960,1211473919,CA 1211473920,1211596799,US 1211596800,1211605999,CA @@ -40667,9 +38455,7 @@ 1249228224,1249228239,CZ 1249228240,1249228287,US 1249228288,1249228351,SC -1249228352,1249229216,US -1249229217,1249229217,CA -1249229218,1249229591,US +1249228352,1249229591,US 1249229592,1249229599,ES 1249229600,1249234687,US 1249234688,1249234943,GB @@ -41591,15 +39377,7 @@ 1279956060,1279956063,MX 1279956064,1279956071,US 1279956072,1279956079,CA -1279956080,1279957172,US -1279957173,1279957173,IN -1279957174,1279957174,US -1279957175,1279957175,IN -1279957176,1279957179,US -1279957180,1279957180,IN -1279957181,1279957184,US -1279957185,1279957185,IN -1279957186,1279957431,US +1279956080,1279957431,US 1279957432,1279957439,IN 1279957440,1279957631,US 1279957632,1279957651,IN @@ -41658,8 +39436,8 @@ 1279970512,1279970519,US 1279970520,1279970815,CA 1279970816,1279970911,US -1279970912,1279970943,CA -1279970944,1279971583,US +1279970912,1279971071,CA +1279971072,1279971583,US 1279971584,1279972095,CA 1279972096,1279973951,US 1279973952,1279973967,CA @@ -41839,19 +39617,11 @@ 1280098304,1280102399,PR 1280102400,1280131071,US 1280131072,1280139263,CA -1280139264,1286389759,US -1286389760,1286390271,US -1286390272,1286390527,US -1286390528,1286390783,US -1286390784,1286391295,US -1286391296,1286391807,US -1286391808,1286393855,US -1286393856,1286394623,US -1286394624,1286395391,US -1286395392,1286396159,US -1286396160,1286398975,US -1286398976,1286399487,US -1286399488,1287611402,US +1280139264,1286382079,US +1286382080,1286385407,US +1286385408,1286389759,US +1286389760,1286406143,US +1286406144,1287611402,US 1287611403,1287611403,US 1287611404,1287877503,US 1287877504,1287877567,UM @@ -42008,7 +39778,7 @@ 1296252016,1296252039,US 1296252040,1296252055,DE 1296252056,1296252063,US -1296252064,1296252079,IT +1296252064,1296252079,FR 1296252080,1296252087,IE 1296252088,1296252095,FR 1296252096,1296252111,BE @@ -42031,7 +39801,7 @@ 1296252368,1296252383,DE 1296252384,1296252391,FR 1296252392,1296252395,US -1296252396,1296252399,FR +1296252396,1296252399,DE 1296252400,1296252431,IE 1296252432,1296252439,FR 1296252440,1296252447,RU @@ -42102,8 +39872,7 @@ 1296266240,1296266751,US 1296266752,1296267519,FR 1296267520,1296267775,CA -1296267776,1296268031,US -1296268032,1296268287,FR +1296267776,1296268287,FR 1296268288,1296268799,US 1296268800,1296269055,FR 1296269056,1296269311,US @@ -42481,27 +40250,7 @@ 1298126848,1298127615,SA 1298127616,1298128127,IR 1298128128,1298128895,SA -1298128896,1298129239,NL -1298129240,1298129240,RU -1298129241,1298129241,NL -1298129242,1298129242,BE -1298129243,1298129449,NL -1298129450,1298129450,BZ -1298129451,1298129465,NL -1298129466,1298129466,US -1298129467,1298129744,NL -1298129745,1298129747,IT -1298129748,1298129788,NL -1298129789,1298129789,IT -1298129790,1298129994,NL -1298129995,1298129995,GB -1298129996,1298130199,NL -1298130200,1298130200,RU -1298130201,1298130243,NL -1298130244,1298130244,RU -1298130245,1298130468,NL -1298130469,1298130469,RU -1298130470,1298130943,NL +1298128896,1298130943,NL 1298130944,1298132991,BG 1298132992,1298135039,FI 1298135040,1298137087,NL @@ -42825,9 +40574,7 @@ 1307819520,1307820031,GB 1307820032,1307824127,ES 1307824128,1307828223,HU -1307828224,1307830128,NL -1307830129,1307830129,SE -1307830130,1307830751,NL +1307828224,1307830751,NL 1307830752,1307830767,BE 1307830768,1307832319,NL 1307832320,1307836415,RU @@ -43305,16 +41052,13 @@ 1311310336,1311310847,GG 1311310848,1311311103,GB 1311311104,1311311359,GG -1311311360,1311311823,GB -1311311824,1311311824,JE -1311311825,1311311871,GB +1311311360,1311311871,GB 1311311872,1311315967,CZ 1311315968,1311317247,PL 1311317248,1311317503,A2 1311317504,1311318015,PL 1311318016,1311320063,RU 1311320064,1311322111,FR -1311322112,1311324159,IT 1311324160,1311326207,LB 1311326208,1311328159,BE 1311328160,1311328191,LU @@ -43340,9 +41084,7 @@ 1311358272,1311358719,FR 1311358720,1311358975,BE 1311358976,1311361023,RU -1311361024,1311361816,NL -1311361817,1311361817,AU -1311361818,1311363071,NL +1311361024,1311363071,NL 1311363072,1311365119,GB 1311365120,1311367167,DE 1311367168,1311367295,GN @@ -43560,9 +41302,7 @@ 1315782144,1315782399,PL 1315782400,1315782655,DK 1315782656,1315786751,AM -1315786752,1315790592,FR -1315790593,1315790593,IT -1315790594,1315790847,FR +1315786752,1315790847,FR 1315790848,1315794943,RS 1315794944,1315803135,RU 1315803136,1315807231,KZ @@ -43992,9 +41732,7 @@ 1317674320,1317674415,GB 1317674416,1317674423,AO 1317674424,1317674431,UG -1317674432,1317674439,GB -1317674440,1317674440,AO -1317674441,1317674447,GB +1317674432,1317674447,GB 1317674448,1317674455,AO 1317674456,1317674463,GB 1317674464,1317674471,NG @@ -44233,7 +41971,7 @@ 1317678360,1317678367,NG 1317678368,1317678375,CD 1317678376,1317678383,GB -1317678384,1317678391,NE +1317678384,1317678391,CD 1317678392,1317678399,GB 1317678400,1317678415,NG 1317678416,1317678447,GB @@ -44579,8 +42317,8 @@ 1318699008,1318707199,IE 1318707200,1318707775,FR 1318707776,1318707783,GB -1318707784,1318711360,FR -1318711361,1318711391,GB +1318707784,1318711359,FR +1318711360,1318711391,GB 1318711392,1318711647,FR 1318711648,1318711663,IT 1318711664,1318713855,FR @@ -44920,11 +42658,7 @@ 1334599168,1334599679,IT 1334599680,1334603775,RU 1334603776,1334607871,DE -1334607872,1334609994,IE -1334609995,1334609995,GB -1334609996,1334610020,IE -1334610021,1334610021,GB -1334610022,1334611967,IE +1334607872,1334611967,IE 1334611968,1334616063,ME 1334616064,1334620159,MD 1334620160,1334624255,DE @@ -44963,24 +42697,13 @@ 1334669312,1334673407,MK 1334673408,1334677503,GB 1334677504,1334681599,FI -1334681600,1334681855,PL -1334681856,1334682111,GB -1334682112,1334682367,IE +1334681600,1334682367,GB 1334682368,1334682623,FR -1334682624,1334682879,NO +1334682624,1334682879,GB 1334682880,1334683135,DK -1334683136,1334683391,CZ +1334683136,1334683391,GB 1334683392,1334683647,CH -1334683648,1334683903,GB -1334683904,1334684031,DE -1334684032,1334684159,NL -1334684160,1334684415,SE -1334684416,1334684479,GB -1334684480,1334684511,CH -1334684512,1334684671,GB -1334684672,1334684927,FI -1334684928,1334685183,NL -1334685184,1334685695,DE +1334683648,1334685695,GB 1334685696,1334689791,IT 1334689792,1334693887,FR 1334693888,1334702079,RU @@ -45021,8 +42744,8 @@ 1334792192,1334793215,GB 1334793216,1334793727,IR 1334793728,1334793919,GB -1334793920,1334793928,AE -1334793929,1334794239,GB +1334793920,1334793935,AE +1334793936,1334794239,GB 1334794240,1334796287,ES 1334796288,1334800383,ME 1334800384,1334804479,IT @@ -45140,17 +42863,11 @@ 1336852480,1336868863,FR 1336868864,1336885247,RU 1336885248,1336901631,RS -1336901632,1336910352,IR -1336910353,1336910353,CA -1336910354,1336910408,IR +1336901632,1336910408,IR 1336910409,1336910411,CA -1336910412,1336910448,IR -1336910449,1336910449,CA -1336910450,1336910476,IR +1336910412,1336910476,IR 1336910477,1336910478,CA -1336910479,1336910484,IR -1336910485,1336910485,CA -1336910486,1336910486,IR +1336910479,1336910486,IR 1336910487,1336910488,CA 1336910489,1336910529,IR 1336910530,1336910545,CA @@ -45259,9 +42976,7 @@ 1343017984,1343018495,RE 1343018496,1343025151,FR 1343025152,1343025663,RE -1343025664,1343025819,FR -1343025820,1343025820,LU -1343025821,1343217663,FR +1343025664,1343217663,FR 1343217664,1343218687,MU 1343218688,1343219711,FR 1343219712,1343219967,KR @@ -45383,8 +43098,8 @@ 1346535424,1346537335,BE 1346537336,1346537343,GB 1346537344,1346537983,BE -1346537984,1346537988,AT -1346537989,1346537991,BE +1346537984,1346537987,AT +1346537988,1346537991,BE 1346537992,1346537999,AT 1346538000,1346538007,CZ 1346538008,1346538015,BE @@ -45646,9 +43361,7 @@ 1347246080,1347247359,GB 1347247360,1347247839,RU 1347247840,1347248127,US -1347248128,1347248863,SE -1347248864,1347248864,FI -1347248865,1347249343,SE +1347248128,1347249343,SE 1347249344,1347249375,FI 1347249376,1347249631,SE 1347249632,1347249639,RU @@ -46045,7 +43758,8 @@ 1347590912,1347591167,SK 1347591168,1347592191,CZ 1347592192,1347600383,RU -1347600384,1347602431,UA +1347600384,1347601919,CZ +1347601920,1347602431,UA 1347602432,1347608575,DE 1347608576,1347612671,FR 1347612672,1347616767,GB @@ -46131,283 +43845,7 @@ 1347822352,1347825663,GB 1347825664,1347829759,IT 1347829760,1347833855,SE -1347833856,1347833953,DE -1347833954,1347833954,TR -1347833955,1347833958,DE -1347833959,1347833960,TR -1347833961,1347833961,DE -1347833962,1347833962,TR -1347833963,1347833963,DE -1347833964,1347833964,TR -1347833965,1347833965,US -1347833966,1347833966,TR -1347833967,1347834002,DE -1347834003,1347834003,TR -1347834004,1347834004,US -1347834005,1347834006,DE -1347834007,1347834012,US -1347834013,1347834066,DE -1347834067,1347834068,BR -1347834069,1347834070,DE -1347834071,1347834072,US -1347834073,1347834073,DE -1347834074,1347834074,PK -1347834075,1347834078,US -1347834079,1347835651,DE -1347835652,1347835653,RU -1347835654,1347835781,DE -1347835782,1347835782,PK -1347835783,1347835784,DE -1347835785,1347835785,TR -1347835786,1347835790,DE -1347835791,1347835791,GB -1347835792,1347835794,US -1347835795,1347835795,DE -1347835796,1347835796,GB -1347835797,1347835798,DE -1347835799,1347835799,IN -1347835800,1347835803,UG -1347835804,1347835804,IN -1347835805,1347835811,DE -1347835812,1347835812,RU -1347835813,1347835813,ZA -1347835814,1347835815,DE -1347835816,1347835816,TR -1347835817,1347835817,DE -1347835818,1347835818,AR -1347835819,1347835819,DE -1347835820,1347835820,US -1347835821,1347835821,ES -1347835822,1347835822,DE -1347835823,1347835823,GB -1347835824,1347835824,TR -1347835825,1347835825,DE -1347835826,1347835826,UA -1347835827,1347835827,DE -1347835828,1347835828,PL -1347835829,1347835829,BE -1347835830,1347835830,TR -1347835831,1347835831,LT -1347835832,1347835832,DE -1347835833,1347835833,TR -1347835834,1347835848,DE -1347835849,1347835849,AQ -1347835850,1347835850,IN -1347835851,1347835851,AQ -1347835852,1347835863,DE -1347835864,1347835865,VE -1347835866,1347835866,GR -1347835867,1347835867,DE -1347835868,1347835868,TR -1347835869,1347835869,VE -1347835870,1347835870,GR -1347835871,1347835872,DE -1347835873,1347835873,KW -1347835874,1347835874,AR -1347835875,1347835880,DE -1347835881,1347835881,TR -1347835882,1347835892,DE -1347835893,1347835893,BD -1347835894,1347835894,DE -1347835895,1347835895,ES -1347835896,1347835896,AT -1347835897,1347835897,DE -1347835898,1347835898,VN -1347835899,1347835899,CA -1347835900,1347835975,DE -1347835976,1347835976,PK -1347835977,1347835978,DE -1347835979,1347835980,PK -1347835981,1347835982,DE -1347835983,1347835984,RU -1347835985,1347835985,PL -1347835986,1347835986,DE -1347835987,1347835987,US -1347835988,1347835994,DE -1347835995,1347835995,BD -1347835996,1347835997,DE -1347835998,1347835998,MD -1347835999,1347836000,LT -1347836001,1347836002,DE -1347836003,1347836003,DK -1347836004,1347836004,BG -1347836005,1347836005,LI -1347836006,1347836007,DE -1347836008,1347836008,US -1347836009,1347836009,DE -1347836010,1347836010,US -1347836011,1347836012,PK -1347836013,1347836014,DE -1347836015,1347836015,MX -1347836016,1347836016,PK -1347836017,1347836017,RO -1347836018,1347836018,PT -1347836019,1347836019,EC -1347836020,1347836020,IN -1347836021,1347836021,LT -1347836022,1347836022,DE -1347836023,1347836024,MD -1347836025,1347836026,DE -1347836027,1347836027,MD -1347836028,1347836029,LT -1347836030,1347836030,IN -1347836031,1347836033,DE -1347836034,1347836034,IN -1347836035,1347836035,LT -1347836036,1347836036,DE -1347836037,1347836038,UG -1347836039,1347836040,DE -1347836041,1347836041,IT -1347836042,1347836044,BR -1347836045,1347836047,TR -1347836048,1347836049,DE -1347836050,1347836050,GR -1347836051,1347836051,DE -1347836052,1347836052,PL -1347836053,1347836053,UG -1347836054,1347836056,DE -1347836057,1347836057,NO -1347836058,1347836061,DE -1347836062,1347836062,NO -1347836063,1347836063,LT -1347836064,1347836066,DE -1347836067,1347836067,PK -1347836068,1347836070,IN -1347836071,1347836071,BD -1347836072,1347836072,AF -1347836073,1347836073,BD -1347836074,1347836074,GR -1347836075,1347836075,AT -1347836076,1347836081,DE -1347836082,1347836082,LK -1347836083,1347836083,DE -1347836084,1347836084,NL -1347836085,1347836087,DE -1347836088,1347836088,BA -1347836089,1347836089,IL -1347836090,1347836091,DE -1347836092,1347836092,IT -1347836093,1347836211,DE -1347836212,1347836212,US -1347836213,1347836218,DE -1347836219,1347836219,US -1347836220,1347836294,DE -1347836295,1347836295,IN -1347836296,1347836296,GR -1347836297,1347836300,DE -1347836301,1347836301,US -1347836302,1347836302,DE -1347836303,1347836309,US -1347836310,1347836310,FI -1347836311,1347836311,PK -1347836312,1347836312,IL -1347836313,1347836313,US -1347836314,1347836314,DE -1347836315,1347836315,US -1347836316,1347836338,DE -1347836339,1347836339,IN -1347836340,1347836340,DE -1347836341,1347836341,UG -1347836342,1347836344,DE -1347836345,1347836345,MA -1347836346,1347836346,DE -1347836347,1347836347,MA -1347836348,1347836547,DE -1347836548,1347836549,CY -1347836550,1347836551,DE -1347836552,1347836555,TR -1347836556,1347836556,US -1347836557,1347836575,DE -1347836576,1347836576,BE -1347836577,1347836578,DE -1347836579,1347836580,EE -1347836581,1347836581,MA -1347836582,1347836583,DE -1347836584,1347836584,RU -1347836585,1347836585,DE -1347836586,1347836588,UA -1347836589,1347836591,DE -1347836592,1347836592,PK -1347836593,1347836593,BO -1347836594,1347836594,RU -1347836595,1347836595,MD -1347836596,1347836597,DE -1347836598,1347836599,PL -1347836600,1347836602,DE -1347836603,1347836603,GR -1347836604,1347836604,CO -1347836605,1347836605,DE -1347836606,1347836606,TR -1347836607,1347836607,MT -1347836608,1347837511,DE -1347837512,1347837512,IL -1347837513,1347837515,DE -1347837516,1347837517,UG -1347837518,1347837518,DE -1347837519,1347837519,US -1347837520,1347837523,DE -1347837524,1347837525,BR -1347837526,1347837526,DE -1347837527,1347837528,US -1347837529,1347837538,DE -1347837539,1347837542,BR -1347837543,1347837543,US -1347837544,1347837548,BR -1347837549,1347837555,DE -1347837556,1347837556,IN -1347837557,1347837557,UG -1347837558,1347837558,IN -1347837559,1347837559,GB -1347837560,1347837566,IN -1347837567,1347837573,DE -1347837574,1347837574,PK -1347837575,1347837580,DE -1347837581,1347837581,BR -1347837582,1347837582,TR -1347837583,1347837583,US -1347837584,1347837591,DE -1347837592,1347837592,HU -1347837593,1347837593,TR -1347837594,1347837595,RU -1347837596,1347837598,FI -1347837599,1347837600,DO -1347837601,1347837603,DE -1347837604,1347837604,CH -1347837605,1347837605,IN -1347837606,1347837608,TR -1347837609,1347837610,DE -1347837611,1347837616,LT -1347837617,1347837619,IN -1347837620,1347837620,NL -1347837621,1347837621,IN -1347837622,1347837623,DE -1347837624,1347837626,IN -1347837627,1347837629,RU -1347837630,1347837630,AE -1347837631,1347837631,GB -1347837632,1347837633,DE -1347837634,1347837634,NL -1347837635,1347837635,BD -1347837636,1347837637,DE -1347837638,1347837638,PK -1347837639,1347837641,DE -1347837642,1347837642,IT -1347837643,1347837643,GR -1347837644,1347837644,AE -1347837645,1347837645,RU -1347837646,1347837647,IN -1347837648,1347837648,RU -1347837649,1347837649,PT -1347837650,1347837650,DE -1347837651,1347837651,IT -1347837652,1347837652,DE -1347837653,1347837655,RU -1347837656,1347837660,DE -1347837661,1347837661,AE -1347837662,1347837666,DE -1347837667,1347837667,US -1347837668,1347837668,PK -1347837669,1347837951,DE +1347833856,1347837951,DE 1347837952,1347846143,RO 1347846144,1347850239,NO 1347850240,1347854335,IT @@ -46504,9 +43942,7 @@ 1347915776,1347919871,RU 1347919872,1347922303,DE 1347922304,1347922319,NL -1347922320,1347922475,DE -1347922476,1347922476,NL -1347922477,1347923967,DE +1347922320,1347923967,DE 1347923968,1347928063,CZ 1347928064,1347932159,RU 1347932160,1347936255,SK @@ -46662,7 +44098,9 @@ 1348198400,1348202495,NO 1348202496,1348206591,EU 1348206592,1348218879,RU -1348218880,1348219295,DE +1348218880,1348219231,DE +1348219232,1348219247,US +1348219248,1348219295,DE 1348219296,1348219327,A2 1348219328,1348219343,DE 1348219344,1348219359,ZM @@ -46701,11 +44139,7 @@ 1348280320,1348284415,AT 1348284416,1348288511,RU 1348288512,1348292607,IT -1348292608,1348294689,FR -1348294690,1348294690,GB -1348294691,1348296556,FR -1348296557,1348296557,GB -1348296558,1348296703,FR +1348292608,1348296703,FR 1348296704,1348300799,RU 1348300800,1348304895,UA 1348304896,1348308991,IT @@ -46713,7 +44147,11 @@ 1348313088,1348317183,GB 1348317184,1348321279,RU 1348321280,1348325375,GB -1348325376,1348329471,TR +1348325376,1348326895,TR +1348326896,1348326911,AT +1348326912,1348327711,TR +1348327712,1348327727,AT +1348327728,1348329471,TR 1348329472,1348337663,RS 1348337664,1348341759,ES 1348341760,1348345855,PL @@ -46883,7 +44321,13 @@ 1352150712,1352150719,TR 1352150720,1352150727,HU 1352150728,1352150743,ES -1352150744,1352293471,DE +1352150744,1352150759,DE +1352150760,1352150767,ES +1352150768,1352150775,JP +1352150776,1352150783,ES +1352150784,1352150791,DE +1352150792,1352150799,ES +1352150800,1352293471,DE 1352293472,1352293479,GB 1352293480,1352294911,DE 1352294912,1352295167,EU @@ -46957,9 +44401,7 @@ 1353268704,1353268711,GB 1353268712,1353269007,BE 1353269008,1353269015,GB -1353269016,1353269031,BE -1353269032,1353269039,GB -1353269040,1353269223,BE +1353269016,1353269223,BE 1353269224,1353269231,FR 1353269232,1353269247,BE 1353269248,1353270527,GB @@ -46995,8 +44437,8 @@ 1353273072,1353273087,GB 1353273088,1353273343,ES 1353273344,1353273631,BE -1353273632,1353273639,GB -1353273640,1353273671,BE +1353273632,1353273647,GB +1353273648,1353273671,BE 1353273672,1353273679,GB 1353273680,1353273711,BE 1353273712,1353273719,GB @@ -47019,18 +44461,22 @@ 1353280208,1353280231,IT 1353280232,1353280239,GB 1353280240,1353280343,IT -1353280344,1353280351,GB -1353280352,1353280767,IT +1353280344,1353280359,GB +1353280360,1353280767,IT 1353280768,1353280775,GB 1353280776,1353280783,IT -1353280784,1353281023,GB +1353280784,1353280847,GB +1353280848,1353280855,IT +1353280856,1353281023,GB 1353281024,1353281303,BE 1353281304,1353281319,GB 1353281320,1353281327,BE 1353281328,1353281343,GB 1353281344,1353281359,BE 1353281360,1353281367,GB -1353281368,1353281391,BE +1353281368,1353281375,BE +1353281376,1353281383,GB +1353281384,1353281391,BE 1353281392,1353281407,GB 1353281408,1353281535,BE 1353281536,1353282047,GB @@ -47144,7 +44590,9 @@ 1353310704,1353310719,GB 1353310720,1353310807,IT 1353310808,1353310815,GB -1353310816,1353311175,IT +1353310816,1353311095,IT +1353311096,1353311103,GB +1353311104,1353311175,IT 1353311176,1353311183,ES 1353311184,1353311231,IT 1353311232,1353312255,GB @@ -47473,7 +44921,8 @@ 1357875296,1357875327,IE 1357875328,1357875423,DE 1357875424,1357875439,GB -1357875440,1357875711,DE +1357875440,1357875455,DE +1357875456,1357875711,EU 1357875712,1357875967,PL 1357875968,1357876143,DE 1357876144,1357876151,SE @@ -47510,7 +44959,9 @@ 1357878592,1357878655,PL 1357878656,1357878719,DE 1357878720,1357878783,NL -1357878784,1357879807,DE +1357878784,1357879295,DE +1357879296,1357879551,EU +1357879552,1357879807,DE 1357879808,1357879871,RU 1357879872,1357879903,EU 1357879904,1357879935,DE @@ -47522,7 +44973,7 @@ 1357880544,1357880559,AT 1357880560,1357880831,DE 1357880832,1357881087,AT -1357881088,1357881343,DE +1357881088,1357881343,EU 1357881344,1357883647,FR 1357883648,1357883903,SE 1357883904,1357883911,GB @@ -47553,12 +45004,14 @@ 1357885192,1357885199,ES 1357885200,1357885215,EU 1357885216,1357885247,ES -1357885248,1357885439,DE +1357885248,1357885311,EU +1357885312,1357885439,DE 1357885440,1357885695,FR 1357885696,1357885951,DE 1357885952,1357886079,EU -1357886080,1357886207,DE -1357886208,1357886463,EU +1357886080,1357886105,DE +1357886106,1357886361,SE +1357886362,1357886463,EU 1357886464,1357887487,US 1357887488,1357888511,FR 1357888512,1357889023,DE @@ -47615,8 +45068,11 @@ 1357897536,1357897543,CZ 1357897544,1357897551,SE 1357897552,1357897559,GB -1357897560,1357897855,EU -1357897856,1357898495,DE +1357897560,1357897567,DE +1357897568,1357897855,EU +1357897856,1357897887,DE +1357897888,1357897919,EU +1357897920,1357898495,DE 1357898496,1357898751,EU 1357898752,1357899267,DE 1357899268,1357899275,FR @@ -47671,7 +45127,9 @@ 1357979648,1357983743,KZ 1357983744,1357983783,GB 1357983784,1357983791,IT -1357983792,1357983951,GB +1357983792,1357983847,GB +1357983848,1357983855,IT +1357983856,1357983951,GB 1357983952,1357983959,IT 1357983960,1357984079,GB 1357984080,1357984087,IT @@ -47685,8 +45143,8 @@ 1357984368,1357984375,IT 1357984376,1357984439,GB 1357984440,1357984447,IT -1357984448,1357984487,GB -1357984488,1357984495,IT +1357984448,1357984479,GB +1357984480,1357984495,IT 1357984496,1357984527,GB 1357984528,1357984567,IT 1357984568,1357984591,GB @@ -47775,8 +45233,8 @@ 1358176256,1358180351,RU 1358180352,1358184447,ES 1358184448,1358187775,SE -1358187776,1358188031,NO -1358188032,1358192639,SE +1358187776,1358187839,NO +1358187840,1358192639,SE 1358192640,1358196735,HU 1358196736,1358200831,IT 1358200832,1358209023,PL @@ -47818,9 +45276,7 @@ 1358230392,1358230399,CH 1358230400,1358232863,DE 1358232864,1358232867,IT -1358232868,1358232924,DE -1358232925,1358232925,CH -1358232926,1358233599,DE +1358232868,1358233599,DE 1358233600,1358237695,ES 1358237696,1358239231,FR 1358239232,1358239487,CH @@ -47879,9 +45335,7 @@ 1358384128,1358384143,FR 1358384144,1358384191,IT 1358384192,1358384199,FR -1358384200,1358384481,IT -1358384482,1358384482,SI -1358384483,1358385151,IT +1358384200,1358385151,IT 1358385152,1358389247,GB 1358389248,1358397439,RU 1358397440,1358397743,GB @@ -47962,8 +45416,8 @@ 1358471168,1358475263,FI 1358475264,1358479359,GB 1358479360,1358479391,LI -1358479392,1358479511,CH -1358479512,1358479551,LI +1358479392,1358479519,CH +1358479520,1358479551,LI 1358479552,1358479615,CH 1358479616,1358483455,LI 1358483456,1358487551,FR @@ -48641,7 +46095,9 @@ 1360457728,1360461823,FI 1360461824,1360465919,RU 1360465920,1360470015,UA -1360470016,1360474111,FR +1360470016,1360473743,FR +1360473744,1360473751,A2 +1360473752,1360474111,FR 1360474112,1360478207,GB 1360478208,1360482303,CH 1360482304,1360486399,IT @@ -48748,7 +46204,6 @@ 1360839168,1360842751,FR 1360842752,1360846847,RU 1360846848,1360850943,DE -1360850944,1360855039,IT 1360855040,1360859135,NL 1360859136,1360863231,LT 1360863232,1360867327,NO @@ -48800,7 +46255,9 @@ 1360987984,1360990207,GB 1360990208,1360990463,CZ 1360990464,1360994303,GB -1360994304,1360998399,CZ +1360994304,1360996287,CZ +1360996288,1360996303,SK +1360996304,1360998399,CZ 1360998400,1361002495,FI 1361002496,1361003776,GB 1361003777,1361003807,GN @@ -48851,7 +46308,8 @@ 1361035756,1361035759,IQ 1361035760,1361035763,ES 1361035764,1361035767,NL -1361035768,1361035775,IQ +1361035768,1361035771,IT +1361035772,1361035775,IQ 1361035776,1361035779,GB 1361035780,1361035783,PL 1361035784,1361035799,IQ @@ -49206,590 +46664,11 @@ 1362426624,1362426879,FR 1362426880,1362427903,MQ 1362427904,1362755583,FR -1362755584,1362759695,NL -1362759696,1362759703,BE -1362759704,1362759711,NL -1362759712,1362759727,BE -1362759728,1362759735,NL -1362759736,1362759767,BE -1362759768,1362759775,NL -1362759776,1362759791,BE -1362759792,1362759815,NL -1362759816,1362759847,BE -1362759848,1362759863,NL -1362759864,1362759879,BE -1362759880,1362759895,NL -1362759896,1362759903,BE -1362759904,1362759919,NL -1362759920,1362759927,BE -1362759928,1362759943,NL -1362759944,1362759967,BE -1362759968,1362759983,NL -1362759984,1362759999,BE -1362760000,1362760007,NL -1362760008,1362760031,BE -1362760032,1362760039,NL -1362760040,1362760047,BE -1362760048,1362760055,NL -1362760056,1362760087,BE -1362760088,1362760111,NL -1362760112,1362760119,BE -1362760120,1362760167,NL -1362760168,1362760191,BE -1362760192,1362760215,NL -1362760216,1362760223,BE -1362760224,1362760239,NL -1362760240,1362760271,BE -1362760272,1362760279,NL -1362760280,1362760287,BE -1362760288,1362760303,NL -1362760304,1362760351,BE -1362760352,1362760375,NL -1362760376,1362760383,BE -1362760384,1362760391,NL -1362760392,1362760399,BE -1362760400,1362760423,NL -1362760424,1362760439,BE -1362760440,1362760447,NL -1362760448,1362760455,BE -1362760456,1362760471,NL -1362760472,1362760479,BE -1362760480,1362760503,NL -1362760504,1362760511,BE -1362760512,1362760519,NL -1362760520,1362760535,BE -1362760536,1362760559,NL -1362760560,1362760567,BE -1362760568,1362760575,NL -1362760576,1362760591,BE -1362760592,1362760615,NL -1362760616,1362760639,BE -1362760640,1362760647,NL -1362760648,1362760663,BE -1362760664,1362760671,NL -1362760672,1362760679,BE -1362760680,1362760687,NL -1362760688,1362760703,BE -1362760704,1362760711,NL -1362760712,1362760719,BE -1362760720,1362760735,NL -1362760736,1362760751,BE -1362760752,1362760783,NL -1362760784,1362760815,BE -1362760816,1362760831,NL -1362760832,1362760839,BE -1362760840,1362760863,NL -1362760864,1362760879,BE -1362760880,1362760887,NL -1362760888,1362760903,BE -1362760904,1362760919,NL -1362760920,1362760927,BE -1362760928,1362760967,NL -1362760968,1362760983,BE -1362760984,1362761007,NL -1362761008,1362761023,BE -1362761024,1362761031,NL -1362761032,1362761063,BE -1362761064,1362761103,NL -1362761104,1362761111,BE -1362761112,1362761119,NL -1362761120,1362761127,BE -1362761128,1362761159,NL -1362761160,1362761167,BE -1362761168,1362761175,NL -1362761176,1362761199,BE -1362761200,1362761207,NL -1362761208,1362761215,BE -1362761216,1362761247,NL -1362761248,1362761255,BE -1362761256,1362761279,NL -1362761280,1362761287,BE -1362761288,1362761303,NL -1362761304,1362761311,BE -1362761312,1362761319,NL -1362761320,1362761327,BE -1362761328,1362761407,NL -1362761408,1362761415,BE -1362761416,1362761463,NL -1362761464,1362761471,BE -1362761472,1362761495,NL -1362761496,1362761503,BE -1362761504,1362761519,NL -1362761520,1362761535,BE -1362761536,1362761559,NL -1362761560,1362761567,BE -1362761568,1362761583,NL -1362761584,1362761591,BE -1362761592,1362761607,NL -1362761608,1362761623,BE -1362761624,1362761631,NL -1362761632,1362761647,BE -1362761648,1362761663,NL -1362761664,1362761679,BE -1362761680,1362761687,NL -1362761688,1362761695,BE -1362761696,1362761719,NL -1362761720,1362761727,BE -1362761728,1362761743,NL -1362761744,1362761767,BE -1362761768,1362761879,NL -1362761880,1362761895,BE -1362761896,1362761959,NL -1362761960,1362761967,BE -1362761968,1362761983,NL -1362761984,1362761999,BE -1362762000,1362762007,NL -1362762008,1362762015,BE -1362762016,1362762031,NL -1362762032,1362762039,BE -1362762040,1362762047,NL -1362762048,1362762063,BE -1362762064,1362762071,NL -1362762072,1362762079,BE -1362762080,1362762095,NL -1362762096,1362762127,BE -1362762128,1362762135,NL -1362762136,1362762143,BE -1362762144,1362762151,NL -1362762152,1362762175,BE -1362762176,1362762183,NL -1362762184,1362762199,BE -1362762200,1362762207,NL -1362762208,1362762215,BE -1362762216,1362762231,NL -1362762232,1362762255,BE -1362762256,1362762263,NL -1362762264,1362762271,BE -1362762272,1362762279,NL -1362762280,1362762287,BE -1362762288,1362762335,NL -1362762336,1362762343,BE -1362762344,1362762351,NL -1362762352,1362762367,BE -1362762368,1362762423,NL -1362762424,1362762439,BE -1362762440,1362762447,NL -1362762448,1362762455,BE -1362762456,1362762495,NL -1362762496,1362762527,BE -1362762528,1362762535,NL -1362762536,1362762567,BE -1362762568,1362762583,NL -1362762584,1362762599,BE -1362762600,1362762647,NL -1362762648,1362762655,BE -1362762656,1362762719,NL -1362762720,1362762727,BE -1362762728,1362762791,NL -1362762792,1362762807,BE -1362762808,1362762863,NL -1362762864,1362762879,BE -1362762880,1362762903,NL -1362762904,1362762911,BE -1362762912,1362762951,NL -1362762952,1362762983,BE -1362762984,1362762991,NL -1362762992,1362763031,BE -1362763032,1362763047,NL -1362763048,1362763055,BE -1362763056,1362763079,NL -1362763080,1362763087,BE -1362763088,1362763103,NL -1362763104,1362763119,BE -1362763120,1362763143,NL -1362763144,1362763151,BE -1362763152,1362763159,NL -1362763160,1362763175,BE -1362763176,1362763183,NL -1362763184,1362763191,BE -1362763192,1362763223,NL -1362763224,1362763231,BE -1362763232,1362763287,NL -1362763288,1362763295,BE -1362763296,1362763303,NL -1362763304,1362763311,BE -1362763312,1362763335,NL -1362763336,1362763343,BE -1362763344,1362763367,NL -1362763368,1362763375,BE -1362763376,1362763383,NL -1362763384,1362763415,BE -1362763416,1362763423,NL -1362763424,1362763439,BE -1362763440,1362763455,NL -1362763456,1362763463,BE -1362763464,1362763471,NL -1362763472,1362763479,BE -1362763480,1362763503,NL -1362763504,1362763519,BE -1362763520,1362763535,NL -1362763536,1362763543,BE -1362763544,1362763599,NL -1362763600,1362763615,BE -1362763616,1362763623,NL -1362763624,1362763631,BE -1362763632,1362763679,NL -1362763680,1362763687,BE -1362763688,1362763695,NL -1362763696,1362763703,BE -1362763704,1362763735,NL -1362763736,1362763751,BE -1362763752,1362763767,NL -1362763768,1362763791,BE -1362763792,1362763799,NL -1362763800,1362763815,BE -1362763816,1362763903,NL -1362763904,1362763927,BE -1362763928,1362763967,NL -1362763968,1362763975,BE -1362763976,1362763991,NL -1362763992,1362763999,BE -1362764000,1362764023,NL -1362764024,1362764031,BE -1362764032,1362764039,NL -1362764040,1362764047,BE -1362764048,1362764063,NL -1362764064,1362764087,BE -1362764088,1362764103,NL -1362764104,1362764111,BE -1362764112,1362764135,NL -1362764136,1362764143,BE -1362764144,1362764159,NL -1362764160,1362764167,BE -1362764168,1362764175,NL -1362764176,1362764183,BE -1362764184,1362764199,NL -1362764200,1362764207,BE -1362764208,1362764239,NL -1362764240,1362764247,BE -1362764248,1362764255,NL -1362764256,1362764263,BE -1362764264,1362764311,NL -1362764312,1362764327,BE -1362764328,1362764335,NL -1362764336,1362764351,BE -1362764352,1362764367,NL -1362764368,1362764375,BE -1362764376,1362764383,NL -1362764384,1362764391,BE -1362764392,1362764407,NL -1362764408,1362764415,BE -1362764416,1362764431,NL -1362764432,1362764439,BE -1362764440,1362764495,NL -1362764496,1362764527,BE -1362764528,1362764535,NL -1362764536,1362764543,BE -1362764544,1362764551,NL -1362764552,1362764559,BE -1362764560,1362764567,NL -1362764568,1362764575,BE -1362764576,1362764607,NL -1362764608,1362764615,BE -1362764616,1362764623,NL -1362764624,1362764639,BE -1362764640,1362764655,NL -1362764656,1362764679,BE -1362764680,1362764695,NL -1362764696,1362764703,BE -1362764704,1362764711,NL -1362764712,1362764735,BE -1362764736,1362764743,NL -1362764744,1362764751,BE -1362764752,1362764759,NL -1362764760,1362764775,BE -1362764776,1362764791,NL -1362764792,1362764807,BE -1362764808,1362764823,NL -1362764824,1362764831,BE -1362764832,1362764847,NL -1362764848,1362764855,BE -1362764856,1362764871,NL -1362764872,1362764887,BE -1362764888,1362764895,NL -1362764896,1362764911,BE -1362764912,1362764927,NL -1362764928,1362764935,BE -1362764936,1362764975,NL -1362764976,1362764991,BE -1362764992,1362764999,NL -1362765000,1362765015,BE -1362765016,1362765023,NL -1362765024,1362765047,BE -1362765048,1362765063,NL -1362765064,1362765071,BE -1362765072,1362765079,NL -1362765080,1362765087,BE -1362765088,1362765095,NL -1362765096,1362765127,BE -1362765128,1362765135,NL -1362765136,1362765151,BE -1362765152,1362765175,NL -1362765176,1362765191,BE -1362765192,1362765199,NL -1362765200,1362765215,BE -1362765216,1362765239,NL -1362765240,1362765247,BE -1362765248,1362765255,NL -1362765256,1362765263,BE -1362765264,1362765311,NL -1362765312,1362765319,BE -1362765320,1362765327,NL -1362765328,1362765343,BE -1362765344,1362765375,NL -1362765376,1362765407,BE -1362765408,1362765415,NL -1362765416,1362765431,BE -1362765432,1362765447,NL -1362765448,1362765455,BE -1362765456,1362765463,NL -1362765464,1362765471,BE -1362765472,1362765495,NL -1362765496,1362765511,BE -1362765512,1362765519,NL -1362765520,1362765535,BE -1362765536,1362765551,NL -1362765552,1362765559,BE -1362765560,1362765575,NL -1362765576,1362765599,BE -1362765600,1362765607,NL -1362765608,1362765615,BE -1362765616,1362765639,NL -1362765640,1362765647,BE -1362765648,1362765655,NL -1362765656,1362765663,BE -1362765664,1362765703,NL -1362765704,1362765711,BE -1362765712,1362765727,NL -1362765728,1362765735,BE -1362765736,1362765759,NL -1362765760,1362765767,BE -1362765768,1362765783,NL -1362765784,1362765807,BE -1362765808,1362765823,NL -1362765824,1362765847,BE -1362765848,1362765919,NL -1362765920,1362765943,BE -1362765944,1362765959,NL -1362765960,1362765967,BE -1362765968,1362765991,NL -1362765992,1362766015,BE -1362766016,1362766031,NL -1362766032,1362766071,BE -1362766072,1362766095,NL -1362766096,1362766119,BE -1362766120,1362766127,NL -1362766128,1362766143,BE -1362766144,1362766151,NL -1362766152,1362766159,BE -1362766160,1362766175,NL -1362766176,1362766183,BE -1362766184,1362766191,NL -1362766192,1362766207,BE -1362766208,1362766215,NL -1362766216,1362766231,BE -1362766232,1362766247,NL -1362766248,1362766255,BE -1362766256,1362766279,NL -1362766280,1362766295,BE -1362766296,1362766319,NL -1362766320,1362766335,BE -1362766336,1362766351,NL -1362766352,1362766359,BE -1362766360,1362766375,NL -1362766376,1362766383,BE -1362766384,1362766407,NL -1362766408,1362766447,BE -1362766448,1362766479,NL -1362766480,1362766487,BE -1362766488,1362766503,NL -1362766504,1362766511,BE -1362766512,1362766527,NL -1362766528,1362766535,BE -1362766536,1362766551,NL -1362766552,1362766591,BE -1362766592,1362766599,NL -1362766600,1362766615,BE -1362766616,1362766623,NL -1362766624,1362766639,BE -1362766640,1362766647,NL -1362766648,1362766663,BE -1362766664,1362766671,NL -1362766672,1362766687,BE -1362766688,1362766703,NL -1362766704,1362766711,BE -1362766712,1362766727,NL -1362766728,1362766751,BE -1362766752,1362766759,NL -1362766760,1362766767,BE -1362766768,1362766831,NL -1362766832,1362766847,BE -1362766848,1362766863,NL -1362766864,1362766871,BE -1362766872,1362766879,NL -1362766880,1362766887,BE -1362766888,1362766895,NL -1362766896,1362766903,BE -1362766904,1362766911,NL -1362766912,1362766919,BE -1362766920,1362766927,NL -1362766928,1362766935,BE -1362766936,1362766943,NL -1362766944,1362766959,BE -1362766960,1362766967,NL -1362766968,1362766983,BE -1362766984,1362766999,NL -1362767000,1362767031,BE -1362767032,1362767039,NL -1362767040,1362767063,BE -1362767064,1362767079,NL -1362767080,1362767087,BE -1362767088,1362767095,NL -1362767096,1362767103,BE -1362767104,1362767111,NL -1362767112,1362767127,BE -1362767128,1362767135,NL -1362767136,1362767143,BE -1362767144,1362767199,NL -1362767200,1362767207,BE -1362767208,1362767223,NL -1362767224,1362767231,BE -1362767232,1362767239,NL -1362767240,1362767255,BE -1362767256,1362767303,NL -1362767304,1362767319,BE -1362767320,1362767327,NL -1362767328,1362767335,BE -1362767336,1362767343,NL -1362767344,1362767367,BE -1362767368,1362767375,NL -1362767376,1362767383,BE -1362767384,1362767407,NL -1362767408,1362767423,BE -1362767424,1362767447,NL -1362767448,1362767463,BE -1362767464,1362767479,NL -1362767480,1362767495,BE -1362767496,1362767527,NL -1362767528,1362767535,BE -1362767536,1362767543,NL -1362767544,1362767551,BE -1362767552,1362767559,NL -1362767560,1362767575,BE -1362767576,1362767607,NL -1362767608,1362767639,BE -1362767640,1362767647,NL -1362767648,1362767663,BE -1362767664,1362767671,NL -1362767672,1362767679,BE -1362767680,1362767695,NL -1362767696,1362767711,BE -1362767712,1362767719,NL -1362767720,1362767759,BE -1362767760,1362767767,NL -1362767768,1362767775,BE -1362767776,1362767783,NL -1362767784,1362767807,BE -1362767808,1362767815,NL -1362767816,1362767839,BE -1362767840,1362767863,NL -1362767864,1362767871,BE -1362767872,1362813695,NL -1362813696,1362817023,BE -1362817024,1362817031,NL -1362817032,1362817039,BE -1362817040,1362817047,NL -1362817048,1362817087,BE -1362817088,1362817103,NL -1362817104,1362817119,BE -1362817120,1362817151,NL -1362817152,1362817215,BE -1362817216,1362817271,NL -1362817272,1362817279,BE -1362817280,1362817311,NL -1362817312,1362817343,BE -1362817344,1362817359,NL -1362817360,1362817375,BE -1362817376,1362817439,NL -1362817440,1362817455,BE -1362817456,1362817563,NL -1362817564,1362817583,BE -1362817584,1362817655,NL -1362817656,1362817663,BE -1362817664,1362817743,NL -1362817744,1362818091,BE -1362818092,1362818092,NL -1362818093,1362820095,BE -1362820096,1362837503,NL -1362837504,1362845695,BE -1362845696,1362870271,NL -1362870272,1362872319,BE -1362872320,1362872335,NL -1362872336,1362872343,BE -1362872344,1362872351,NL -1362872352,1362873855,BE -1362873856,1362873859,NL -1362873860,1362874367,BE -1362874368,1362874375,NL -1362874376,1362875903,BE -1362875904,1362875907,NL -1362875908,1362876423,BE -1362876424,1362876431,NL -1362876432,1362876439,BE -1362876440,1362876447,NL -1362876448,1362876455,BE -1362876456,1362876463,NL -1362876464,1362876471,BE -1362876472,1362876535,NL -1362876536,1362876543,BE -1362876544,1362876583,NL -1362876584,1362877963,BE -1362877964,1362877979,NL -1362877980,1362877983,BE -1362877984,1362877999,NL -1362878000,1362878003,BE -1362878004,1362878015,NL -1362878016,1362878463,BE -1362878464,1362878471,NL -1362878472,1362879999,BE -1362880000,1362880003,NL -1362880004,1362880527,BE -1362880528,1362880727,NL -1362880728,1362880735,BE -1362880736,1362880743,NL -1362880744,1362880751,BE -1362880752,1362881023,NL -1362881024,1362881055,BE -1362881056,1362881087,NL -1362881088,1362881103,BE -1362881104,1362881111,NL -1362881112,1362882047,BE -1362882048,1362882051,NL -1362882052,1362882055,BE -1362882056,1362882067,NL -1362882068,1362882071,BE -1362882072,1362882143,NL -1362882144,1362882155,BE -1362882156,1362882179,NL -1362882180,1362882183,BE -1362882184,1362882207,NL -1362882208,1362882211,BE -1362882212,1362882219,NL -1362882220,1362882223,BE -1362882224,1362882231,NL -1362882232,1362884095,BE -1362884096,1362884099,NL -1362884100,1362885119,BE -1362885120,1362886399,NL -1362886400,1362886400,BE -1362886401,1362886409,NL -1362886410,1362886413,BE -1362886414,1362886416,NL -1362886417,1362886419,BE -1362886420,1362886421,NL -1362886422,1362886422,BE -1362886423,1362886423,NL -1362886424,1362886655,BE +1362755584,1362886411,NL +1362886412,1362886413,BE +1362886414,1362886417,NL +1362886418,1362886419,BE +1362886420,1362886655,NL 1362886656,1363017727,ES 1363017728,1363148799,CH 1363148800,1363410943,FR @@ -50079,7 +46958,9 @@ 1365166499,1365172223,GB 1365172224,1365176319,LV 1365176320,1365180415,HU -1365180416,1365183231,DE +1365180416,1365180671,DE +1365180672,1365181183,US +1365181184,1365183231,DE 1365183232,1365183295,SC 1365183296,1365184511,DE 1365184512,1365192703,RU @@ -50263,9 +47144,7 @@ 1365220688,1365220727,US 1365220728,1365220735,JO 1365220736,1365220767,US -1365220768,1365220769,GB -1365220770,1365220770,CY -1365220771,1365220775,GB +1365220768,1365220775,GB 1365220776,1365220783,US 1365220784,1365220791,IN 1365220792,1365220799,KW @@ -50417,9 +47296,7 @@ 1371251344,1371251359,US 1371251360,1371275263,GB 1371275264,1371340799,BE -1371340800,1371374740,AT -1371374741,1371374741,SK -1371374742,1371406335,AT +1371340800,1371406335,AT 1371406336,1371471871,PL 1371471872,1371537407,NO 1371537408,1371602943,MA @@ -50626,7 +47503,9 @@ 1372698752,1372698783,EU 1372698784,1372698814,DE 1372698815,1372698879,EU -1372698880,1372700159,DE +1372698880,1372699647,DE +1372699648,1372699903,EU +1372699904,1372700159,DE 1372700160,1372700671,EU 1372700672,1372702463,DE 1372702464,1372702719,EU @@ -50774,27 +47653,13 @@ 1382039552,1382055935,DE 1382055936,1382072319,FR 1382072320,1382088703,RU -1382088704,1382092367,FR -1382092368,1382092399,MC -1382092400,1382092815,FR -1382092816,1382092831,MC -1382092832,1382092927,FR +1382088704,1382092927,FR 1382092928,1382092943,MC 1382092944,1382093055,FR 1382093056,1382093087,GB -1382093088,1382093119,FR -1382093120,1382093151,MC -1382093152,1382093503,FR -1382093504,1382093583,MC -1382093584,1382093823,FR -1382093824,1382093887,MC -1382093888,1382094079,FR -1382094080,1382094143,MC -1382094144,1382094335,FR -1382094336,1382094351,MC -1382094352,1382094591,FR -1382094592,1382094623,MC -1382094624,1382097919,FR +1382093088,1382093855,FR +1382093856,1382093887,MC +1382093888,1382097919,FR 1382097920,1382098431,IT 1382098432,1382105087,FR 1382105088,1382137855,DE @@ -50905,8 +47770,8 @@ 1382809600,1382967551,GB 1382967552,1382967807,GB 1382967808,1383025663,GB -1383025664,1383025672,DE -1383025673,1383025679,GB +1383025664,1383025671,DE +1383025672,1383025679,GB 1383025680,1383025711,DE 1383025712,1383025727,GB 1383025728,1383025759,DE @@ -51065,9 +47930,7 @@ 1383499040,1383499047,UA 1383499048,1383502335,RU 1383502336,1383502847,CH -1383502848,1383503615,RU -1383503616,1383503616,CZ -1383503617,1383505919,RU +1383502848,1383505919,RU 1383505920,1383514111,SA 1383514112,1383522303,FI 1383522304,1383530495,BG @@ -51444,33 +48307,21 @@ 1388331533,1388331534,IT 1388331535,1388331536,NL 1388331537,1388331538,PL -1388331539,1388338175,NL -1388338176,1388338178,FR -1388338179,1388338180,GB -1388338181,1388338182,DE -1388338183,1388338186,NL -1388338187,1388338188,IT -1388338189,1388338190,NL -1388338191,1388338192,PL -1388338193,1388339199,NL +1388331539,1388339199,NL 1388339200,1388347391,GB 1388347392,1388363775,DK 1388363776,1388371967,DE 1388371968,1388380159,CH -1388380160,1388388943,IT -1388388944,1388388951,NG -1388388952,1388388959,IT -1388388960,1388388967,NG -1388388968,1388389567,IT +1388380160,1388388991,IT +1388388992,1388389007,NG +1388389008,1388389567,IT 1388389568,1388389631,NG -1388389632,1388389943,IT -1388389944,1388389951,NG -1388389952,1388389967,IT -1388389968,1388389983,NG -1388389984,1388390167,IT +1388389632,1388390167,IT 1388390168,1388390191,NG 1388390192,1388390207,IT -1388390208,1388394495,NG +1388390208,1388390223,NG +1388390224,1388390239,IT +1388390240,1388394495,NG 1388394496,1388396031,IT 1388396032,1388396287,NG 1388396288,1388396543,IT @@ -51591,18 +48442,22 @@ 1388732416,1388740607,ES 1388740608,1388740623,GB 1388740624,1388740719,IE -1388740720,1388740727,GB +1388740720,1388740723,GB +1388740724,1388740725,IE +1388740726,1388740727,GB 1388740728,1388740731,IE 1388740732,1388740735,GB 1388740736,1388740847,IE -1388740848,1388741231,GB +1388740848,1388740855,GB +1388740856,1388740863,IE +1388740864,1388741231,GB 1388741232,1388741239,IE 1388741240,1388741375,GB 1388741376,1388741971,IE 1388741972,1388741983,GB 1388741984,1388742067,IE -1388742068,1388742079,GB -1388742080,1388742143,IE +1388742068,1388742071,GB +1388742072,1388742143,IE 1388742144,1388742335,GB 1388742336,1388742367,IE 1388742368,1388742463,GB @@ -51622,9 +48477,7 @@ 1388743651,1388743651,GB 1388743652,1388744683,IE 1388744684,1388744687,GB -1388744688,1388745951,IE -1388745952,1388745959,GB -1388745960,1388746263,IE +1388744688,1388746263,IE 1388746264,1388746271,GB 1388746272,1388746399,IE 1388746400,1388746495,GB @@ -51632,9 +48485,7 @@ 1388746852,1388746863,GB 1388746864,1388746967,IE 1388746968,1388746975,GB -1388746976,1388748303,IE -1388748304,1388748319,GB -1388748320,1388748349,IE +1388746976,1388748349,IE 1388748350,1388748351,GB 1388748352,1388748663,IE 1388748664,1388748667,GB @@ -51915,14 +48766,13 @@ 1389287936,1389288447,US 1389288448,1389289471,GN 1389289472,1389290495,NO -1389290496,1389290751,US +1389290496,1389290751,A2 1389290752,1389291007,FR -1389291008,1389291519,A2 -1389291520,1389292031,US +1389291008,1389291775,A2 +1389291776,1389292031,US 1389292032,1389292799,GH 1389292800,1389293055,MG -1389293056,1389293311,US -1389293312,1389294335,A2 +1389293056,1389294335,A2 1389294336,1389294591,US 1389294592,1389294719,A2 1389294720,1389294847,IQ @@ -52018,8 +48868,7 @@ 1389723648,1389756415,ES 1389756416,1389772799,SE 1389772800,1389778431,SI -1389778432,1389778943,CA -1389778944,1389780735,RS +1389778432,1389780735,RS 1389780736,1389780991,SI 1389780992,1389782783,HR 1389782784,1389783039,SI @@ -52093,7 +48942,6 @@ 1398840576,1398865919,NL 1398865920,1398867967,RU 1398867968,1398870015,NL -1398870016,1398872063,PL 1398872064,1398874111,BG 1398874112,1398876159,GB 1398876160,1398880255,DE @@ -52784,7 +49632,8 @@ 1404076288,1404076543,DE 1404076544,1404081663,LV 1404081664,1404083711,DE -1404083712,1404092415,NO +1404083712,1404084223,EE +1404084224,1404092415,NO 1404092416,1404108799,SE 1404108800,1404112895,NL 1404112896,1404114943,HR @@ -52796,19 +49645,18 @@ 1404166144,1404170239,LV 1404170240,1404174335,EE 1404174336,1404184063,SE -1404184064,1404184575,NO +1404184064,1404184575,EE 1404184576,1404186623,SE -1404186624,1404187647,NO +1404186624,1404187647,EE 1404187648,1404188671,SE 1404188672,1404189183,LT -1404189184,1404189695,EE -1404189696,1404190719,NO +1404189184,1404190719,EE 1404190720,1404192767,SE 1404192768,1404194815,LV 1404194816,1404195839,LT -1404195840,1404196351,NO +1404195840,1404196351,EE 1404196352,1404197375,LT -1404197376,1404197887,NO +1404197376,1404197887,EE 1404197888,1404198911,LT 1404198912,1404200959,SE 1404200960,1404203007,NL @@ -52977,17 +49825,17 @@ 1406789632,1406789887,FR 1406789888,1406790015,HU 1406790016,1406790143,ES -1406790144,1406790176,GB -1406790177,1406790207,ES +1406790144,1406790175,GB +1406790176,1406790207,ES 1406790208,1406791087,GB 1406791088,1406791103,ES 1406791104,1406791135,GB 1406791136,1406791143,IL 1406791144,1406791159,ES -1406791160,1406791167,GB -1406791168,1406791423,ES -1406791424,1406791551,GB -1406791552,1406791679,ES +1406791160,1406791359,GB +1406791360,1406791423,ES +1406791424,1406791567,GB +1406791568,1406791679,ES 1406791680,1406791935,GB 1406791936,1406791967,DE 1406791968,1406792191,ES @@ -53384,9 +50232,7 @@ 1407523056,1407523063,MU 1407523064,1407523071,GB 1407523072,1407523079,UG -1407523080,1407523087,GB -1407523088,1407523088,NG -1407523089,1407523103,GB +1407523080,1407523103,GB 1407523104,1407523111,UG 1407523112,1407523119,GB 1407523120,1407523127,CD @@ -53455,7 +50301,8 @@ 1407523960,1407523967,SS 1407523968,1407524047,GB 1407524048,1407524055,MU -1407524056,1407524087,GB +1407524056,1407524063,CD +1407524064,1407524087,GB 1407524088,1407524095,CD 1407524096,1407524103,MW 1407524104,1407524143,GB @@ -53590,7 +50437,9 @@ 1407526128,1407526135,BJ 1407526136,1407526143,GB 1407526144,1407526151,UG -1407526152,1407526231,GB +1407526152,1407526219,GB +1407526220,1407526223,BJ +1407526224,1407526231,GB 1407526232,1407526239,CD 1407526240,1407526711,GB 1407526712,1407526719,GN @@ -53606,7 +50455,10 @@ 1407527816,1407527823,ZW 1407527824,1407527831,GB 1407527832,1407527839,CM -1407527840,1407527919,GB +1407527840,1407527863,GB +1407527864,1407527871,AF +1407527872,1407527879,US +1407527880,1407527919,GB 1407527920,1407527935,IL 1407527936,1407528959,GB 1407528960,1407529178,US @@ -53970,7 +50822,8 @@ 1407539792,1407539799,NG 1407539800,1407539863,GB 1407539864,1407539879,NG -1407539880,1407539895,GB +1407539880,1407539887,GB +1407539888,1407539895,CM 1407539896,1407539903,NG 1407539904,1407539911,GB 1407539912,1407539919,NG @@ -54150,11 +51003,15 @@ 1407544136,1407544143,NE 1407544144,1407544167,GB 1407544168,1407544175,NE -1407544176,1407544583,GB +1407544176,1407544423,GB +1407544424,1407544431,GN +1407544432,1407544583,GB 1407544584,1407544591,NG 1407544592,1407544599,GB 1407544600,1407544607,NG -1407544608,1407544839,GB +1407544608,1407544647,GB +1407544648,1407544655,BF +1407544656,1407544839,GB 1407544840,1407544847,SL 1407544848,1407544887,GB 1407544888,1407544895,NG @@ -54179,7 +51036,8 @@ 1407545792,1407545799,GB 1407545800,1407545807,GQ 1407545808,1407545831,NG -1407545832,1407545847,GB +1407545832,1407545839,BF +1407545840,1407545847,GB 1407545848,1407545855,GQ 1407545856,1407545863,CI 1407545864,1407545871,GB @@ -54297,14 +51155,18 @@ 1407680512,1407680863,FR 1407680864,1407681023,GB 1407681024,1407681039,ES -1407681040,1407681087,GB +1407681040,1407681040,GB +1407681041,1407681054,ES +1407681055,1407681087,GB 1407681088,1407681095,ES 1407681096,1407681096,GB 1407681097,1407681102,ES 1407681103,1407681103,GB -1407681104,1407681291,ES -1407681292,1407681295,GB -1407681296,1407681535,ES +1407681104,1407681287,ES +1407681288,1407681303,GB +1407681304,1407681311,ES +1407681312,1407681343,GB +1407681344,1407681535,ES 1407681536,1407681983,GB 1407681984,1407681999,ES 1407682000,1407682303,GB @@ -54315,7 +51177,9 @@ 1407683432,1407683439,IL 1407683440,1407683471,GB 1407683472,1407683479,IL -1407683480,1407686431,GB +1407683480,1407686367,GB +1407686368,1407686383,IL +1407686384,1407686431,GB 1407686432,1407686463,ES 1407686464,1407686495,GB 1407686496,1407686527,ES @@ -54357,9 +51221,7 @@ 1407704192,1407704319,FR 1407704320,1407704383,GB 1407704384,1407704447,FR -1407704448,1407705167,GB -1407705168,1407705183,FR -1407705184,1407705599,GB +1407704448,1407705599,GB 1407705600,1407705727,FR 1407705728,1407705759,GB 1407705760,1407705791,FR @@ -54395,9 +51257,7 @@ 1407778816,1407844351,SE 1407844352,1407909887,RU 1407909888,1407975423,GR -1407975424,1408015312,DE -1408015313,1408015313,A2 -1408015314,1408040959,DE +1407975424,1408040959,DE 1408040960,1408106495,RU 1408106496,1408172031,PL 1408172032,1408237567,RU @@ -54529,20 +51389,12 @@ 1410014400,1410014463,ES 1410014464,1410014495,KW 1410014496,1410014591,IR -1410014592,1410014885,A2 -1410014886,1410014886,ES -1410014887,1410014895,A2 +1410014592,1410014895,A2 1410014896,1410014927,IR 1410014928,1410014935,PA 1410014936,1410014943,IR 1410014944,1410014951,AE -1410014952,1410014966,A2 -1410014967,1410014967,IR -1410014968,1410014968,A2 -1410014969,1410014969,IR -1410014970,1410014972,A2 -1410014973,1410014974,AE -1410014975,1410015007,A2 +1410014952,1410015007,A2 1410015008,1410015103,IR 1410015104,1410015135,ES 1410015136,1410015263,IR @@ -54641,8 +51493,8 @@ 1410028832,1410029823,A2 1410029824,1410030079,DE 1410030080,1410030335,A2 -1410030336,1410030591,DE -1410030592,1410035327,A2 +1410030336,1410030847,DE +1410030848,1410035327,A2 1410035328,1410035343,IR 1410035344,1410035983,A2 1410035984,1410035999,PA @@ -54829,8 +51681,7 @@ 1410752764,1410752779,AQ 1410752780,1410752787,DE 1410752788,1410752791,AQ -1410752792,1410753143,DE -1410753144,1410753151,SC +1410752792,1410753151,DE 1410753152,1410753155,AQ 1410753156,1410753159,DE 1410753160,1410753167,AQ @@ -54841,10 +51692,16 @@ 1410753368,1410753531,DE 1410753532,1410753791,AQ 1410753792,1410754303,DE -1410754304,1410754599,AQ -1410754600,1410754607,DE -1410754608,1410754767,AQ -1410754768,1410754775,DE +1410754304,1410754559,AQ +1410754560,1410754639,DE +1410754640,1410754647,AQ +1410754648,1410754663,DE +1410754664,1410754679,AQ +1410754680,1410754687,DE +1410754688,1410754695,AQ +1410754696,1410754719,DE +1410754720,1410754735,AQ +1410754736,1410754775,DE 1410754776,1410754783,TL 1410754784,1410754815,AQ 1410754816,1410754827,DE @@ -54866,11 +51723,7 @@ 1410759424,1410760191,DE 1410760192,1410760447,AQ 1410760448,1410760455,NL -1410760456,1410760463,DE -1410760464,1410760471,CN -1410760472,1410760479,DE -1410760480,1410760495,AQ -1410760496,1410760511,DE +1410760456,1410760511,DE 1410760512,1410760551,AQ 1410760552,1410760567,DE 1410760568,1410760571,AQ @@ -54890,7 +51743,9 @@ 1410850816,1410859007,DE 1410859008,1411383295,NL 1411383296,1411448831,LT -1411448832,1411451647,IT +1411448832,1411449727,IT +1411449728,1411449791,DE +1411449792,1411451647,IT 1411451648,1411451903,DE 1411451904,1411452159,IT 1411452160,1411452415,DE @@ -55038,7 +51893,9 @@ 1412002304,1412002559,SI 1412002560,1412002783,MK 1412002784,1412002815,SI -1412002816,1412003119,BA +1412002816,1412003103,BA +1412003104,1412003111,SI +1412003112,1412003119,BA 1412003120,1412003135,SI 1412003136,1412003151,BA 1412003152,1412003199,SI @@ -55157,7 +52014,9 @@ 1421869056,1422393343,BE 1422393344,1422393599,DE 1422393600,1422393855,IT -1422393856,1422397967,DE +1422393856,1422397311,DE +1422397312,1422397375,CH +1422397376,1422397967,DE 1422397968,1422397983,CH 1422397984,1422398847,DE 1422398848,1422398879,ES @@ -55400,7 +52259,9 @@ 1422467696,1422467711,RO 1422467712,1422467967,DE 1422467968,1422468031,BE -1422468032,1422468671,DE +1422468032,1422468191,DE +1422468192,1422468207,AT +1422468208,1422468671,DE 1422468672,1422468735,IT 1422468736,1422468799,DE 1422468800,1422468863,CN @@ -55648,8 +52509,8 @@ 1424608280,1424608383,FR 1424608384,1424608399,ES 1424608400,1424608511,FR -1424608512,1424608559,ES -1424608560,1424608567,GB +1424608512,1424608543,ES +1424608544,1424608567,GB 1424608568,1424608671,ES 1424608672,1424608691,GB 1424608692,1424609023,ES @@ -55659,8 +52520,7 @@ 1424609216,1424609231,DE 1424609232,1424609247,GB 1424609248,1424609255,DE -1424609256,1424609271,GB -1424609272,1424609279,DE +1424609256,1424609279,GB 1424609280,1424609375,CH 1424609376,1424609383,GB 1424609384,1424609395,CH @@ -55756,9 +52616,7 @@ 1424619224,1424619775,IT 1424619776,1424619807,BE 1424619808,1424619839,GB -1424619840,1424619855,BE -1424619856,1424619863,GB -1424619864,1424619915,BE +1424619840,1424619915,BE 1424619916,1424619919,GB 1424619920,1424620031,BE 1424620032,1424621311,GB @@ -55886,9 +52744,7 @@ 1425439728,1425440767,DE 1425440768,1425442815,SE 1425442816,1425444863,GB -1425444864,1425445126,IT -1425445127,1425445127,FR -1425445128,1425445139,IT +1425444864,1425445139,IT 1425445140,1425445141,GB 1425445142,1425446911,IT 1425446912,1425448959,GB @@ -55927,7 +52783,9 @@ 1425472040,1425473535,DE 1425473536,1425485311,RO 1425485312,1425485823,US -1425485824,1425506303,RO +1425485824,1425489407,RO +1425489408,1425489663,NL +1425489664,1425506303,RO 1425506304,1425522687,NO 1425522688,1425539071,IT 1425539072,1425712895,FI @@ -56310,854 +53168,14 @@ 1427570688,1427636223,FI 1427636224,1427668991,DK 1427668992,1427701759,SE -1427701760,1427705091,DE -1427705092,1427705094,US -1427705095,1427705096,IN -1427705097,1427705099,US -1427705100,1427705100,DE -1427705101,1427705101,IN -1427705102,1427705102,DE -1427705103,1427705109,IN -1427705110,1427705111,DE -1427705112,1427705115,US -1427705116,1427705116,IN -1427705117,1427705117,DE -1427705118,1427705118,BG -1427705119,1427705143,CA -1427705144,1427705144,DE -1427705145,1427705146,US -1427705147,1427705147,UA -1427705148,1427705148,US -1427705149,1427705149,DE -1427705150,1427705150,CA -1427705151,1427705155,DE -1427705156,1427705156,GR -1427705157,1427705157,DE -1427705158,1427705158,RO -1427705159,1427705159,BR -1427705160,1427705160,PT -1427705161,1427705161,IN -1427705162,1427705163,DE -1427705164,1427705164,MX -1427705165,1427705166,AT -1427705167,1427705175,DE -1427705176,1427705177,BR -1427705178,1427705178,DE -1427705179,1427705179,PK -1427705180,1427705180,MX -1427705181,1427705183,BR -1427705184,1427705184,DE -1427705185,1427705186,PK -1427705187,1427705187,LT -1427705188,1427705193,DE -1427705194,1427705195,IR -1427705196,1427705196,LT -1427705197,1427705198,DE -1427705199,1427705199,EG -1427705200,1427705200,BR -1427705201,1427705202,DE -1427705203,1427705203,US -1427705204,1427705204,PL -1427705205,1427705205,DK -1427705206,1427705210,DE -1427705211,1427705211,IN -1427705212,1427705225,DE -1427705226,1427705228,US -1427705229,1427705229,PK -1427705230,1427705237,DE -1427705238,1427705242,US -1427705243,1427705243,DE -1427705244,1427705245,US -1427705246,1427705250,LT -1427705251,1427705254,DE -1427705255,1427705255,TR -1427705256,1427705256,DE -1427705257,1427705257,TR -1427705258,1427705258,DE -1427705259,1427705260,TR -1427705261,1427705263,US -1427705264,1427705266,DE -1427705267,1427705267,US -1427705268,1427705268,DE -1427705269,1427705269,US -1427705270,1427705277,DE -1427705278,1427705278,US -1427705279,1427705290,DE -1427705291,1427705291,LT -1427705292,1427705297,DE -1427705298,1427705298,UA -1427705299,1427705299,CO -1427705300,1427705301,DE -1427705302,1427705302,PK -1427705303,1427705303,DE -1427705304,1427705304,GR -1427705305,1427705307,DE -1427705308,1427705309,LT -1427705310,1427705310,DE -1427705311,1427705311,SG -1427705312,1427705314,DE -1427705315,1427705315,NL -1427705316,1427705316,AR -1427705317,1427705321,DE -1427705322,1427705323,PT -1427705324,1427705328,DE -1427705329,1427705331,US -1427705332,1427705334,DE -1427705335,1427705335,IT -1427705336,1427705336,DE -1427705337,1427705337,BR -1427705338,1427705338,DE -1427705339,1427705339,GB -1427705340,1427705342,FR -1427705343,1427705360,DE -1427705361,1427705361,NO -1427705362,1427705364,DE -1427705365,1427705365,AT -1427705366,1427705373,DE -1427705374,1427705374,NO -1427705375,1427705375,DE -1427705376,1427705386,US -1427705387,1427705394,UG -1427705395,1427705396,DE -1427705397,1427705397,FI -1427705398,1427705403,DE -1427705404,1427705406,CA -1427705407,1427705491,DE -1427705492,1427705492,US -1427705493,1427705528,DE -1427705529,1427705529,US -1427705530,1427705543,DE -1427705544,1427705544,US -1427705545,1427705548,DE -1427705549,1427705549,MD -1427705550,1427705550,RO -1427705551,1427705555,DE -1427705556,1427705556,UA -1427705557,1427705557,DE -1427705558,1427705558,BR -1427705559,1427705559,DE -1427705560,1427705560,BR -1427705561,1427705561,BE -1427705562,1427705562,DE -1427705563,1427705563,BR -1427705564,1427705564,UA -1427705565,1427705566,DE -1427705567,1427705567,UA -1427705568,1427705569,DE -1427705570,1427705570,US -1427705571,1427705571,DE -1427705572,1427705572,TR -1427705573,1427705573,BR -1427705574,1427705574,GR -1427705575,1427705575,TR -1427705576,1427705576,UA -1427705577,1427705578,NL -1427705579,1427705579,ZA -1427705580,1427705582,DE -1427705583,1427705583,KR -1427705584,1427705584,NL -1427705585,1427705586,DE -1427705587,1427705587,GR -1427705588,1427705588,DE -1427705589,1427705589,BR -1427705590,1427705590,LK -1427705591,1427705592,DE -1427705593,1427705593,RU -1427705594,1427705594,US -1427705595,1427705595,DE -1427705596,1427705596,CH -1427705597,1427705604,DE -1427705605,1427705605,UY -1427705606,1427705614,DE -1427705615,1427705615,TR -1427705616,1427705616,GR -1427705617,1427705618,UY -1427705619,1427705619,UA -1427705620,1427705620,GR -1427705621,1427705625,DE -1427705626,1427705627,CO -1427705628,1427705629,DE -1427705630,1427705630,CY -1427705631,1427705631,US -1427705632,1427705632,DE -1427705633,1427705635,UA -1427705636,1427705638,DE -1427705639,1427705639,TN -1427705640,1427705642,DE -1427705643,1427705643,UA -1427705644,1427705644,US -1427705645,1427705649,DE -1427705650,1427705650,AE -1427705651,1427705654,DE -1427705655,1427705656,AE -1427705657,1427705657,DE -1427705658,1427705658,BR -1427705659,1427705660,DE -1427705661,1427705661,BE -1427705662,1427705669,DE -1427705670,1427705672,CA -1427705673,1427705673,DE -1427705674,1427705677,CA -1427705678,1427705678,DE -1427705679,1427705679,CA -1427705680,1427705680,DE -1427705681,1427705681,PK -1427705682,1427705683,AU -1427705684,1427705684,PK -1427705685,1427705685,BR -1427705686,1427705690,US -1427705691,1427705706,CA -1427705707,1427705722,US -1427705723,1427705724,DE -1427705725,1427705725,US -1427705726,1427705731,DE -1427705732,1427705732,PK -1427705733,1427705733,BD -1427705734,1427705734,AT -1427705735,1427705735,GB -1427705736,1427705746,DE -1427705747,1427705747,TR -1427705748,1427705748,PT -1427705749,1427705749,CA -1427705750,1427705750,CY -1427705751,1427705751,DE -1427705752,1427705752,TR -1427705753,1427705756,DE -1427705757,1427705759,GB -1427705760,1427705762,DE -1427705763,1427705763,UA -1427705764,1427705765,DE -1427705766,1427705766,LT -1427705767,1427705767,FR -1427705768,1427705769,DE -1427705770,1427705770,AU -1427705771,1427705771,FR -1427705772,1427705773,DE -1427705774,1427705774,PT -1427705775,1427705777,DE -1427705778,1427705778,TR -1427705779,1427705782,DE -1427705783,1427705784,LT -1427705785,1427705785,BR -1427705786,1427705786,UA -1427705787,1427705788,DE -1427705789,1427705789,AR -1427705790,1427705790,CR -1427705791,1427705795,DE -1427705796,1427705796,PT -1427705797,1427705797,UA -1427705798,1427705801,DE -1427705802,1427705802,RU -1427705803,1427705804,GR -1427705805,1427705805,BD -1427705806,1427705806,DE -1427705807,1427705807,AR -1427705808,1427705808,DE -1427705809,1427705809,BR -1427705810,1427705810,GR -1427705811,1427705811,US -1427705812,1427705812,DE -1427705813,1427705813,MD -1427705814,1427705814,DE -1427705815,1427705815,LT -1427705816,1427705816,SE -1427705817,1427705818,US -1427705819,1427705830,DE -1427705831,1427705831,US -1427705832,1427705832,MD -1427705833,1427705833,DE -1427705834,1427705834,AE -1427705835,1427705835,GR -1427705836,1427705836,DE -1427705837,1427705837,PT -1427705838,1427705840,NL -1427705841,1427705841,CY -1427705842,1427705842,AT -1427705843,1427705843,GE -1427705844,1427705845,DE -1427705846,1427705846,RU -1427705847,1427705847,UA -1427705848,1427705848,DE -1427705849,1427705849,DK -1427705850,1427705850,TR -1427705851,1427705851,UA -1427705852,1427706371,DE -1427706372,1427706378,US -1427706379,1427706380,BR -1427706381,1427706384,US -1427706385,1427706386,DE -1427706387,1427706392,LT -1427706393,1427706396,DE -1427706397,1427706404,US -1427706405,1427706407,DE -1427706408,1427706408,BR -1427706409,1427706409,IN -1427706410,1427706410,BR -1427706411,1427706411,IN -1427706412,1427706412,BR -1427706413,1427706413,DE -1427706414,1427706416,IN -1427706417,1427706418,DE -1427706419,1427706421,IN -1427706422,1427706422,PA -1427706423,1427706426,IN -1427706427,1427706427,DE -1427706428,1427706429,IN -1427706430,1427706436,DE -1427706437,1427706438,BR -1427706439,1427706446,DE -1427706447,1427706448,US -1427706449,1427706449,DE -1427706450,1427706478,US -1427706479,1427706479,DE -1427706480,1427706484,BR -1427706485,1427706492,US -1427706493,1427706563,DE -1427706564,1427706567,CA -1427706568,1427706573,DE -1427706574,1427706574,CA -1427706575,1427706577,DE -1427706578,1427706580,CA -1427706581,1427706581,NO -1427706582,1427706582,US -1427706583,1427706583,NO -1427706584,1427706586,DE -1427706587,1427706588,LT -1427706589,1427706589,IN -1427706590,1427706597,DE -1427706598,1427706598,IN -1427706599,1427706599,DE -1427706600,1427706600,IN -1427706601,1427706601,BR -1427706602,1427706603,DE -1427706604,1427706605,BR -1427706606,1427706607,DE -1427706608,1427706612,BR -1427706613,1427706617,IN -1427706618,1427706621,US -1427706622,1427706757,DE -1427706758,1427706760,MD -1427706761,1427706763,TR -1427706764,1427706764,UA -1427706765,1427706765,IN -1427706766,1427706766,ZA -1427706767,1427706769,AE -1427706770,1427706770,UA -1427706771,1427706772,DE -1427706773,1427706773,UA -1427706774,1427706774,DE -1427706775,1427706775,UG -1427706776,1427706776,BR -1427706777,1427706777,GR -1427706778,1427706778,ZA -1427706779,1427706781,GB -1427706782,1427706782,PK -1427706783,1427706784,DE -1427706785,1427706785,ZA -1427706786,1427706786,TR -1427706787,1427706787,DE -1427706788,1427706789,TR -1427706790,1427706792,DE -1427706793,1427706795,NL -1427706796,1427706796,HU -1427706797,1427706798,NL -1427706799,1427706799,RO -1427706800,1427706800,UA -1427706801,1427706801,DE -1427706802,1427706802,ES -1427706803,1427706803,DE -1427706804,1427706806,AR -1427706807,1427706808,GR -1427706809,1427706810,DE -1427706811,1427706811,NL -1427706812,1427706813,CA -1427706814,1427706814,FR -1427706815,1427706815,DE -1427706816,1427706823,US -1427706824,1427706824,CA -1427706825,1427706825,DE -1427706826,1427706828,LT -1427706829,1427706851,DE -1427706852,1427706853,IN -1427706854,1427706855,DE -1427706856,1427706856,US -1427706857,1427706859,BR -1427706860,1427706863,CA -1427706864,1427706872,US -1427706873,1427706873,CA -1427706874,1427706874,US -1427706875,1427706875,CA -1427706876,1427706878,US -1427706879,1427706879,BR -1427706880,1427707391,DE -1427707392,1427707392,US -1427707393,1427707396,DE -1427707397,1427707397,RU -1427707398,1427707775,DE -1427707776,1427707777,IL -1427707778,1427707778,BE -1427707779,1427707779,PL -1427707780,1427707782,TR -1427707783,1427707783,BG -1427707784,1427707785,UA -1427707786,1427707788,DE -1427707789,1427707789,HR -1427707790,1427707791,LV -1427707792,1427707794,DE -1427707795,1427707795,CH -1427707796,1427707798,CA -1427707799,1427707800,DE -1427707801,1427707803,TR -1427707804,1427707804,DE -1427707805,1427707805,BE -1427707806,1427708672,DE -1427708673,1427708673,TR -1427708674,1427708674,DE -1427708675,1427708675,RU -1427708676,1427708676,NL -1427708677,1427708677,IL -1427708678,1427708678,ES -1427708679,1427708680,GB -1427708681,1427708681,ES -1427708682,1427708683,DE -1427708684,1427708684,NL -1427708685,1427708686,DE -1427708687,1427708687,TR -1427708688,1427708691,DE -1427708692,1427708692,TR -1427708693,1427708693,BD -1427708694,1427708694,DE -1427708695,1427708695,NL -1427708696,1427708696,GR -1427708697,1427708699,BZ -1427708700,1427708700,PK -1427708701,1427708701,DE -1427708702,1427708702,FR -1427708703,1427708703,GR -1427708704,1427708706,DE -1427708707,1427708707,LT -1427708708,1427708708,UA -1427708709,1427708709,DE -1427708710,1427708710,BD -1427708711,1427708711,ES -1427708712,1427708712,AT -1427708713,1427708713,LT -1427708714,1427708714,DE -1427708715,1427708716,LT -1427708717,1427708718,DE -1427708719,1427708719,AL -1427708720,1427708720,PK -1427708721,1427708721,CH -1427708722,1427708722,KZ -1427708723,1427708723,ZA -1427708724,1427708724,NL -1427708725,1427708726,TR -1427708727,1427708727,DE -1427708728,1427708730,IT -1427708731,1427708731,GR -1427708732,1427708732,DE -1427708733,1427708733,US -1427708734,1427708740,DE -1427708741,1427708741,BE -1427708742,1427708742,DE -1427708743,1427708743,UA -1427708744,1427708744,DE -1427708745,1427708745,NL -1427708746,1427708749,DE -1427708750,1427708750,US -1427708751,1427708751,RO -1427708752,1427708752,DE -1427708753,1427708753,BD -1427708754,1427708754,IT -1427708755,1427708760,DE -1427708761,1427708761,ES -1427708762,1427708764,DE -1427708765,1427708765,UA -1427708766,1427708766,RU -1427708767,1427708771,DE -1427708772,1427708772,IE -1427708773,1427708773,RU -1427708774,1427708775,GB -1427708776,1427708777,UA -1427708778,1427708781,DE -1427708782,1427708782,SI -1427708783,1427708783,US -1427708784,1427708784,AT -1427708785,1427708785,DE -1427708786,1427708786,IT -1427708787,1427708787,MD -1427708788,1427708790,HR -1427708791,1427708802,DE -1427708803,1427708804,MD -1427708805,1427708805,LK -1427708806,1427708807,US -1427708808,1427708808,NO -1427708809,1427708809,UA -1427708810,1427708810,RO -1427708811,1427708812,DE -1427708813,1427708813,RO -1427708814,1427708814,MD -1427708815,1427708817,DE -1427708818,1427708818,PH -1427708819,1427708819,IT -1427708820,1427708822,NL -1427708823,1427708825,DE -1427708826,1427708827,TR -1427708828,1427708828,PK -1427708829,1427708829,AT -1427708830,1427708833,DE -1427708834,1427708834,CY -1427708835,1427708835,TW -1427708836,1427708842,DE -1427708843,1427708843,EG -1427708844,1427708844,DE -1427708845,1427708845,AT -1427708846,1427708846,TR -1427708847,1427708847,RU -1427708848,1427708850,IN -1427708851,1427708851,GR -1427708852,1427708852,KZ -1427708853,1427708853,RO -1427708854,1427708854,DE -1427708855,1427708856,UA -1427708857,1427708858,CL -1427708859,1427708859,DE -1427708860,1427708860,BR -1427708861,1427708861,TN -1427708862,1427708862,UA -1427708863,1427708865,DE -1427708866,1427708866,TR -1427708867,1427708871,DE -1427708872,1427708872,DK -1427708873,1427708873,DE -1427708874,1427708874,TR -1427708875,1427708875,DE -1427708876,1427708876,HR -1427708877,1427708877,DE -1427708878,1427708880,TR -1427708881,1427708881,CN -1427708882,1427708884,DE -1427708885,1427708887,BG -1427708888,1427708888,UA -1427708889,1427708894,DE -1427708895,1427708895,AR -1427708896,1427708898,PE -1427708899,1427708899,SI -1427708900,1427708901,ES -1427708902,1427708902,DE -1427708903,1427708905,IL -1427708906,1427708907,UA -1427708908,1427708908,IT -1427708909,1427708909,CZ -1427708910,1427708910,IT -1427708911,1427708912,CZ -1427708913,1427708915,DE -1427708916,1427708918,UA -1427708919,1427708921,US -1427708922,1427708922,DE -1427708923,1427708925,CZ -1427708926,1427708926,UA -1427708927,1427709823,DE -1427709824,1427709824,FR -1427709825,1427709826,TR -1427709827,1427709827,DE -1427709828,1427709830,TW -1427709831,1427709833,PE -1427709834,1427709836,EG -1427709837,1427709838,BR -1427709839,1427709841,FR -1427709842,1427709842,UA -1427709843,1427709845,DE -1427709846,1427709846,AT -1427709847,1427709849,RO -1427709850,1427721744,DE -1427721745,1427721745,RU -1427721746,1427721746,CH -1427721747,1427721747,LV -1427721748,1427721753,DE -1427721754,1427721756,TR -1427721757,1427721763,DE -1427721764,1427721764,CY -1427721765,1427721765,DE -1427721766,1427721766,BD -1427721767,1427721768,DE -1427721769,1427721769,IT -1427721770,1427721770,RU -1427721771,1427721776,DE -1427721777,1427721777,ES -1427721778,1427721784,DE -1427721785,1427721785,BD -1427721786,1427721786,DE -1427721787,1427721787,GR -1427721788,1427721788,NL -1427721789,1427721789,PK -1427721790,1427721790,LT -1427721791,1427721792,DE -1427721793,1427721793,CY -1427721794,1427721794,US -1427721795,1427721796,RU -1427721797,1427721797,BD -1427721798,1427721798,GB -1427721799,1427721801,TR -1427721802,1427721802,US -1427721803,1427721803,BD -1427721804,1427721804,DK -1427721805,1427721806,DE -1427721807,1427721809,CA -1427721810,1427721810,TR -1427721811,1427721817,DE -1427721818,1427721818,IN -1427721819,1427721821,DE -1427721822,1427721822,EE -1427721823,1427721823,BD -1427721824,1427721825,IN -1427721826,1427721827,DE -1427721828,1427721828,PK -1427721829,1427721830,DE -1427721831,1427721831,UA -1427721832,1427721834,DE -1427721835,1427721836,RO -1427721837,1427721837,BD -1427721838,1427721838,GR -1427721839,1427721842,DE -1427721843,1427721843,US -1427721844,1427721844,DE -1427721845,1427721845,GR -1427721846,1427721846,SK -1427721847,1427721847,DE -1427721848,1427721848,RU -1427721849,1427721851,LT -1427721852,1427721852,DE -1427721853,1427721853,IT -1427721854,1427721854,DK -1427721855,1427721859,DE -1427721860,1427721860,US -1427721861,1427721861,DK -1427721862,1427721863,US -1427721864,1427721864,BD -1427721865,1427721865,UA -1427721866,1427721866,DE -1427721867,1427721869,NL -1427721870,1427721877,DE -1427721878,1427721878,IT -1427721879,1427721879,LV -1427721880,1427721880,DE -1427721881,1427721881,LV -1427721882,1427721882,BD -1427721883,1427721883,PK -1427721884,1427721884,ES -1427721885,1427721885,PK -1427721886,1427721886,DE -1427721887,1427721889,TR -1427721890,1427721891,DE -1427721892,1427721892,IE -1427721893,1427721894,DE -1427721895,1427721897,HR -1427721898,1427721898,IE -1427721899,1427721899,TR -1427721900,1427721904,DE -1427721905,1427721905,TR -1427721906,1427721906,IE -1427721907,1427721908,DE -1427721909,1427721910,KY -1427721911,1427721912,IN -1427721913,1427721913,DE -1427721914,1427721914,IE -1427721915,1427721916,NL -1427721917,1427721917,IE -1427721918,1427721918,IN -1427721919,1427721923,DE -1427721924,1427721924,NL -1427721925,1427721926,DE -1427721927,1427721927,UA -1427721928,1427721928,US -1427721929,1427721930,DE -1427721931,1427721932,US -1427721933,1427721933,DE -1427721934,1427721935,RO -1427721936,1427721938,BR -1427721939,1427721939,DE -1427721940,1427721940,UA -1427721941,1427723008,DE -1427723009,1427723009,UA -1427723010,1427723012,CA -1427723013,1427723013,IN -1427723014,1427723014,GR -1427723015,1427723016,IT -1427723017,1427723017,BR -1427723018,1427723018,DE -1427723019,1427723021,RU -1427723022,1427723023,TR -1427723024,1427723024,DE -1427723025,1427723025,RU -1427723026,1427723026,DE -1427723027,1427723027,PE -1427723028,1427723028,US -1427723029,1427723031,DE -1427723032,1427723034,RU -1427723035,1427723038,DE -1427723039,1427723039,UA -1427723040,1427723040,US -1427723041,1427723046,DE -1427723047,1427723047,PE -1427723048,1427723048,TR -1427723049,1427723050,DE -1427723051,1427723051,MD -1427723052,1427723052,DE -1427723053,1427723053,AZ -1427723054,1427723055,DE -1427723056,1427723056,BD -1427723057,1427723057,TW -1427723058,1427723058,DE -1427723059,1427723059,TW -1427723060,1427723068,DE -1427723069,1427723069,TR -1427723070,1427723070,IT -1427723071,1427723391,DE +1427701760,1427723391,DE 1427723392,1427723519,LI -1427723520,1427725887,DE -1427725888,1427725893,TR -1427725894,1427725895,DE -1427725896,1427725897,US -1427725898,1427725900,CA -1427725901,1427725901,TR -1427725902,1427725902,UA -1427725903,1427725903,DE -1427725904,1427725905,UA -1427725906,1427725906,DE -1427725907,1427725909,BE -1427725910,1427725913,TR -1427725914,1427725914,ES -1427725915,1427725918,DE -1427725919,1427725919,ES -1427725920,1427725920,GR -1427725921,1427725926,DE -1427725927,1427725927,GB -1427725928,1427725928,DE -1427725929,1427725929,SA -1427725930,1427725930,GR -1427725931,1427725931,CZ -1427725932,1427725983,DE -1427725984,1427725984,EG -1427725985,1427725985,DE -1427725986,1427725986,US -1427725987,1427725987,IL -1427725988,1427725989,DE -1427725990,1427725990,UA -1427725991,1427725994,DE -1427725995,1427725995,TR -1427725996,1427725996,DE -1427725997,1427725997,US -1427725998,1427726478,DE -1427726479,1427726479,IN -1427726480,1427726480,DE -1427726481,1427726483,LT -1427726484,1427726484,US -1427726485,1427726486,DE -1427726487,1427726488,IN -1427726489,1427726489,DE -1427726490,1427726490,BR -1427726491,1427726493,US -1427726494,1427726494,DE -1427726495,1427726495,BR -1427726496,1427726496,DE -1427726497,1427726499,BR -1427726500,1427726505,DE -1427726506,1427726511,UA -1427726512,1427726513,DE -1427726514,1427726515,IN -1427726516,1427726520,DE -1427726521,1427726522,BR -1427726523,1427726526,PK -1427726527,1427726529,US -1427726530,1427726530,DE -1427726531,1427726533,TR -1427726534,1427726535,US -1427726536,1427726537,TR -1427726538,1427726538,CA -1427726539,1427726539,TR -1427726540,1427726542,CA -1427726543,1427726543,TR -1427726544,1427726545,IN -1427726546,1427726546,CA -1427726547,1427726552,DE -1427726553,1427726553,US -1427726554,1427726558,AE -1427726559,1427726563,US -1427726564,1427726577,IN -1427726578,1427726585,DE -1427726586,1427726586,TR -1427726587,1427726588,DE -1427726589,1427726590,TR -1427726591,1427726789,DE -1427726790,1427726790,MD -1427726791,1427726792,DE -1427726793,1427726793,UA -1427726794,1427726795,DE -1427726796,1427726796,UA -1427726797,1427726809,DE -1427726810,1427726810,NO -1427726811,1427726811,DE -1427726812,1427726812,TR -1427726813,1427726825,DE -1427726826,1427726826,CY -1427726827,1427726835,DE -1427726836,1427726836,US -1427726837,1427726837,DE -1427726838,1427726838,AZ -1427726839,1427726840,DE -1427726841,1427726841,RO -1427726842,1427726845,DE -1427726846,1427726846,TR -1427726847,1427726980,DE -1427726981,1427726982,TW -1427726983,1427726983,BD -1427726984,1427726984,DE -1427726985,1427726985,IT -1427726986,1427726986,MD -1427726987,1427727007,DE -1427727008,1427727008,TW -1427727009,1427727235,DE -1427727236,1427727236,IN -1427727237,1427727237,DE -1427727238,1427727238,BR -1427727239,1427727240,DE -1427727241,1427727241,TR -1427727242,1427727244,DE -1427727245,1427727245,BR -1427727246,1427727247,CH -1427727248,1427727248,DE -1427727249,1427727249,IN -1427727250,1427727255,DE -1427727256,1427727256,BR -1427727257,1427727258,DE -1427727259,1427727261,CA -1427727262,1427727270,DE -1427727271,1427727271,IN -1427727272,1427727272,DE -1427727273,1427727273,AE -1427727274,1427727276,DE -1427727277,1427727277,IN -1427727278,1427727278,DE -1427727279,1427727281,LV -1427727282,1427727282,CA -1427727283,1427727283,DE -1427727284,1427727284,UA -1427727285,1427727285,LV -1427727286,1427727288,US -1427727289,1427727291,LT -1427727292,1427727293,DE -1427727294,1427727307,LT -1427727308,1427727348,DE -1427727349,1427727349,BR -1427727350,1427728383,DE +1427723520,1427728383,DE 1427728384,1427728415,BR 1427728416,1427728447,RU 1427728448,1427728479,DE 1427728480,1427728511,CY -1427728512,1427728575,DE -1427728576,1427728639,BR -1427728640,1427728703,DE +1427728512,1427728703,DE 1427728704,1427728735,RU 1427728736,1427728799,DE 1427728800,1427728831,RU @@ -57169,618 +53187,23 @@ 1427729024,1427729055,GB 1427729056,1427729087,CA 1427729088,1427729119,MA -1427729120,1427729151,BR -1427729152,1427729215,DE +1427729120,1427729215,DE 1427729216,1427729279,IN 1427729280,1427729311,DE 1427729312,1427729343,GR 1427729344,1427729375,DE 1427729376,1427729407,LT -1427729408,1427729925,DE -1427729926,1427729926,CY -1427729927,1427729927,TR -1427729928,1427729928,GT -1427729929,1427729929,DE -1427729930,1427729930,HR -1427729931,1427729932,DE -1427729933,1427729933,MD -1427729934,1427729937,DE -1427729938,1427729938,PE -1427729939,1427729942,DE -1427729943,1427729944,EG -1427729945,1427729946,DE -1427729947,1427729947,EG -1427729948,1427729958,DE -1427729959,1427729959,CY -1427729960,1427729960,AL -1427729961,1427729961,DE -1427729962,1427729963,AE -1427729964,1427729966,DE -1427729967,1427729968,UA -1427729969,1427729969,DE -1427729970,1427729970,AT -1427729971,1427729974,DE -1427729975,1427729975,BD -1427729976,1427729976,AU -1427729977,1427729981,DE -1427729982,1427729982,MD -1427729983,1427730002,DE -1427730003,1427730003,US -1427730004,1427730010,DE -1427730011,1427730011,RU -1427730012,1427730015,DE -1427730016,1427730017,UA -1427730018,1427730018,DE -1427730019,1427730019,UA -1427730020,1427730024,DE -1427730025,1427730026,AT -1427730027,1427730028,US -1427730029,1427730029,DE -1427730030,1427730030,MD -1427730031,1427730033,DE -1427730034,1427730034,UA -1427730035,1427730035,TR -1427730036,1427730041,DE -1427730042,1427730042,UA -1427730043,1427730045,DE -1427730046,1427730046,MD -1427730047,1427730051,DE -1427730052,1427730052,MD -1427730053,1427730056,DE -1427730057,1427730057,DK -1427730058,1427730058,DE -1427730059,1427730059,UA -1427730060,1427730060,SE -1427730061,1427730061,RU -1427730062,1427730066,DE -1427730067,1427730067,PE -1427730068,1427730068,PK -1427730069,1427730076,DE -1427730077,1427730077,BD -1427730078,1427730078,DE -1427730079,1427730079,MD -1427730080,1427730080,DE -1427730081,1427730081,AE -1427730082,1427730084,DE -1427730085,1427730085,BG -1427730086,1427730089,DE -1427730090,1427730090,AE -1427730091,1427730098,DE -1427730099,1427730099,SE -1427730100,1427730102,DE -1427730103,1427730103,AE -1427730104,1427730104,AT -1427730105,1427730105,DE -1427730106,1427730107,RU -1427730108,1427730108,SA -1427730109,1427730117,DE -1427730118,1427730118,US -1427730119,1427730119,UA -1427730120,1427730120,SA -1427730121,1427730122,DE -1427730123,1427730124,SA -1427730125,1427730134,DE -1427730135,1427730135,IN -1427730136,1427730137,DE -1427730138,1427730138,RU -1427730139,1427730139,DE -1427730140,1427730140,BD -1427730141,1427730142,DE -1427730143,1427730144,US -1427730145,1427730145,HR -1427730146,1427730147,BG -1427730148,1427730148,DE -1427730149,1427730149,UA -1427730150,1427730150,GB -1427730151,1427730151,RU -1427730152,1427730152,DE -1427730153,1427730153,RU -1427730154,1427730154,IN -1427730155,1427730157,DE -1427730158,1427730158,TR -1427730159,1427730159,GR -1427730160,1427730160,DE -1427730161,1427730161,SE -1427730162,1427730162,DE -1427730163,1427730163,DK -1427730164,1427730164,LV -1427730165,1427730165,DE -1427730166,1427730166,NL -1427730167,1427730167,DE -1427730168,1427730170,DK -1427730171,1427730171,LT -1427730172,1427730172,AR -1427730173,1427730173,NL -1427730174,1427730174,RU -1427730175,1427731462,DE -1427731463,1427731463,TR -1427731464,1427731469,DE -1427731470,1427731470,CY -1427731471,1427731471,SI -1427731472,1427731478,DE -1427731479,1427731480,IT -1427731481,1427731483,DE -1427731484,1427731485,IT -1427731486,1427731488,DE -1427731489,1427731489,SI -1427731490,1427731490,DE -1427731491,1427731492,TR -1427731493,1427731495,DE -1427731496,1427731496,PE -1427731497,1427731497,PH -1427731498,1427731511,DE -1427731512,1427731512,US -1427731513,1427731525,DE -1427731526,1427731526,NO -1427731527,1427731528,DE -1427731529,1427731529,TR -1427731530,1427731551,DE -1427731552,1427731583,BR -1427731584,1427739889,DE +1427729408,1427739889,DE 1427739890,1427739890,RU -1427739891,1427741183,DE -1427741184,1427741184,US -1427741185,1427741185,BD -1427741186,1427741186,TR -1427741187,1427741191,DE -1427741192,1427741192,PE -1427741193,1427741195,DE -1427741196,1427741196,AZ -1427741197,1427741197,US -1427741198,1427741206,DE -1427741207,1427741207,UA -1427741208,1427741209,DE -1427741210,1427741210,UG -1427741211,1427741212,DE -1427741213,1427741213,US -1427741214,1427741214,PE -1427741215,1427741218,DE -1427741219,1427741220,NL -1427741221,1427741224,DE -1427741225,1427741227,US -1427741228,1427741228,TR -1427741229,1427741229,DE -1427741230,1427741230,TR -1427741231,1427741231,DE -1427741232,1427741232,TR -1427741233,1427741234,DE -1427741235,1427741235,PL -1427741236,1427741237,RU -1427741238,1427741242,DE -1427741243,1427741243,NL -1427741244,1427741244,DE -1427741245,1427741245,SI -1427741246,1427741247,DE -1427741248,1427741248,TR -1427741249,1427741249,AZ -1427741250,1427741250,DE -1427741251,1427741253,RO -1427741254,1427741254,BR -1427741255,1427741256,TR -1427741257,1427741258,DE -1427741259,1427741259,TR -1427741260,1427741261,DE -1427741262,1427741263,TR -1427741264,1427741265,DE -1427741266,1427741266,MX -1427741267,1427741267,DE -1427741268,1427741268,UA -1427741269,1427741270,DE -1427741271,1427741271,EC -1427741272,1427741272,TH -1427741273,1427741273,DE -1427741274,1427741274,HR -1427741275,1427741276,DE -1427741277,1427741278,ES -1427741279,1427741280,HR -1427741281,1427741281,BR -1427741282,1427741282,PL -1427741283,1427741283,GR -1427741284,1427741284,TR -1427741285,1427741285,LK -1427741286,1427741286,UA -1427741287,1427741287,TW -1427741288,1427741288,DE -1427741289,1427741289,UG -1427741290,1427741292,DE -1427741293,1427741293,MX -1427741294,1427741295,DE -1427741296,1427741296,TR -1427741297,1427741299,DE -1427741300,1427741300,GR -1427741301,1427741301,RO -1427741302,1427741302,FI -1427741303,1427741303,DE -1427741304,1427741304,AL -1427741305,1427741305,AT -1427741306,1427741306,RO -1427741307,1427741307,RU -1427741308,1427741309,DE -1427741310,1427741311,UA -1427741312,1427741312,DE -1427741313,1427741313,KE -1427741314,1427741314,RU -1427741315,1427741318,DE -1427741319,1427741319,RU -1427741320,1427741320,DE -1427741321,1427741321,AT -1427741322,1427741324,DE -1427741325,1427741325,NL -1427741326,1427741328,DE -1427741329,1427741329,TR -1427741330,1427741330,AZ -1427741331,1427741334,DE -1427741335,1427741336,TR -1427741337,1427741337,GR -1427741338,1427741338,TR -1427741339,1427741339,TW -1427741340,1427741340,FR -1427741341,1427741341,DE -1427741342,1427741342,US -1427741343,1427741347,DE -1427741348,1427741348,TW -1427741349,1427741350,RU -1427741351,1427741359,DE -1427741360,1427741360,RU -1427741361,1427741363,IN -1427741364,1427741368,DE -1427741369,1427741369,KR -1427741370,1427741370,DE -1427741371,1427741371,GR -1427741372,1427741376,DE -1427741377,1427741377,AT -1427741378,1427741382,DE -1427741383,1427741383,TW -1427741384,1427741384,GR -1427741385,1427741385,IT -1427741386,1427741386,DE -1427741387,1427741387,AT -1427741388,1427741388,DE -1427741389,1427741389,TR -1427741390,1427741390,DE -1427741391,1427741391,TR -1427741392,1427741393,DE -1427741394,1427741396,GB -1427741397,1427741399,CA -1427741400,1427741400,AL -1427741401,1427741403,DE -1427741404,1427741404,HR -1427741405,1427741405,AL -1427741406,1427741406,CA -1427741407,1427741409,DE -1427741410,1427741412,SG -1427741413,1427741413,CH -1427741414,1427741414,KR -1427741415,1427741416,TW -1427741417,1427741418,DE -1427741419,1427741419,UA -1427741420,1427741420,LK -1427741421,1427741421,GR -1427741422,1427741422,US -1427741423,1427741429,DE -1427741430,1427741430,MY -1427741431,1427741431,PA -1427741432,1427741434,DE -1427741435,1427741435,AT -1427741436,1427741436,DE -1427741437,1427741437,VN -1427741438,1427741438,TR -1427741439,1427741570,DE -1427741571,1427741571,US -1427741572,1427741572,SA -1427741573,1427741576,DE -1427741577,1427741577,DK -1427741578,1427741579,UG -1427741580,1427741580,DE -1427741581,1427741581,RU -1427741582,1427741582,MD -1427741583,1427741583,RU -1427741584,1427741584,CH -1427741585,1427741585,DE -1427741586,1427741586,GE -1427741587,1427741587,AU -1427741588,1427741588,GE -1427741589,1427741590,DE -1427741591,1427741591,TR -1427741592,1427741594,DE -1427741595,1427741595,TH -1427741596,1427741596,PT -1427741597,1427741598,IT -1427741599,1427741599,DE -1427741600,1427741601,RU -1427741602,1427741602,UA -1427741603,1427741604,AT -1427741605,1427741605,CZ -1427741606,1427741606,TR -1427741607,1427741608,CZ -1427741609,1427741609,SA -1427741610,1427741613,DE -1427741614,1427741614,IT -1427741615,1427741615,RU -1427741616,1427741616,TH -1427741617,1427741623,DE -1427741624,1427741624,NL -1427741625,1427741625,RO -1427741626,1427741627,TR -1427741628,1427741629,DE -1427741630,1427741630,VE -1427741631,1427741631,TR -1427741632,1427741632,RU -1427741633,1427741633,UG -1427741634,1427741635,DE -1427741636,1427741636,FR -1427741637,1427741637,BR -1427741638,1427741638,DE -1427741639,1427741643,ES -1427741644,1427741644,DE -1427741645,1427741645,GR -1427741646,1427741646,AT -1427741647,1427741647,DE -1427741648,1427741649,TH -1427741650,1427741650,DE -1427741651,1427741651,AT -1427741652,1427741652,IT -1427741653,1427741653,DE -1427741654,1427741654,TR -1427741655,1427741655,DE -1427741656,1427741656,AR -1427741657,1427741657,KR -1427741658,1427741658,DE -1427741659,1427741661,UA -1427741662,1427741662,DE -1427741663,1427741663,NL -1427741664,1427741664,TR -1427741665,1427741665,NL -1427741666,1427741666,CH -1427741667,1427741667,UA -1427741668,1427741669,DE -1427741670,1427741670,RU -1427741671,1427741674,DE -1427741675,1427741675,BR -1427741676,1427741676,GR -1427741677,1427741677,TR -1427741678,1427741678,DE -1427741679,1427741679,GR -1427741680,1427741680,PL -1427741681,1427741684,DE -1427741685,1427741685,BE -1427741686,1427741686,CH -1427741687,1427741688,DE -1427741689,1427741689,SA -1427741690,1427741692,AE -1427741693,1427741699,DE -1427741700,1427741700,GR -1427741701,1427741701,GT -1427741702,1427741702,DE -1427741703,1427741703,GR -1427741704,1427741706,CY -1427741707,1427741707,GT -1427741708,1427741709,DE -1427741710,1427741710,BR -1427741711,1427741713,DE -1427741714,1427741714,RU -1427741715,1427741718,DE -1427741719,1427741721,CO -1427741722,1427741724,DE -1427741725,1427741725,IE -1427741726,1427741726,RO -1427741727,1427741727,PE -1427741728,1427741728,PT -1427741729,1427741729,DE -1427741730,1427741732,RU -1427741733,1427741735,DE -1427741736,1427741736,RU -1427741737,1427741747,DE -1427741748,1427741750,NL -1427741751,1427741751,DE -1427741752,1427741754,TR -1427741755,1427741756,DE -1427741757,1427741757,BG -1427741758,1427741759,RO -1427741760,1427741762,BR -1427741763,1427741763,HK -1427741764,1427741772,BR -1427741773,1427741782,IN -1427741783,1427741783,DE -1427741784,1427741791,UA -1427741792,1427741794,DE -1427741795,1427741795,CA -1427741796,1427741801,DE -1427741802,1427741817,TR -1427741818,1427741825,DE -1427741826,1427741826,PL -1427741827,1427741827,DE -1427741828,1427741828,GR -1427741829,1427741830,DE -1427741831,1427741831,AR -1427741832,1427741833,DE -1427741834,1427741834,US -1427741835,1427741835,PL -1427741836,1427741836,DE -1427741837,1427741837,MD -1427741838,1427741838,BR -1427741839,1427741839,DE -1427741840,1427741840,IT -1427741841,1427741842,UA -1427741843,1427741845,CY -1427741846,1427741846,UA -1427741847,1427741847,PE -1427741848,1427741849,DE -1427741850,1427741851,GR -1427741852,1427741852,DE -1427741853,1427741853,HU -1427741854,1427741854,LT -1427741855,1427741855,DE -1427741856,1427741856,IE -1427741857,1427741857,GR -1427741858,1427741858,EG -1427741859,1427741866,DE -1427741867,1427741867,UA -1427741868,1427741868,DE -1427741869,1427741870,PT -1427741871,1427741871,LK -1427741872,1427741873,DE -1427741874,1427741874,BR -1427741875,1427741875,US -1427741876,1427741876,LT -1427741877,1427741877,IT -1427741878,1427741878,HU -1427741879,1427741879,BR -1427741880,1427741880,US -1427741881,1427741882,DE -1427741883,1427741883,AE -1427741884,1427741884,DE -1427741885,1427741885,GR -1427741886,1427741886,TR -1427741887,1427741887,GR -1427741888,1427741892,DE -1427741893,1427741893,MD -1427741894,1427741896,LK -1427741897,1427741897,DE -1427741898,1427741898,KH -1427741899,1427741899,IN -1427741900,1427741902,DE -1427741903,1427741903,SK -1427741904,1427741906,NL -1427741907,1427741907,CZ -1427741908,1427741908,DE -1427741909,1427741911,UA -1427741912,1427741912,DE -1427741913,1427741913,RU -1427741914,1427741914,GR -1427741915,1427741923,DE -1427741924,1427741924,RU -1427741925,1427741930,DE -1427741931,1427741931,AL -1427741932,1427741932,SK -1427741933,1427741933,DE -1427741934,1427741934,UA -1427741935,1427741938,DE -1427741939,1427741939,CH -1427741940,1427741945,DE -1427741946,1427741946,UA -1427741947,1427741947,HU -1427741948,1427741949,CH -1427741950,1427741950,KH -1427741951,1427741951,DE -1427741952,1427741952,RU -1427741953,1427741954,DE -1427741955,1427741955,BG -1427741956,1427741956,NO -1427741957,1427741957,DE -1427741958,1427741958,IT -1427741959,1427741960,DE -1427741961,1427741962,UG -1427741963,1427741965,TR -1427741966,1427741970,DE -1427741971,1427741971,LK -1427741972,1427741972,AT -1427741973,1427741973,DE -1427741974,1427741974,UG -1427741975,1427741976,DE -1427741977,1427741978,RU -1427741979,1427741979,IT -1427741980,1427741980,CH -1427741981,1427741983,DE -1427741984,1427741986,CH -1427741987,1427741987,SI -1427741988,1427741988,LT -1427741989,1427741989,UA -1427741990,1427741990,PL -1427741991,1427741991,DE -1427741992,1427741993,ES -1427741994,1427741994,DE -1427741995,1427741995,CO -1427741996,1427741997,DE -1427741998,1427741998,GR -1427741999,1427742001,DE -1427742002,1427742002,TR -1427742003,1427742003,CO -1427742004,1427742006,DE -1427742007,1427742007,TR -1427742008,1427742009,DE -1427742010,1427742010,LB -1427742011,1427742013,DE -1427742014,1427742014,ES -1427742015,1427742016,DE -1427742017,1427742017,US -1427742018,1427742018,BG -1427742019,1427742021,DE -1427742022,1427742022,CZ -1427742023,1427742023,PL -1427742024,1427742024,DE -1427742025,1427742025,GR -1427742026,1427742028,CH -1427742029,1427742030,DE -1427742031,1427742031,TR -1427742032,1427742034,DE -1427742035,1427742036,IL -1427742037,1427742037,DE -1427742038,1427742038,UA -1427742039,1427742039,HR -1427742040,1427742042,DE -1427742043,1427742043,PK -1427742044,1427742044,DE -1427742045,1427742045,BR -1427742046,1427742046,RU -1427742047,1427742048,DE -1427742049,1427742049,SG -1427742050,1427742050,DE -1427742051,1427742051,IN -1427742052,1427742052,DE -1427742053,1427742055,CA -1427742056,1427742058,BR -1427742059,1427742063,DE -1427742064,1427742064,PL -1427742065,1427742065,IN -1427742066,1427742066,TR -1427742067,1427742079,DE -1427742080,1427742080,RU -1427742081,1427742084,DE -1427742085,1427742087,BE -1427742088,1427742088,DE -1427742089,1427742089,BR -1427742090,1427742090,DE -1427742091,1427742091,GR -1427742092,1427742092,HK -1427742093,1427742093,DE -1427742094,1427742096,TR -1427742097,1427742098,SA -1427742099,1427742106,TR -1427742107,1427742107,DE -1427742108,1427742108,TR -1427742109,1427742114,DE -1427742115,1427742115,BR -1427742116,1427742116,RO -1427742117,1427742117,DE -1427742118,1427742120,BR -1427742121,1427742122,DE -1427742123,1427742124,TR -1427742125,1427742125,LB -1427742126,1427742130,DE -1427742131,1427742131,TR -1427742132,1427742139,DE -1427742140,1427742142,UA -1427742143,1427742143,DE -1427742144,1427742144,IN -1427742145,1427742157,DE -1427742158,1427742158,LB -1427742159,1427742167,DE -1427742168,1427742168,RU -1427742169,1427742169,IL -1427742170,1427742170,US -1427742171,1427742173,LT -1427742174,1427742719,DE +1427739891,1427742719,DE 1427742720,1427742751,IO -1427742752,1427742911,DE -1427742912,1427742975,BR +1427742752,1427742943,DE +1427742944,1427742975,BR 1427742976,1427743007,RU 1427743008,1427743039,US 1427743040,1427743071,BR 1427743072,1427743103,CY -1427743104,1427743135,DE -1427743136,1427743136,IN -1427743137,1427743167,DE +1427743104,1427743167,DE 1427743168,1427743199,CY 1427743200,1427743231,TR 1427743232,1427743263,GR @@ -57803,8 +53226,7 @@ 1427743840,1427743871,RU 1427743872,1427743903,DE 1427743904,1427743935,US -1427743936,1427743967,RU -1427743968,1427743999,DE +1427743936,1427743999,DE 1427744000,1427744031,AT 1427744032,1427744063,RU 1427744064,1427744191,DE @@ -57822,7 +53244,9 @@ 1427744608,1427744639,DE 1427744640,1427744671,TR 1427744672,1427744703,DE -1427744704,1427744799,BR +1427744704,1427744735,BR +1427744736,1427744767,DE +1427744768,1427744799,BR 1427744800,1427744831,LT 1427744832,1427744863,DE 1427744864,1427744927,TR @@ -57839,11 +53263,11 @@ 1427745248,1427745311,DE 1427745312,1427745343,NL 1427745344,1427745375,RU -1427745376,1427745407,BR +1427745376,1427745407,DE 1427745408,1427745471,US 1427745472,1427745503,RO 1427745504,1427745535,RU -1427745536,1427745567,BR +1427745536,1427745567,DE 1427745568,1427745599,RU 1427745600,1427745631,DE 1427745632,1427745663,BM @@ -57853,7 +53277,7 @@ 1427745760,1427745791,LT 1427745792,1427745823,FR 1427745824,1427745855,US -1427745856,1427745887,BR +1427745856,1427745887,DE 1427745888,1427745919,IN 1427745920,1427745983,DE 1427745984,1427746015,RU @@ -57866,7 +53290,8 @@ 1427746240,1427746271,US 1427746272,1427747839,DE 1427747840,1427747871,FI -1427747872,1427747935,BR +1427747872,1427747903,DE +1427747904,1427747935,BR 1427747936,1427747967,US 1427747968,1427747999,DE 1427748000,1427748031,BR @@ -57877,13 +53302,9 @@ 1427748160,1427748191,GB 1427748192,1427748255,DE 1427748256,1427748287,US -1427748288,1427748351,DE -1427748352,1427748383,BR -1427748384,1427748447,DE +1427748288,1427748447,DE 1427748448,1427748479,RU -1427748480,1427748575,DE -1427748576,1427748607,BR -1427748608,1427748639,DE +1427748480,1427748639,DE 1427748640,1427748671,FR 1427748672,1427748703,DE 1427748704,1427748735,LT @@ -57896,9 +53317,7 @@ 1427749632,1427749663,RU 1427749664,1427749695,DE 1427749696,1427749727,BR -1427749728,1427749759,DE -1427749760,1427749791,BR -1427749792,1427749855,DE +1427749728,1427749855,DE 1427749856,1427749887,RU 1427749888,1427749919,DE 1427749920,1427749951,US @@ -57916,8 +53335,7 @@ 1427750336,1427750367,US 1427750368,1427759935,DE 1427759936,1427759967,HR -1427759968,1427759999,DE -1427760000,1427760031,BR +1427759968,1427760031,DE 1427760032,1427760063,US 1427760064,1427760095,AR 1427760096,1427760127,US @@ -57932,9 +53350,7 @@ 1427760448,1427760479,BR 1427760480,1427760575,DE 1427760576,1427760607,CH -1427760608,1427760671,DE -1427760672,1427760703,BR -1427760704,1427760735,DE +1427760608,1427760735,DE 1427760736,1427760767,BR 1427760768,1427760799,DE 1427760800,1427760831,US @@ -57957,509 +53373,7 @@ 1427761536,1427761567,US 1427761568,1427761599,RU 1427761600,1427761631,EG -1427761632,1427764351,DE -1427764352,1427764352,ES -1427764353,1427764353,DE -1427764354,1427764354,RO -1427764355,1427764356,DE -1427764357,1427764357,RU -1427764358,1427764358,TR -1427764359,1427764359,ID -1427764360,1427764360,DE -1427764361,1427764361,LT -1427764362,1427764364,DE -1427764365,1427764365,UG -1427764366,1427764366,DE -1427764367,1427764367,IR -1427764368,1427764369,RO -1427764370,1427764385,DE -1427764386,1427764387,BD -1427764388,1427764389,TR -1427764390,1427764390,DE -1427764391,1427764391,UA -1427764392,1427764393,DE -1427764394,1427764394,SA -1427764395,1427764397,DE -1427764398,1427764399,GR -1427764400,1427764400,LT -1427764401,1427764401,DE -1427764402,1427764402,LT -1427764403,1427764404,DE -1427764405,1427764405,TR -1427764406,1427764407,LT -1427764408,1427764410,DE -1427764411,1427764411,UA -1427764412,1427764414,IT -1427764415,1427764415,IL -1427764416,1427764417,DE -1427764418,1427764418,RU -1427764419,1427764419,DE -1427764420,1427764420,TR -1427764421,1427764426,DE -1427764427,1427764428,GR -1427764429,1427764429,RU -1427764430,1427764430,UG -1427764431,1427764432,DE -1427764433,1427764435,HR -1427764436,1427764437,DE -1427764438,1427764438,TR -1427764439,1427764439,RU -1427764440,1427764441,DE -1427764442,1427764442,AL -1427764443,1427764445,LK -1427764446,1427764446,DE -1427764447,1427764447,TR -1427764448,1427764449,US -1427764450,1427764450,GR -1427764451,1427764458,DE -1427764459,1427764460,RU -1427764461,1427764461,TR -1427764462,1427764463,DE -1427764464,1427764464,GR -1427764465,1427764467,DE -1427764468,1427764468,IT -1427764469,1427764470,DE -1427764471,1427764473,MD -1427764474,1427764474,SA -1427764475,1427764475,DE -1427764476,1427764478,BR -1427764479,1427765381,DE -1427765382,1427765382,TR -1427765383,1427765385,DE -1427765386,1427765386,TR -1427765387,1427765391,DE -1427765392,1427765394,TR -1427765395,1427765395,DE -1427765396,1427765398,TR -1427765399,1427765402,DE -1427765403,1427765404,TR -1427765405,1427765405,IN -1427765406,1427765407,DE -1427765408,1427765409,TR -1427765410,1427765413,IN -1427765414,1427765417,DE -1427765418,1427765418,US -1427765419,1427765420,DE -1427765421,1427765422,UA -1427765423,1427765424,DE -1427765425,1427765428,IN -1427765429,1427765429,TR -1427765430,1427765443,DE -1427765444,1427765445,TR -1427765446,1427765447,DE -1427765448,1427765448,TR -1427765449,1427765454,DE -1427765455,1427765455,TR -1427765456,1427765457,DE -1427765458,1427765458,TR -1427765459,1427765462,DE -1427765463,1427765463,US -1427765464,1427765467,DE -1427765468,1427765469,UA -1427765470,1427765470,TR -1427765471,1427765472,DE -1427765473,1427765473,IN -1427765474,1427765474,DE -1427765475,1427765478,TR -1427765479,1427765484,IN -1427765485,1427765486,UA -1427765487,1427765487,TR -1427765488,1427765488,DE -1427765489,1427765492,TR -1427765493,1427765493,US -1427765494,1427765494,DE -1427765495,1427765501,US -1427765502,1427765502,UA -1427765503,1427765508,DE -1427765509,1427765509,TR -1427765510,1427765510,DE -1427765511,1427765511,TR -1427765512,1427765512,DE -1427765513,1427765514,TR -1427765515,1427765530,DE -1427765531,1427765531,TR -1427765532,1427765535,DE -1427765536,1427765537,US -1427765538,1427765538,DE -1427765539,1427765542,IE -1427765543,1427765543,DE -1427765544,1427765544,IE -1427765545,1427765550,DE -1427765551,1427765555,US -1427765556,1427765557,TR -1427765558,1427765560,DE -1427765561,1427765561,US -1427765562,1427765562,TR -1427765563,1427765565,US -1427765566,1427765571,DE -1427765572,1427765572,US -1427765573,1427765575,DE -1427765576,1427765576,US -1427765577,1427765578,DE -1427765579,1427765579,US -1427765580,1427765582,DE -1427765583,1427765585,US -1427765586,1427765586,DE -1427765587,1427765589,US -1427765590,1427765590,DE -1427765591,1427765591,US -1427765592,1427765596,DE -1427765597,1427765597,US -1427765598,1427765599,DE -1427765600,1427765601,US -1427765602,1427765606,DE -1427765607,1427765607,US -1427765608,1427765616,DE -1427765617,1427765617,US -1427765618,1427765619,DE -1427765620,1427765621,US -1427765622,1427765622,DE -1427765623,1427765625,US -1427765626,1427765626,DE -1427765627,1427765628,BG -1427765629,1427765645,DE -1427765646,1427765646,US -1427765647,1427765647,DE -1427765648,1427765649,US -1427765650,1427765650,TR -1427765651,1427765659,DE -1427765660,1427765660,TR -1427765661,1427765661,DE -1427765662,1427765662,TR -1427765663,1427765663,DE -1427765664,1427765664,TR -1427765665,1427765666,DE -1427765667,1427765667,TR -1427765668,1427765669,DE -1427765670,1427765672,TR -1427765673,1427765677,DE -1427765678,1427765678,TR -1427765679,1427765680,DE -1427765681,1427765682,TR -1427765683,1427765683,DE -1427765684,1427765687,TR -1427765688,1427765688,US -1427765689,1427765690,DE -1427765691,1427765691,TR -1427765692,1427765693,BR -1427765694,1427765694,US -1427765695,1427765767,DE -1427765768,1427765773,US -1427765774,1427765776,DE -1427765777,1427765779,LT -1427765780,1427765780,DE -1427765781,1427765781,LT -1427765782,1427765785,DE -1427765786,1427765786,TR -1427765787,1427765787,HK -1427765788,1427765789,DE -1427765790,1427765790,LT -1427765791,1427765791,DE -1427765792,1427765796,US -1427765797,1427765799,DE -1427765800,1427765800,US -1427765801,1427765802,GB -1427765803,1427765803,DE -1427765804,1427765804,GB -1427765805,1427765805,DE -1427765806,1427765806,GB -1427765807,1427765807,DE -1427765808,1427765808,GB -1427765809,1427765809,DE -1427765810,1427765813,GB -1427765814,1427765814,DE -1427765815,1427765817,GB -1427765818,1427765818,BR -1427765819,1427765819,DE -1427765820,1427765821,GB -1427765822,1427765831,DE -1427765832,1427765832,PK -1427765833,1427765837,DE -1427765838,1427765849,BR -1427765850,1427765850,DE -1427765851,1427765860,BR -1427765861,1427765861,DE -1427765862,1427765868,BR -1427765869,1427765895,DE -1427765896,1427765897,GB -1427765898,1427765899,DE -1427765900,1427765905,GB -1427765906,1427765906,DE -1427765907,1427765909,GB -1427765910,1427765916,DE -1427765917,1427765917,US -1427765918,1427765919,DE -1427765920,1427765924,GB -1427765925,1427765926,DE -1427765927,1427765927,US -1427765928,1427766019,DE -1427766020,1427766021,LT -1427766022,1427766024,DE -1427766025,1427766025,LT -1427766026,1427766028,DE -1427766029,1427766029,IN -1427766030,1427766040,DE -1427766041,1427766042,IN -1427766043,1427766044,DE -1427766045,1427766045,IN -1427766046,1427766047,LT -1427766048,1427766048,DE -1427766049,1427766050,LT -1427766051,1427766051,TR -1427766052,1427766063,DE -1427766064,1427766064,GR -1427766065,1427766065,IN -1427766066,1427766067,TR -1427766068,1427766070,IN -1427766071,1427766072,DE -1427766073,1427766073,IN -1427766074,1427766074,DE -1427766075,1427766075,LT -1427766076,1427766085,DE -1427766086,1427766086,IN -1427766087,1427766087,DE -1427766088,1427766088,TR -1427766089,1427766089,IN -1427766090,1427766092,DE -1427766093,1427766094,IN -1427766095,1427766099,DE -1427766100,1427766100,BG -1427766101,1427766105,DE -1427766106,1427766108,TR -1427766109,1427766110,DE -1427766111,1427766111,TR -1427766112,1427766114,DE -1427766115,1427766115,TR -1427766116,1427766117,DE -1427766118,1427766118,TR -1427766119,1427766120,DE -1427766121,1427766121,TR -1427766122,1427766122,US -1427766123,1427766124,DE -1427766125,1427766125,IN -1427766126,1427766134,DE -1427766135,1427766135,US -1427766136,1427766211,DE -1427766212,1427766212,BR -1427766213,1427766213,DE -1427766214,1427766215,GB -1427766216,1427766216,TR -1427766217,1427766217,BE -1427766218,1427766218,DE -1427766219,1427766219,CA -1427766220,1427766221,BE -1427766222,1427766224,CH -1427766225,1427766225,DE -1427766226,1427766226,UG -1427766227,1427766227,DE -1427766228,1427766228,BE -1427766229,1427766232,DE -1427766233,1427766233,GR -1427766234,1427766234,AE -1427766235,1427766235,IN -1427766236,1427766236,AE -1427766237,1427766240,DE -1427766241,1427766241,LT -1427766242,1427766242,DE -1427766243,1427766245,PK -1427766246,1427766249,DE -1427766250,1427766250,ES -1427766251,1427766251,IR -1427766252,1427766252,DE -1427766253,1427766253,ES -1427766254,1427766254,DE -1427766255,1427766257,TR -1427766258,1427766258,DE -1427766259,1427766259,LK -1427766260,1427766260,DE -1427766261,1427766261,ES -1427766262,1427766262,DE -1427766263,1427766263,IR -1427766264,1427766264,DE -1427766265,1427766265,AZ -1427766266,1427766270,TR -1427766271,1427766339,DE -1427766340,1427766340,US -1427766341,1427766343,DE -1427766344,1427766344,AU -1427766345,1427766347,DE -1427766348,1427766357,US -1427766358,1427766389,DE -1427766390,1427766390,AU -1427766391,1427766428,DE -1427766429,1427766429,US -1427766430,1427766430,TR -1427766431,1427766441,DE -1427766442,1427766442,GR -1427766443,1427766443,TR -1427766444,1427766444,DE -1427766445,1427766446,TR -1427766447,1427766447,DE -1427766448,1427766448,TR -1427766449,1427766449,DE -1427766450,1427766450,TR -1427766451,1427766452,DE -1427766453,1427766453,TR -1427766454,1427766454,IN -1427766455,1427766455,DE -1427766456,1427766459,IN -1427766460,1427766460,DE -1427766461,1427766461,IN -1427766462,1427766467,DE -1427766468,1427766468,BR -1427766469,1427766469,DE -1427766470,1427766470,BE -1427766471,1427766471,DE -1427766472,1427766472,PL -1427766473,1427766474,DE -1427766475,1427766477,TR -1427766478,1427766479,DE -1427766480,1427766480,AT -1427766481,1427766483,DE -1427766484,1427766484,GR -1427766485,1427766489,DE -1427766490,1427766490,PE -1427766491,1427766491,BD -1427766492,1427766492,PK -1427766493,1427766493,RU -1427766494,1427766495,HU -1427766496,1427766496,UA -1427766497,1427766499,PK -1427766500,1427766500,FR -1427766501,1427766503,DE -1427766504,1427766504,RU -1427766505,1427766505,DE -1427766506,1427766506,US -1427766507,1427766507,DE -1427766508,1427766508,BR -1427766509,1427766513,DE -1427766514,1427766515,PK -1427766516,1427766516,DE -1427766517,1427766517,VE -1427766518,1427766520,DE -1427766521,1427766521,TR -1427766522,1427766523,CA -1427766524,1427766537,DE -1427766538,1427766538,PK -1427766539,1427766539,PA -1427766540,1427766543,DE -1427766544,1427766544,US -1427766545,1427766546,RU -1427766547,1427766547,EG -1427766548,1427766549,DE -1427766550,1427766550,PK -1427766551,1427766551,FR -1427766552,1427766552,BR -1427766553,1427766554,LT -1427766555,1427766555,SE -1427766556,1427766556,BR -1427766557,1427766557,FR -1427766558,1427766559,TR -1427766560,1427766560,PK -1427766561,1427766561,IT -1427766562,1427766562,DE -1427766563,1427766563,GR -1427766564,1427766565,DE -1427766566,1427766566,BR -1427766567,1427766567,DE -1427766568,1427766569,GR -1427766570,1427766570,DE -1427766571,1427766571,UA -1427766572,1427766572,DE -1427766573,1427766573,MD -1427766574,1427766574,DE -1427766575,1427766575,BR -1427766576,1427766576,IT -1427766577,1427766577,DE -1427766578,1427766578,PL -1427766579,1427766579,AR -1427766580,1427766580,US -1427766581,1427766581,DE -1427766582,1427766582,PT -1427766583,1427766583,DE -1427766584,1427766586,PK -1427766587,1427766587,IT -1427766588,1427766588,DE -1427766589,1427766589,HU -1427766590,1427766660,DE -1427766661,1427766661,US -1427766662,1427766665,DE -1427766666,1427766666,US -1427766667,1427766667,DE -1427766668,1427766668,US -1427766669,1427766674,DE -1427766675,1427766695,US -1427766696,1427766696,DE -1427766697,1427766702,US -1427766703,1427766710,IN -1427766711,1427766711,DE -1427766712,1427766714,IN -1427766715,1427766715,DE -1427766716,1427766716,TR -1427766717,1427766717,DE -1427766718,1427766718,TR -1427766719,1427766787,DE -1427766788,1427766788,UA -1427766789,1427766791,DE -1427766792,1427766792,UA -1427766793,1427766803,DE -1427766804,1427766804,EE -1427766805,1427766805,UA -1427766806,1427766809,DE -1427766810,1427766810,PK -1427766811,1427766812,DE -1427766813,1427766813,CN -1427766814,1427766816,DE -1427766817,1427766818,CN -1427766819,1427766819,UA -1427766820,1427766820,RU -1427766821,1427766823,DE -1427766824,1427766824,UA -1427766825,1427766825,AR -1427766826,1427766826,DE -1427766827,1427766827,GR -1427766828,1427766829,EG -1427766830,1427766830,DE -1427766831,1427766831,IN -1427766832,1427766833,AE -1427766834,1427766835,DE -1427766836,1427766836,IR -1427766837,1427766838,GE -1427766839,1427766839,DE -1427766840,1427766840,LK -1427766841,1427766844,DE -1427766845,1427766846,EG -1427766847,1427766857,DE -1427766858,1427766866,US -1427766867,1427766878,DE -1427766879,1427766880,AU -1427766881,1427766882,DE -1427766883,1427766883,AU -1427766884,1427766885,DE -1427766886,1427766886,AU -1427766887,1427766898,DE -1427766899,1427766901,AU -1427766902,1427766903,DE -1427766904,1427766904,AU -1427766905,1427766985,DE -1427766986,1427766986,IT -1427766987,1427766987,US -1427766988,1427767007,DE -1427767008,1427767009,CA -1427767010,1427767010,DE -1427767011,1427767014,CA -1427767015,1427767015,DE -1427767016,1427767017,CA -1427767018,1427767018,DE -1427767019,1427767021,CA -1427767022,1427767024,DE -1427767025,1427767028,CA -1427767029,1427767029,DE -1427767030,1427767030,CA -1427767031,1427767031,NL -1427767032,1427767036,DE -1427767037,1427767038,KW -1427767039,1427767295,DE +1427761632,1427767295,DE 1427767296,1427800063,BE 1427800064,1427832831,RU 1427832832,1427865599,BE @@ -58502,9 +53416,7 @@ 1428143200,1428143263,DE 1428143264,1428143279,CH 1428143280,1428144127,DE -1428144128,1428147287,FR -1428147288,1428147295,GB -1428147296,1428147343,FR +1428144128,1428147343,FR 1428147344,1428147351,GB 1428147352,1428152319,FR 1428152320,1428160511,PL @@ -58692,7 +53604,12 @@ 1433600000,1433602303,DE 1433602304,1433602319,LU 1433602320,1433608191,DE -1433608192,1433610239,EU +1433608192,1433608447,TR +1433608448,1433608703,NL +1433608704,1433608959,GB +1433608960,1433609215,DE +1433609216,1433609471,ZA +1433609472,1433610239,GB 1433610240,1433612287,US 1433612288,1433614335,GB 1433614336,1433615027,DE @@ -58814,9 +53731,7 @@ 1434613760,1434615807,BG 1434615808,1434648575,IL 1434648576,1434681343,FI -1434681344,1434681983,DE -1434681984,1434681999,NL -1434682000,1434682303,DE +1434681344,1434682303,DE 1434682304,1434682367,NL 1434682368,1434683327,DE 1434683328,1434683391,MY @@ -59043,11 +53958,11 @@ 1438861336,1438861375,DE 1438861376,1438861439,US 1438861440,1438861523,DE -1438861524,1438861599,US -1438861600,1438861631,DE +1438861524,1438861615,US +1438861616,1438861631,DE 1438861632,1438861639,US -1438861640,1438861663,DE -1438861664,1438861823,US +1438861640,1438861647,DE +1438861648,1438861823,US 1438861824,1438862079,CH 1438862080,1438862339,DE 1438862340,1438862359,US @@ -59061,9 +53976,7 @@ 1438862752,1438862775,US 1438862776,1438862847,DE 1438862848,1438862879,US -1438862880,1438869647,DE -1438869648,1438869651,LV -1438869652,1438869655,DE +1438862880,1438869655,DE 1438869656,1438869663,UA 1438869664,1438874783,DE 1438874784,1438874791,PA @@ -59412,8 +54325,7 @@ 1445431648,1445431679,NL 1445431680,1445431807,BE 1445431808,1445433855,NL -1445433856,1445433887,BE -1445433888,1445434111,NL +1445433856,1445434111,BE 1445434112,1445434399,BE 1445434400,1445434527,NL 1445434528,1445434559,BE @@ -59724,9 +54636,7 @@ 1446907320,1446907323,AF 1446907324,1446907355,A2 1446907356,1446907359,IQ -1446907360,1446907367,A2 -1446907368,1446907368,IQ -1446907369,1446907371,A2 +1446907360,1446907371,A2 1446907372,1446907375,AF 1446907376,1446907383,A2 1446907384,1446907387,CI @@ -60273,7 +55183,9 @@ 1467342976,1467343103,EG 1467343104,1467344639,GB 1467344640,1467344895,ZA -1467344896,1467347999,GB +1467344896,1467346495,GB +1467346496,1467346559,GB +1467346560,1467347999,GB 1467348000,1467348031,US 1467348032,1467349887,GB 1467349888,1467349903,CH @@ -60297,8 +55209,7 @@ 1467369664,1467369759,DE 1467369760,1467369791,HR 1467369792,1467369855,SE -1467369856,1467369871,RU -1467369872,1467369887,DE +1467369856,1467369887,DE 1467369888,1467369903,RU 1467369904,1467369919,DE 1467369920,1467369951,SG @@ -60482,16 +55393,14 @@ 1475229760,1475229951,NO 1475229952,1475230255,SE 1475230256,1475230263,NO -1475230264,1475230399,SE -1475230400,1475230975,NO +1475230264,1475230431,SE +1475230432,1475230975,NO 1475230976,1475231023,SE 1475231024,1475233791,NO 1475233792,1475235071,GB 1475235072,1475235327,IE 1475235328,1475235839,GB -1475235840,1475236863,IE -1475236864,1475237119,GB -1475237120,1475237887,IE +1475235840,1475237887,IE 1475237888,1475239935,ES 1475239936,1475241983,RU 1475241984,1475242239,MC @@ -60583,8 +55492,8 @@ 1475624960,1475627519,JE 1475627520,1475627655,GB 1475627656,1475627663,JE -1475627664,1475627688,GB -1475627689,1475627695,JE +1475627664,1475627687,GB +1475627688,1475627695,JE 1475627696,1475627775,GB 1475627776,1475628031,JE 1475628032,1475628287,GB @@ -60609,8 +55518,8 @@ 1475636480,1475636735,JE 1475636736,1475637503,GB 1475637504,1475639039,JE -1475639040,1475639216,GB -1475639217,1475639223,JE +1475639040,1475639215,GB +1475639216,1475639223,JE 1475639224,1475639263,GB 1475639264,1475639271,BB 1475639272,1475639279,JE @@ -61158,7 +56067,7 @@ 1489660144,1489660159,BA 1489660160,1489660175,BE 1489660176,1489660191,BG -1489660192,1489660207,BH +1489660192,1489660207,LY 1489660208,1489660223,BY 1489660224,1489660239,CH 1489660240,1489660255,CZ @@ -61455,7 +56364,9 @@ 1494441984,1494450175,UA 1494450176,1494458367,DK 1494458368,1494474751,RU -1494474752,1494477471,DE +1494474752,1494475199,DE +1494475200,1494475215,CH +1494475216,1494477471,DE 1494477472,1494477503,IL 1494477504,1494482943,DE 1494482944,1494499327,RU @@ -61578,8 +56489,8 @@ 1495165216,1495165439,EU 1495165440,1495168383,FR 1495168384,1495168415,EU -1495168416,1495168447,FR -1495168448,1495168511,EU +1495168416,1495168479,FR +1495168480,1495168511,EU 1495168512,1495168767,FR 1495168768,1495169023,GB 1495169024,1495169279,FR @@ -61588,7 +56499,13 @@ 1495169792,1495170047,NL 1495170048,1495170335,FR 1495170336,1495170399,EU -1495170400,1495171071,FR +1495170400,1495170687,FR +1495170688,1495170759,EU +1495170760,1495170763,DE +1495170764,1495170767,EU +1495170768,1495170775,FR +1495170776,1495170815,EU +1495170816,1495171071,FR 1495171072,1495174399,NL 1495174400,1495174655,US 1495174656,1495203839,NL @@ -61675,9 +56592,7 @@ 1495622144,1495622655,A2 1495622656,1495623679,RO 1495623680,1495623935,MD -1495623936,1495801855,RO -1495801856,1495802879,GB -1495802880,1495875583,RO +1495623936,1495875583,RO 1495875584,1495891967,MD 1495891968,1495927295,RO 1495927296,1495927551,AE @@ -61689,7 +56604,9 @@ 1496078336,1496079359,MD 1496079360,1496121343,RO 1496121344,1496122367,MD -1496122368,1496178943,RO +1496122368,1496124927,RO +1496124928,1496125183,MD +1496125184,1496178943,RO 1496178944,1496179199,AE 1496179200,1496197119,RO 1496197120,1496197631,MD @@ -61939,7 +56856,7 @@ 1502979104,1502979111,ES 1502979112,1502979119,US 1502979120,1502979135,ES -1502979136,1502979199,FR +1502979136,1502979199,US 1502979200,1502979215,ES 1502979216,1502979231,CZ 1502979232,1502979327,FR @@ -62133,7 +57050,10 @@ 1503901144,1503901151,IT 1503901152,1503901167,DE 1503901168,1503901175,IT -1503901176,1503901567,DE +1503901176,1503901455,DE +1503901456,1503901463,IT +1503901464,1503901471,CH +1503901472,1503901567,DE 1503901568,1503901695,TW 1503901696,1503908351,DE 1503908352,1503909375,IT @@ -62203,9 +57123,7 @@ 1505305400,1505305407,PT 1505305408,1505305415,US 1505305416,1505305423,CH -1505305424,1505305908,FR -1505305909,1505305909,LU -1505305910,1505306303,FR +1505305424,1505306303,FR 1505306304,1505306319,ES 1505306320,1505306335,DE 1505306336,1505306351,GB @@ -62259,9 +57177,15 @@ 1505329376,1505329439,GB 1505329440,1505329455,IE 1505329456,1505329471,GB -1505329472,1505331199,IE -1505331200,1505332223,GB -1505332224,1505332991,IE +1505329472,1505331439,IE +1505331440,1505331447,GB +1505331448,1505331711,IE +1505331712,1505331735,GB +1505331736,1505331743,IE +1505331744,1505331823,GB +1505331824,1505331839,IE +1505331840,1505331871,GB +1505331872,1505332991,IE 1505332992,1505332999,GB 1505333000,1505333471,IE 1505333472,1505333487,GB @@ -62431,7 +57355,9 @@ 1506422336,1506422399,US 1506422400,1506422415,CA 1506422416,1506422431,EE -1506422432,1506427183,DE +1506422432,1506422495,DE +1506422496,1506422527,US +1506422528,1506427183,DE 1506427184,1506427199,CA 1506427200,1506436607,DE 1506436608,1506436767,US @@ -62442,7 +57368,9 @@ 1506436960,1506436975,GB 1506436976,1506437023,DE 1506437024,1506437039,FR -1506437040,1506437055,DE +1506437040,1506437047,DE +1506437048,1506437051,NL +1506437052,1506437055,DE 1506437056,1506437071,FR 1506437072,1506437087,US 1506437088,1506437119,DE @@ -62565,7 +57493,9 @@ 1506443200,1506443263,US 1506443264,1506444287,GB 1506444288,1506445055,DE -1506445056,1506445311,GB +1506445056,1506445063,GB +1506445064,1506445103,DE +1506445104,1506445311,GB 1506445312,1506445337,FR 1506445338,1506445343,GB 1506445344,1506445519,FR @@ -62589,8 +57519,8 @@ 1506449920,1506449927,CH 1506449928,1506449935,GB 1506449936,1506450031,CH -1506450032,1506450039,GB -1506450040,1506450431,CH +1506450032,1506450047,GB +1506450048,1506450431,CH 1506450432,1506450687,CZ 1506450688,1506450695,GB 1506450696,1506450703,CZ @@ -62673,13 +57603,15 @@ 1506462208,1506462463,ES 1506462464,1506462527,FR 1506462528,1506462583,GB -1506462584,1506462599,FR -1506462600,1506462607,GB +1506462584,1506462591,FR +1506462592,1506462607,GB 1506462608,1506462623,A2 1506462624,1506462719,FR 1506462720,1506463231,IT 1506463232,1506463487,SE -1506463488,1506463999,DE +1506463488,1506463519,DE +1506463520,1506463527,GB +1506463528,1506463999,DE 1506464000,1506464767,GB 1506464768,1506464911,NL 1506464912,1506464919,GB @@ -62690,9 +57622,7 @@ 1506465280,1506465791,GB 1506465792,1506466047,DE 1506466048,1506466303,BE -1506466304,1506466375,DE -1506466376,1506466383,GB -1506466384,1506466559,DE +1506466304,1506466559,DE 1506466560,1506467071,GB 1506467072,1506467327,DE 1506467328,1506467599,GB @@ -62845,9 +57775,7 @@ 1508491264,1508507647,SE 1508507648,1508514063,GB 1508514064,1508514071,A2 -1508514072,1508521535,GB -1508521536,1508521551,IE -1508521552,1508524031,GB +1508514072,1508524031,GB 1508524032,1508540415,IE 1508540416,1508556799,FR 1508556800,1508573183,PL @@ -62885,7 +57813,9 @@ 1508788032,1508788063,BE 1508788064,1508789831,DE 1508789832,1508789839,AT -1508789840,1508802559,DE +1508789840,1508792639,DE +1508792640,1508792671,CH +1508792672,1508802559,DE 1508802560,1508804783,GB 1508804784,1508804791,DE 1508804792,1508818943,GB @@ -62960,9 +57890,7 @@ 1509572608,1509576703,NL 1509576704,1509580799,KZ 1509580800,1509584895,CZ -1509584896,1509588479,NO -1509588480,1509588607,GB -1509588608,1509588991,NO +1509584896,1509588991,NO 1509588992,1509593087,DE 1509593088,1509601279,RU 1509601280,1509604111,NL @@ -63580,8 +58508,7 @@ 1534714032,1534714047,BE 1534714048,1534714051,FR 1534714052,1534714055,IT -1534714056,1534714059,DE -1534714060,1534714063,FR +1534714056,1534714063,GB 1534714064,1534714079,ES 1534714080,1534714095,FR 1534714096,1534714111,BE @@ -63592,8 +58519,7 @@ 1534714128,1534714143,BE 1534714144,1534714159,GB 1534714160,1534714255,FR -1534714256,1534714259,DE -1534714260,1534714271,PL +1534714256,1534714271,PL 1534714272,1534714279,FR 1534714280,1534714283,DE 1534714284,1534714287,CH @@ -63659,15 +58585,15 @@ 1534715104,1534715119,BE 1534715120,1534715135,FR 1534715136,1534715143,PL -1534715144,1534715199,FR +1534715144,1534715167,FR +1534715168,1534715183,IT +1534715184,1534715199,FR 1534715200,1534715203,IT 1534715204,1534715207,FR 1534715208,1534715211,GB 1534715212,1534715215,FR 1534715216,1534715231,BE -1534715232,1534715267,FR -1534715268,1534715271,PL -1534715272,1534715279,FR +1534715232,1534715279,FR 1534715280,1534715283,PL 1534715284,1534715287,FR 1534715288,1534715295,CZ @@ -63677,8 +58603,7 @@ 1534715320,1534715327,PL 1534715328,1534715343,NL 1534715344,1534715359,FR -1534715360,1534715367,NL -1534715368,1534715371,FR +1534715360,1534715371,NL 1534715372,1534715375,CH 1534715376,1534715391,FR 1534715392,1534715399,PL @@ -63689,9 +58614,7 @@ 1534715440,1534715447,ES 1534715448,1534715451,FR 1534715452,1534715455,PL -1534715456,1534715471,FR -1534715472,1534715487,IE -1534715488,1534715583,FR +1534715456,1534715583,FR 1534715584,1534715599,GB 1534715600,1534715603,DE 1534715604,1534715607,GB @@ -63733,8 +58656,7 @@ 1534716048,1534716063,GB 1534716064,1534716131,FR 1534716132,1534716143,ES -1534716144,1534716159,FR -1534716160,1534716163,IT +1534716144,1534716163,FR 1534716164,1534716167,FI 1534716168,1534716175,IE 1534716176,1534716191,FR @@ -63778,7 +58700,7 @@ 1534716736,1534716751,FR 1534716752,1534716759,PL 1534716760,1534716763,DE -1534716764,1534716767,ES +1534716764,1534716767,BE 1534716768,1534716775,DE 1534716776,1534716779,PT 1534716780,1534716787,PL @@ -63787,14 +58709,10 @@ 1534716804,1534716807,PL 1534716808,1534716811,NL 1534716812,1534716815,PL -1534716816,1534716823,FR -1534716824,1534716831,GB -1534716832,1534716863,FR +1534716816,1534716863,FR 1534716864,1534716879,ES 1534716880,1534716895,BE -1534716896,1534716903,ES -1534716904,1534716911,DE -1534716912,1534716927,FR +1534716896,1534716927,FR 1534716928,1534716943,DE 1534716944,1534716959,FR 1534716960,1534716963,ES @@ -63814,9 +58732,10 @@ 1534717120,1534717135,IT 1534717136,1534717139,CH 1534717140,1534717143,CZ -1534717144,1534717147,FR +1534717144,1534717147,NL 1534717148,1534717151,IT -1534717152,1534717227,FR +1534717152,1534717167,GB +1534717168,1534717227,FR 1534717228,1534717231,ES 1534717232,1534717247,FR 1534717248,1534717251,PL @@ -63838,7 +58757,7 @@ 1534717440,1534717519,FR 1534717520,1534717535,DE 1534717536,1534717551,PL -1534717552,1534717567,CZ +1534717552,1534717567,ES 1534717568,1534717583,IE 1534717584,1534717587,CZ 1534717588,1534717591,GB @@ -63847,7 +58766,8 @@ 1534717648,1534717659,PL 1534717660,1534717663,FR 1534717664,1534717679,GB -1534717680,1534717711,ES +1534717680,1534717695,BE +1534717696,1534717711,ES 1534717712,1534717715,DE 1534717716,1534717719,ES 1534717720,1534717727,FR @@ -63861,7 +58781,7 @@ 1534717764,1534717767,FR 1534717768,1534717771,IT 1534717772,1534717783,FR -1534717784,1534717787,GB +1534717784,1534717787,CZ 1534717788,1534717791,DE 1534717792,1534717823,FR 1534717824,1534717855,BE @@ -63892,7 +58812,7 @@ 1534718080,1534718087,ES 1534718088,1534718091,DE 1534718092,1534718095,ES -1534718096,1534718111,PL +1534718096,1534718111,FR 1534718112,1534718127,GB 1534718128,1534718143,ES 1534718144,1534718159,FR @@ -63919,8 +58839,7 @@ 1534718496,1534718527,FR 1534718528,1534718531,ES 1534718532,1534718535,PL -1534718536,1534718575,FR -1534718576,1534718591,GB +1534718536,1534718591,FR 1534718592,1534718607,NL 1534718608,1534718623,FR 1534718624,1534718631,PL @@ -63956,8 +58875,7 @@ 1534719312,1534719335,FR 1534719336,1534719339,IT 1534719340,1534719343,ES -1534719344,1534719375,FR -1534719376,1534719379,PL +1534719344,1534719379,FR 1534719380,1534719383,IT 1534719384,1534719391,FR 1534719392,1534719395,CH @@ -64026,9 +58944,7 @@ 1534720016,1534720023,FR 1534720024,1534720027,PL 1534720028,1534720031,ES -1534720032,1534720047,FR -1534720048,1534720063,ES -1534720064,1534720079,FR +1534720032,1534720079,FR 1534720080,1534720095,GB 1534720096,1534720111,IT 1534720112,1534720179,FR @@ -64056,7 +58972,7 @@ 1534720412,1534720415,IE 1534720416,1534720419,ES 1534720420,1534720423,DE -1534720424,1534720431,ES +1534720424,1534720431,IT 1534720432,1534720447,PL 1534720448,1534720451,FR 1534720452,1534720455,NL @@ -64079,7 +58995,8 @@ 1534720644,1534720647,FR 1534720648,1534720655,IE 1534720656,1534720671,ES -1534720672,1534720735,FR +1534720672,1534720703,FR +1534720704,1534720735,IE 1534720736,1534720739,CH 1534720740,1534720743,PL 1534720744,1534720747,IE @@ -64099,10 +59016,10 @@ 1534720904,1534720911,PT 1534720912,1534720943,FR 1534720944,1534720951,CH -1534720952,1534720959,PL +1534720952,1534720959,IE 1534720960,1534720975,IT 1534720976,1534720979,NL -1534720980,1534720983,GB +1534720980,1534720983,FR 1534720984,1534720991,PL 1534720992,1534721007,IT 1534721008,1534721023,FR @@ -64111,7 +59028,7 @@ 1534721056,1534721063,ES 1534721064,1534721071,GB 1534721072,1534721095,FR -1534721096,1534721099,DE +1534721096,1534721099,IT 1534721100,1534721111,PL 1534721112,1534721115,NL 1534721116,1534721119,FR @@ -64129,14 +59046,15 @@ 1534721248,1534721263,FR 1534721264,1534721279,GB 1534721280,1534721287,PL -1534721288,1534721311,FR +1534721288,1534721295,IT +1534721296,1534721311,FR 1534721312,1534721319,PL 1534721320,1534721327,PT 1534721328,1534721343,FR 1534721344,1534721359,PL 1534721360,1534721375,GB 1534721376,1534721391,FR -1534721392,1534721407,PL +1534721392,1534721407,PT 1534721408,1534721439,DE 1534721440,1534721455,FR 1534721456,1534721471,ES @@ -64171,7 +59089,7 @@ 1534721832,1534721835,DE 1534721836,1534721839,BE 1534721840,1534721855,PL -1534721856,1534721887,ES +1534721856,1534721887,FI 1534721888,1534721903,FR 1534721904,1534721919,DE 1534721920,1534721935,FR @@ -64215,7 +59133,8 @@ 1535115264,1535197183,AT 1535197184,1535246335,SE 1535246336,1535311871,AT -1535311872,1535377407,SE +1535311872,1535344639,NO +1535344640,1535377407,SE 1535377408,1535442943,GR 1535442944,1535508479,FI 1535508480,1535574015,BG @@ -64799,7 +59718,8 @@ 1539503104,1539504127,RU 1539504128,1539504639,AT 1539504640,1539505151,UA -1539505152,1539506175,RU +1539505152,1539505663,RU +1539505664,1539506175,AT 1539506176,1539506687,NL 1539506688,1539507199,UA 1539507200,1539508223,RO @@ -65092,7 +60012,6 @@ 1539721728,1539721983,PL 1539721984,1539722239,RU 1539722240,1539722495,PL -1539722496,1539722751,GB 1539722752,1539723007,DE 1539723008,1539723263,CH 1539723264,1539723519,PL @@ -65354,7 +60273,6 @@ 1539793408,1539793663,CH 1539793664,1539794175,IL 1539794176,1539794431,PL -1539794432,1539794687,DK 1539794688,1539794943,FR 1539794944,1539795199,RO 1539795200,1539795455,PL @@ -65426,7 +60344,6 @@ 1539813376,1539813631,PL 1539813632,1539813887,NL 1539813888,1539814143,RU -1539814144,1539814399,NL 1539814400,1539814911,GB 1539814912,1539815167,UA 1539815168,1539815423,GB @@ -65455,7 +60372,6 @@ 1539821568,1539821823,DK 1539821824,1539822079,DE 1539822080,1539822335,RO -1539822336,1539822591,RU 1539822592,1539822847,GB 1539822848,1539823103,IE 1539823104,1539823359,DE @@ -65565,7 +60481,6 @@ 1539911680,1539913727,RU 1539913728,1539914751,CH 1539914752,1539915775,SE -1539915776,1539916799,RU 1539916800,1539917823,UA 1539917824,1539918847,RU 1539918848,1539920895,RO @@ -66233,7 +61148,6 @@ 1540410624,1540410879,RU 1540410880,1540411135,TR 1540411136,1540411391,SG -1540411392,1540411647,RU 1540411648,1540411903,FR 1540411904,1540412159,RU 1540412160,1540412415,BE @@ -66311,7 +61225,6 @@ 1540433152,1540433407,GB 1540433408,1540433663,AM 1540433664,1540433919,DK -1540433920,1540434175,GB 1540434176,1540434431,CH 1540434432,1540434687,DE 1540434688,1540434943,GB @@ -66472,7 +61385,6 @@ 1540481024,1540481279,LT 1540481280,1540481535,GB 1540481536,1540481791,UA -1540481792,1540482047,RU 1540482048,1540482303,DK 1540482304,1540482559,FR 1540482560,1540482815,CH @@ -67605,7 +62517,7 @@ 1541051392,1541052415,NL 1541052416,1541053439,RO 1541053440,1541054463,PL -1541054464,1541055487,RU +1541054464,1541055487,TJ 1541055488,1541056511,PL 1541056512,1541057535,TJ 1541057536,1541058559,RS @@ -70417,7 +65329,9 @@ 1545895936,1545928703,BA 1545928704,1545961471,SI 1545961472,1545994239,RU -1545994240,1546027007,CZ +1545994240,1545996287,CZ +1545996288,1545998335,RU +1545998336,1546027007,CZ 1546027008,1546059775,RU 1546059776,1546063871,SE 1546063872,1546067967,DE @@ -70504,8 +65418,8 @@ 1546328064,1546330111,CZ 1546330112,1546332159,SE 1546332160,1546334207,GB -1546334208,1546335743,DE -1546335744,1546336255,GB +1546334208,1546335487,DE +1546335488,1546336255,GB 1546336256,1546338303,CZ 1546338304,1546340351,GB 1546340352,1546342399,DK @@ -70844,7 +65758,9 @@ 1550581760,1550843903,NL 1550843904,1550974975,UA 1550974976,1550975231,MD -1550975232,1551007743,RO +1550975232,1550984703,RO +1550984704,1550984959,ES +1550984960,1551007743,RO 1551007744,1551106047,MD 1551106048,1551237119,DE 1551237120,1551368191,GR @@ -71662,7 +66578,8 @@ 1571446012,1571446015,US 1571446016,1571446783,NL 1571446784,1571447807,KZ -1571447808,1571448831,RU +1571447808,1571448319,RU +1571448320,1571448831,CZ 1571448832,1571450879,US 1571450880,1571451903,UA 1571451904,1571452927,RU @@ -71670,14 +66587,17 @@ 1571453952,1571454975,GB 1571454976,1571455999,RU 1571456000,1571456511,CY -1571456512,1571457023,RU +1571456512,1571456767,NL +1571456768,1571457023,RU 1571457024,1571458047,UA 1571458048,1571459071,CZ 1571459072,1571463167,UA 1571463168,1571465215,RU 1571465216,1571469311,CZ 1571469312,1571470335,RU -1571470336,1571477503,CZ +1571470336,1571473407,CZ +1571473408,1571475455,RU +1571475456,1571477503,CZ 1571477504,1571478527,RU 1571478528,1571485695,CZ 1571485696,1571487743,RU @@ -71721,10 +66641,10 @@ 1571543552,1571543807,UA 1571543808,1571545343,RU 1571545344,1571545599,UA -1571545600,1571545855,RU -1571545856,1571546111,CZ +1571545600,1571546111,RU 1571546112,1571546623,KZ -1571546624,1571549183,CZ +1571546624,1571547135,RU +1571547136,1571549183,CZ 1571549184,1571552255,UA 1571552256,1571553279,CZ 1571553280,1571684351,IL @@ -72152,29 +67072,21 @@ 1572849664,1572851711,GB 1572851712,1572853759,DE 1572853760,1572853760,EU -1572853761,1572853767,BE -1572853768,1572853769,EU -1572853770,1572853770,DK -1572853771,1572853775,EU +1572853761,1572853766,BE +1572853767,1572853775,EU 1572853776,1572854015,BE 1572854016,1572854271,LU 1572854272,1572854272,EU -1572854273,1572854284,BE -1572854285,1572854285,NL -1572854286,1572854286,CH -1572854287,1572854287,LU -1572854288,1572854288,BE -1572854289,1572854289,CH -1572854290,1572854527,BE +1572854273,1572854283,BE +1572854284,1572854287,EU +1572854288,1572854527,BE 1572854528,1572855039,EU 1572855040,1572855071,BE 1572855072,1572855295,EU 1572855296,1572855551,CH 1572855552,1572855552,EU 1572855553,1572855558,BE -1572855559,1572855561,EU -1572855562,1572855562,DK -1572855563,1572855567,EU +1572855559,1572855567,EU 1572855568,1572855807,BE 1572855808,1572857855,KZ 1572857856,1572859903,SE @@ -72199,7 +67111,7 @@ 1578590208,1578590223,FR 1578590224,1578590231,DE 1578590232,1578590239,IT -1578590240,1578590271,FR +1578590240,1578590271,IE 1578590272,1578590275,NL 1578590276,1578590279,PT 1578590280,1578590283,PL @@ -72208,10 +67120,7 @@ 1578590304,1578590311,IT 1578590312,1578590339,FR 1578590340,1578590343,DE -1578590344,1578590351,FR -1578590352,1578590367,GB -1578590368,1578590415,FR -1578590416,1578590431,PL +1578590344,1578590431,FR 1578590432,1578590447,BE 1578590448,1578590471,FR 1578590472,1578590479,DE @@ -72237,10 +67146,12 @@ 1578590664,1578590667,FR 1578590668,1578590671,NL 1578590672,1578590687,PL -1578590688,1578590691,GB +1578590688,1578590691,FR 1578590692,1578590695,DE 1578590696,1578590699,FR -1578590700,1578590727,PL +1578590700,1578590703,PL +1578590704,1578590719,FR +1578590720,1578590727,PL 1578590728,1578590731,GB 1578590732,1578590735,PL 1578590736,1578590787,FR @@ -72281,9 +67192,7 @@ 1578591280,1578591287,ES 1578591288,1578591291,FR 1578591292,1578591295,ES -1578591296,1578591327,FR -1578591328,1578591343,PL -1578591344,1578591391,FR +1578591296,1578591391,FR 1578591392,1578591395,IT 1578591396,1578591399,PL 1578591400,1578591403,DE @@ -72293,8 +67202,7 @@ 1578591416,1578591423,ES 1578591424,1578591431,PL 1578591432,1578591435,NL -1578591436,1578591439,ES -1578591440,1578591455,FR +1578591436,1578591455,FR 1578591456,1578591459,GB 1578591460,1578591463,FR 1578591464,1578591487,PL @@ -72307,7 +67215,9 @@ 1578591576,1578591579,DE 1578591580,1578591583,ES 1578591584,1578591599,IT -1578591600,1578591703,FR +1578591600,1578591695,FR +1578591696,1578591699,IT +1578591700,1578591703,FR 1578591704,1578591707,DE 1578591708,1578591791,FR 1578591792,1578591795,ES @@ -72321,9 +67231,7 @@ 1578591900,1578591903,NL 1578591904,1578591919,PL 1578591920,1578591939,ES -1578591940,1578591951,FR -1578591952,1578591967,PT -1578591968,1578591975,FR +1578591940,1578591975,FR 1578591976,1578591979,PL 1578591980,1578591983,FR 1578591984,1578592031,PL @@ -72338,8 +67246,7 @@ 1578592096,1578592111,FR 1578592112,1578592127,GB 1578592128,1578592143,DE -1578592144,1578592159,NL -1578592160,1578592163,FR +1578592144,1578592163,FR 1578592164,1578592171,IT 1578592172,1578592175,ES 1578592176,1578592183,CZ @@ -72371,13 +67278,11 @@ 1578592496,1578592511,FR 1578592512,1578592515,GB 1578592516,1578592519,PL -1578592520,1578592531,FR -1578592532,1578592535,GB +1578592520,1578592535,FR 1578592536,1578592539,PL 1578592540,1578592559,FR 1578592560,1578592575,DE -1578592576,1578592591,GB -1578592592,1578592607,FR +1578592576,1578592607,FR 1578592608,1578592623,IE 1578592624,1578592687,FR 1578592688,1578592695,DE @@ -72399,9 +67304,9 @@ 1578592848,1578592851,BE 1578592852,1578592855,DE 1578592856,1578592859,FR -1578592860,1578592879,PL -1578592880,1578592883,FR -1578592884,1578592891,GB +1578592860,1578592863,PL +1578592864,1578592879,FR +1578592880,1578592891,GB 1578592892,1578592895,FR 1578592896,1578592959,IT 1578592960,1578592991,FR @@ -72413,7 +67318,7 @@ 1578593304,1578593307,ES 1578593308,1578593319,FR 1578593320,1578593323,PT -1578593324,1578593327,FR +1578593324,1578593327,DE 1578593328,1578593343,IT 1578593344,1578593359,PT 1578593360,1578593375,PL @@ -72457,14 +67362,11 @@ 1578593824,1578593831,GB 1578593832,1578593835,FR 1578593836,1578593839,ES -1578593840,1578593871,FR -1578593872,1578593875,ES -1578593876,1578593887,FR +1578593840,1578593887,FR 1578593888,1578593895,ES 1578593896,1578593899,GB 1578593900,1578593903,DE -1578593904,1578593919,FR -1578593920,1578593935,PL +1578593904,1578593935,FR 1578593936,1578593939,IT 1578593940,1578593943,CH 1578593944,1578593947,ES @@ -72509,9 +67411,7 @@ 1578594376,1578594383,PT 1578594384,1578594399,FR 1578594400,1578594431,PL -1578594432,1578594447,FR -1578594448,1578594463,PL -1578594464,1578594479,FR +1578594432,1578594479,FR 1578594480,1578594495,ES 1578594496,1578594511,FR 1578594512,1578594515,PL @@ -72536,7 +67436,7 @@ 1578594716,1578594751,FR 1578594752,1578594767,ES 1578594768,1578594775,GB -1578594776,1578594779,ES +1578594776,1578594779,FR 1578594780,1578594783,IE 1578594784,1578594799,FR 1578594800,1578594815,DE @@ -72553,7 +67453,7 @@ 1578595200,1578595203,DE 1578595204,1578595207,FR 1578595208,1578595215,PL -1578595216,1578595231,DE +1578595216,1578595231,FR 1578595232,1578595263,BE 1578595264,1578595267,ES 1578595268,1578595271,FR @@ -72583,11 +67483,14 @@ 1578595504,1578595519,PT 1578595520,1578595523,PL 1578595524,1578595527,FR -1578595528,1578595531,IE +1578595528,1578595531,BE 1578595532,1578595535,GB 1578595536,1578595543,LT 1578595544,1578595547,GB -1578595548,1578595607,FR +1578595548,1578595551,FR +1578595552,1578595559,IT +1578595560,1578595567,ES +1578595568,1578595607,FR 1578595608,1578595611,GB 1578595612,1578595615,CZ 1578595616,1578595619,PL @@ -72605,7 +67508,7 @@ 1578595704,1578595711,PL 1578595712,1578595743,GB 1578595744,1578595747,IT -1578595748,1578595751,FR +1578595748,1578595751,PL 1578595752,1578595759,ES 1578595760,1578595763,FR 1578595764,1578595767,DE @@ -72614,7 +67517,7 @@ 1578595808,1578595823,DE 1578595824,1578595855,FR 1578595856,1578595871,GB -1578595872,1578595903,FR +1578595872,1578595903,IT 1578595904,1578595907,NL 1578595908,1578595911,BE 1578595912,1578595935,FR @@ -72635,11 +67538,13 @@ 1578596116,1578596119,FR 1578596120,1578596123,PT 1578596124,1578596127,ES -1578596128,1578596143,PL +1578596128,1578596143,FR 1578596144,1578596147,GB 1578596148,1578596151,FR 1578596152,1578596155,DE -1578596156,1578596175,FR +1578596156,1578596159,FR +1578596160,1578596167,DE +1578596168,1578596175,FR 1578596176,1578596183,ES 1578596184,1578596191,BE 1578596192,1578596207,ES @@ -72684,10 +67589,10 @@ 1578610860,1578610863,FR 1578610864,1578610867,BE 1578610868,1578610871,FR -1578610872,1578610879,PL +1578610872,1578610879,NL 1578610880,1578610943,FR 1578610944,1578610975,ES -1578610976,1578611007,PL +1578610976,1578611007,FR 1578611008,1578611023,IT 1578611024,1578611039,NL 1578611040,1578611043,ES @@ -72731,8 +67636,7 @@ 1578611328,1578611343,BE 1578611344,1578611359,FR 1578611360,1578611375,CH -1578611376,1578611391,FR -1578611392,1578611399,GB +1578611376,1578611399,FR 1578611400,1578611407,ES 1578611408,1578611423,IT 1578611424,1578611431,GB @@ -72743,28 +67647,27 @@ 1578611456,1578611711,FR 1578611712,1578611775,CH 1578611776,1578611783,DE -1578611784,1578611807,FR +1578611784,1578611791,FR +1578611792,1578611807,IE 1578611808,1578611839,CH 1578611840,1578611855,BE 1578611856,1578611903,FR 1578611904,1578611907,PL -1578611908,1578611911,GB +1578611908,1578611911,FR 1578611912,1578611919,PT 1578611920,1578611935,BE 1578611936,1578611943,PL 1578611944,1578611947,FR 1578611948,1578611951,GB 1578611952,1578611967,PL -1578611968,1578612031,GB -1578612032,1578612039,DE -1578612040,1578612047,CH +1578611968,1578612031,FR +1578612032,1578612047,PT 1578612048,1578612051,NL 1578612052,1578612059,DE 1578612060,1578612063,ES 1578612064,1578612095,FR 1578612096,1578612111,PT -1578612112,1578612115,FR -1578612116,1578612119,PL +1578612112,1578612119,FR 1578612120,1578612123,IE 1578612124,1578612127,DE 1578612128,1578612135,ES @@ -72802,14 +67705,14 @@ 1578612904,1578612907,DE 1578612908,1578612911,PL 1578612912,1578612927,FR -1578612928,1578612943,ES +1578612928,1578612943,PT 1578612944,1578612959,GB 1578612960,1578612975,DE 1578612976,1578612983,IT 1578612984,1578612991,FR 1578612992,1578613247,DE 1578613248,1578613391,FR -1578613392,1578613399,GB +1578613392,1578613399,PT 1578613400,1578613407,PL 1578613408,1578613423,FR 1578613424,1578613427,DE @@ -72830,7 +67733,7 @@ 1578613500,1578613503,PL 1578613504,1578613567,DE 1578613568,1578613631,PL -1578613632,1578613647,DE +1578613632,1578613647,PT 1578613648,1578613663,FR 1578613664,1578613679,PL 1578613680,1578613695,ES @@ -72865,11 +67768,11 @@ 1578614004,1578614007,PL 1578614008,1578614015,DE 1578614016,1578614047,FR -1578614048,1578614055,FI +1578614048,1578614055,ES 1578614056,1578614071,FR 1578614072,1578614079,ES 1578614080,1578614175,FR -1578614176,1578614191,ES +1578614176,1578614191,PL 1578614192,1578614195,FR 1578614196,1578614207,GB 1578614208,1578614271,PL @@ -72879,8 +67782,7 @@ 1578614560,1578614575,FR 1578614576,1578614583,DE 1578614584,1578614591,GB -1578614592,1578614623,CZ -1578614624,1578614655,BE +1578614592,1578614655,PT 1578614656,1578631167,FR 1578631168,1578663935,RO 1578663936,1578762239,RU @@ -72927,12 +67829,12 @@ 1580048384,1580064767,RU 1580064768,1580072959,DE 1580072960,1580075071,PT -1580075072,1580075199,GB +1580075072,1580075199,PT 1580075200,1580104959,PT 1580104960,1580105215,CH 1580105216,1580134399,PT 1580134400,1580134575,ES -1580134576,1580134583,GB +1580134576,1580134583,ES 1580134584,1580136447,ES 1580136448,1580138495,PT 1580138496,1580204031,IT @@ -73053,9 +67955,13 @@ 1583780424,1583780431,IT 1583780432,1583780767,GB 1583780768,1583780775,IT -1583780776,1583780943,GB +1583780776,1583780783,GB +1583780784,1583780791,IT +1583780792,1583780943,GB 1583780944,1583780951,IT -1583780952,1583781127,GB +1583780952,1583781039,GB +1583781040,1583781047,IT +1583781048,1583781127,GB 1583781128,1583781135,IT 1583781136,1583781279,GB 1583781280,1583781295,IT @@ -73065,19 +67971,21 @@ 1583781448,1583781455,IT 1583781456,1583781863,GB 1583781864,1583781871,IT -1583781872,1583782279,GB -1583782280,1583782287,IT -1583782288,1583782431,GB +1583781872,1583782431,GB 1583782432,1583782439,IT 1583782440,1583782495,GB 1583782496,1583782503,IT 1583782504,1583782975,GB 1583782976,1583782983,IT -1583782984,1583783479,GB +1583782984,1583783103,GB +1583783104,1583783111,IT +1583783112,1583783479,GB 1583783480,1583783487,IT 1583783488,1583783575,GB 1583783576,1583783583,BG -1583783584,1583783935,GB +1583783584,1583783655,GB +1583783656,1583783663,IT +1583783664,1583783935,GB 1583783936,1583788031,EU 1583788032,1583792127,TM 1583792128,1583796223,IE @@ -73185,7 +68093,9 @@ 1585265040,1585265663,MT 1585265664,1585265695,FR 1585265696,1585265727,IM -1585265728,1585266175,FR +1585265728,1585265935,FR +1585265936,1585265943,IM +1585265944,1585266175,FR 1585266176,1585266271,MT 1585266272,1585266287,MA 1585266288,1585266687,MT @@ -73699,7 +68609,9 @@ 1592393728,1592459263,SE 1592459264,1592524799,TR 1592524800,1592557567,GB -1592557568,1592590335,BG +1592557568,1592576511,BG +1592576512,1592577023,FR +1592577024,1592590335,BG 1592590336,1592623103,FI 1592623104,1592655871,RU 1592655872,1592786943,FR @@ -74015,8 +68927,7 @@ 1602375680,1602377727,BY 1602377728,1602379775,PS 1602379776,1602383871,GB -1602383872,1602383873,DE -1602383874,1602384895,EU +1602383872,1602384895,EU 1602384896,1602385151,DE 1602385152,1602385919,EU 1602385920,1602387967,AT @@ -74060,17 +68971,9 @@ 1602449408,1602451455,LV 1602451456,1602453503,DE 1602453504,1602455551,SK -1602455552,1602455690,FR -1602455691,1602455691,BE -1602455692,1602456015,FR +1602455552,1602456015,FR 1602456016,1602456025,ES -1602456026,1602456026,DE -1602456027,1602456027,NL -1602456028,1602456028,IT -1602456029,1602456029,ES -1602456030,1602456030,PT -1602456031,1602456031,ES -1602456032,1602456175,FR +1602456026,1602456175,FR 1602456176,1602456183,ES 1602456184,1602457471,FR 1602457472,1602457487,BE @@ -74158,25 +69061,10 @@ 1603076096,1603080191,RU 1603080192,1603080447,GB 1603080448,1603080703,FR -1603080704,1603080831,US -1603080832,1603080959,SE -1603080960,1603081087,DE -1603081088,1603081247,GB -1603081248,1603081255,NO -1603081256,1603081263,FI -1603081264,1603081279,DE -1603081280,1603081295,US -1603081296,1603082239,GB -1603082240,1603082495,DE -1603082496,1603082751,GT -1603082752,1603083007,ES -1603083008,1603083263,UA -1603083264,1603083535,DE -1603083536,1603083551,GB -1603083552,1603083567,NL +1603080704,1603083567,GB 1603083568,1603083823,LU -1603083824,1603084031,GB -1603084032,1603086847,IT +1603083824,1603084287,GB +1603084288,1603086847,IT 1603086848,1603087103,DE 1603087104,1603088383,IT 1603088384,1603092479,LB @@ -74287,12 +69175,10 @@ 1603220504,1603223551,CH 1603223552,1603223615,FR 1603223616,1603223631,GB -1603223632,1603223704,FR -1603223705,1603223711,GB -1603223712,1603223827,FR -1603223828,1603223828,RU -1603223829,1603223936,FR -1603223937,1603223951,GB +1603223632,1603223703,FR +1603223704,1603223711,GB +1603223712,1603223935,FR +1603223936,1603223951,GB 1603223952,1603224319,FR 1603224320,1603224335,GB 1603224336,1603224351,BE @@ -74364,9 +69250,7 @@ 1603979520,1603979775,US 1603979776,1603980463,GB 1603980464,1603980479,CH -1603980480,1603980863,GB -1603980864,1603980927,ID -1603980928,1603982655,GB +1603980480,1603982655,GB 1603982656,1603982687,DK 1603982688,1603982719,CW 1603982720,1603982783,GB @@ -74377,8 +69261,7 @@ 1603985280,1603985407,BR 1603985408,1603990015,GB 1603990016,1603990271,GR -1603990272,1603990527,SA -1603990528,1603993599,GB +1603990272,1603993599,GB 1603993600,1604009983,ME 1604009984,1604026367,PL 1604026368,1604042751,NL @@ -74490,15 +69373,23 @@ 1605110264,1605110271,IT 1605110272,1605111111,GB 1605111112,1605111119,IT -1605111120,1605111847,GB +1605111120,1605111239,GB +1605111240,1605111247,IT +1605111248,1605111383,GB +1605111384,1605111391,IT +1605111392,1605111847,GB 1605111848,1605111855,IT 1605111856,1605111919,GB 1605111920,1605111927,IT -1605111928,1605112367,GB +1605111928,1605111935,GB +1605111936,1605111943,IT +1605111944,1605112367,GB 1605112368,1605112375,IT 1605112376,1605112607,GB 1605112608,1605112615,IT -1605112616,1605113223,GB +1605112616,1605112847,GB +1605112848,1605112855,IT +1605112856,1605113223,GB 1605113224,1605113231,IT 1605113232,1605113383,GB 1605113384,1605113391,IT @@ -74508,21 +69399,15 @@ 1605114200,1605114207,IT 1605114208,1605114263,GB 1605114264,1605114271,IT -1605114272,1605114711,GB -1605114712,1605114719,IT -1605114720,1605114767,GB -1605114768,1605114775,IT -1605114776,1605114871,GB +1605114272,1605114871,GB 1605114872,1605114879,IT 1605114880,1605114959,GB 1605114960,1605114967,IT 1605114968,1605115007,GB 1605115008,1605115015,IT -1605115016,1605115047,GB -1605115048,1605115055,IT -1605115056,1605115759,GB -1605115760,1605115767,IT -1605115768,1605115807,GB +1605115016,1605115231,GB +1605115232,1605115239,IT +1605115240,1605115807,GB 1605115808,1605115815,IT 1605115816,1605115903,GB 1605115904,1605124095,RU @@ -74671,12 +69556,12 @@ 1607860224,1607892991,ES 1607892992,1607893055,GB 1607893056,1607893119,DE -1607893120,1607893188,DK -1607893189,1607893247,IT +1607893120,1607893183,DK +1607893184,1607893247,IT 1607893248,1607893311,AT 1607893312,1607893375,FR -1607893376,1607893443,SE -1607893444,1607893503,NL +1607893376,1607893439,SE +1607893440,1607893503,NL 1607893504,1607893567,BE 1607893568,1607893631,IE 1607893632,1607925759,ES @@ -74872,7 +69757,11 @@ 1634455552,1634459647,CA 1634459648,1634467839,US 1634467840,1634729983,CA -1634729984,1650919315,US +1634729984,1645740031,US +1645740032,1645741055,US +1645741056,1645772799,US +1645772800,1645773823,US +1645773824,1650919315,US 1650919316,1650919316,US 1650919317,1652293631,US 1652293632,1652310015,CA @@ -74880,9 +69769,7 @@ 1652460488,1652460495,CN 1652460496,1652481279,US 1652481280,1652481791,CN -1652481792,1652487286,US -1652487287,1652487287,TR -1652487288,1653500927,US +1652481792,1653500927,US 1653500928,1653501183,FR 1653501184,1653501439,IL 1653501440,1653501695,HK @@ -76070,8 +70957,7 @@ 1729031168,1729032191,SG 1729032192,1729033215,CN 1729033216,1729033727,SG -1729033728,1729033983,GB -1729033984,1729034239,SG +1729033728,1729034239,GB 1729034240,1729035263,KH 1729035264,1729036287,AU 1729036288,1729037311,JP @@ -76270,7 +71156,107 @@ 1729213952,1729214463,ID 1729214464,1729216511,JP 1729216512,1729216767,ID +1729216768,1729217023,AU +1729217024,1729217535,IN 1729217536,1729218559,HK +1729218560,1729219583,PK +1729219584,1729220607,CN +1729220608,1729221631,MY +1729221632,1729222655,KH +1729222656,1729225727,AU +1729225728,1729226751,CN +1729226752,1729227775,AU +1729227776,1729228799,VN +1729228800,1729229823,TW +1729229824,1729230847,ID +1729230848,1729231103,PH +1729231104,1729232895,AU +1729232896,1729233919,MY +1729233920,1729234943,VN +1729234944,1729236991,PK +1729236992,1729238015,ID +1729238016,1729239039,PK +1729239040,1729240063,JP +1729240064,1729242111,ID +1729242112,1729244159,AU +1729244160,1729245183,SG +1729245184,1729247231,AU +1729247232,1729248255,NZ +1729248256,1729249279,JP +1729249280,1729252351,IN +1729252352,1729253375,JP +1729253376,1729254399,TW +1729254400,1729255423,AU +1729255424,1729257471,MY +1729257472,1729258495,ID +1729258496,1729259519,JP +1729259520,1729260543,IN +1729260544,1729261567,AU +1729261568,1729262591,JP +1729262592,1729262847,PK +1729262848,1729263103,ID +1729263104,1729263615,NZ +1729263616,1729264639,IN +1729264640,1729265663,AU +1729265664,1729266687,TW +1729266688,1729267711,ID +1729267712,1729268735,NZ +1729268736,1729269759,IN +1729269760,1729270783,ID +1729270784,1729271807,AU +1729271808,1729272063,IN +1729272064,1729272319,ID +1729272320,1729272831,AU +1729272832,1729273855,IN +1729273856,1729274879,AF +1729274880,1729276927,IN +1729276928,1729277951,BN +1729277952,1729278975,VN +1729278976,1729279999,MN +1729280000,1729281023,HK +1729281024,1729281535,AU +1729281536,1729282047,ID +1729282048,1729283071,CN +1729283072,1729284095,AU +1729284096,1729285119,NZ +1729285120,1729286143,AU +1729286144,1729288191,CN +1729288192,1729289215,IN +1729289216,1729290239,ID +1729290240,1729291263,CN +1729291264,1729293311,JP +1729293312,1729294591,ID +1729294592,1729294847,AU +1729294848,1729295103,IN +1729295104,1729295359,PK +1729295360,1729296383,MY +1729296384,1729297407,JP +1729297408,1729298431,AU +1729298432,1729299455,JP +1729299456,1729300479,NZ +1729300480,1729300991,SG +1729300992,1729301503,NZ +1729301504,1729302527,CN +1729302528,1729302783,PH +1729302784,1729303551,IN +1729303552,1729304575,SG +1729304576,1729305599,HK +1729305600,1729306623,JP +1729306624,1729307647,PH +1729307648,1729307903,NZ +1729307904,1729308159,ID +1729308160,1729308415,HK +1729308672,1729310719,CN +1729310720,1729311743,JP +1729311744,1729312767,IN +1729312768,1729313791,ID +1729313792,1729314815,AU +1729314816,1729317887,CN +1729317888,1729319423,ID +1729319936,1729320959,HK +1729320960,1729321983,IN +1729321984,1729323007,AU +1729323008,1729324031,VN 1729363968,1729364991,PK 1729364992,1729367039,JP 1729367040,1729368063,CN @@ -76781,7 +71767,8 @@ 1744056832,1744057087,NZ 1744057088,1744057343,ID 1744057344,1744058367,HK -1744058368,1744067583,CN +1744058368,1744066559,CN +1744066560,1744067583,HK 1744067584,1744068607,JP 1744068608,1744069631,ID 1744069632,1744070655,SG @@ -77047,7 +72034,9 @@ 1777049600,1777053695,ZA 1777053696,1777057791,BF 1777057792,1777061887,NG -1777061888,1777063935,SD +1777061888,1777062399,SD +1777062400,1777062655,SS +1777062656,1777063935,SD 1777063936,1777065983,MZ 1777065984,1777070079,GQ 1777070080,1777074175,BW @@ -77249,7 +72238,9 @@ 1822552536,1822572543,US 1822572544,1822605311,CA 1822605312,1822654463,US -1822654464,1822670847,CA +1822654464,1822662143,CA +1822662144,1822662399,US +1822662400,1822670847,CA 1822670848,1822949375,US 1822949376,1822982143,CA 1822982144,1823081975,US @@ -77876,19 +72867,23 @@ 1835918440,1835918447,IT 1835918448,1835918519,GB 1835918520,1835918527,IT -1835918528,1835918567,GB +1835918528,1835918551,GB +1835918552,1835918559,IT +1835918560,1835918567,GB 1835918568,1835918583,IT -1835918584,1835918695,GB -1835918696,1835918703,IT -1835918704,1835918735,GB +1835918584,1835918735,GB 1835918736,1835918743,IT 1835918744,1835919151,GB 1835919152,1835919159,IT -1835919160,1835919375,GB +1835919160,1835919215,GB +1835919216,1835919223,IT +1835919224,1835919375,GB 1835919376,1835919383,IT 1835919384,1835919631,GB 1835919632,1835919639,IT -1835919640,1835919751,GB +1835919640,1835919711,GB +1835919712,1835919719,IT +1835919720,1835919751,GB 1835919752,1835919759,IT 1835919760,1835920127,GB 1835920128,1835920159,PT @@ -77898,21 +72893,23 @@ 1835920192,1835920199,PT 1835920200,1835920207,GB 1835920208,1835920335,PT -1835920336,1835920343,GB -1835920344,1835920383,PT -1835920384,1835920407,GB -1835920408,1835920415,IT -1835920416,1835920479,GB +1835920336,1835920351,GB +1835920352,1835920383,PT +1835920384,1835920479,GB 1835920480,1835920487,IT 1835920488,1835920631,GB 1835920632,1835920639,IT -1835920640,1835920775,GB +1835920640,1835920655,GB +1835920656,1835920663,IT +1835920664,1835920775,GB 1835920776,1835920783,IT 1835920784,1835920863,GB 1835920864,1835920871,IT 1835920872,1835921047,GB 1835921048,1835921055,IT -1835921056,1835921119,GB +1835921056,1835921095,GB +1835921096,1835921103,IT +1835921104,1835921119,GB 1835921120,1835921127,IT 1835921128,1835921343,GB 1835921344,1835921351,IT @@ -77930,9 +72927,11 @@ 1835923864,1835923871,IT 1835923872,1835923967,GB 1835923968,1835923975,IT -1835923976,1835924999,GB -1835925000,1835925007,IT -1835925008,1835925503,GB +1835923976,1835924159,GB +1835924160,1835924167,IT +1835924168,1835924375,GB +1835924376,1835924383,IT +1835924384,1835925503,GB 1835925504,1835933695,LV 1835933696,1835941887,RU 1835941888,1835950079,UA @@ -77953,13 +72952,17 @@ 1836056576,1836580863,IT 1836580864,1836597247,RU 1836597248,1836597759,LU -1836597760,1836606463,DE -1836606464,1836612607,LU +1836597760,1836604415,DE +1836604416,1836605439,FR +1836605440,1836605951,DE +1836605952,1836612607,LU 1836612608,1836613631,DE 1836613632,1836630015,RU 1836630016,1836646399,BG 1836646400,1836679167,RS -1836679168,1836685823,BG +1836679168,1836683519,BG +1836683520,1836685311,RO +1836685312,1836685823,BG 1836685824,1836687359,GR 1836687360,1836711935,BG 1836711936,1836728319,UA @@ -78069,9 +73072,7 @@ 1839756328,1839756335,FR 1839756336,1839759359,IT 1839759360,1839792127,RU -1839792128,1839792639,GB -1839792640,1839792655,US -1839792656,1839794735,GB +1839792128,1839794735,GB 1839794736,1839794751,CH 1839794752,1839794847,GB 1839794848,1839794879,CH @@ -78086,8 +73087,8 @@ 1839798400,1839798527,GB 1839798528,1839798559,US 1839798560,1839800959,GB -1839800960,1839801023,GR -1839801024,1839802111,GB +1839800960,1839800991,GR +1839800992,1839802111,GB 1839802112,1839802239,RO 1839802240,1839805951,GB 1839805952,1839806207,US @@ -78260,7 +73261,7 @@ 1842154144,1842154239,NO 1842154240,1842154247,HK 1842154248,1842154255,SG -1842154256,1842154271,NO +1842154256,1842154271,HK 1842154272,1842154279,CN 1842154280,1842154367,NO 1842154368,1842154431,US @@ -78443,7 +73444,7 @@ 1844068352,1844068479,FR 1844068480,1844070399,ES 1844070400,1844071423,GB -1844071424,1844072447,DE +1844071424,1844072447,LU 1844072448,1844076543,ES 1844076544,1844076575,GB 1844076576,1844076639,IE @@ -78504,7 +73505,9 @@ 1844132160,1844132167,AT 1844132168,1844132451,DE 1844132452,1844132459,AT -1844132460,1844133887,DE +1844132460,1844132507,DE +1844132508,1844132571,AT +1844132572,1844133887,DE 1844133888,1844135935,LT 1844135936,1844137983,NL 1844137984,1844140031,FR @@ -78552,9 +73555,7 @@ 1844170320,1844170327,IQ 1844170328,1844170751,DE 1844170752,1844174847,RU -1844174848,1844178457,DE -1844178458,1844178458,FR -1844178459,1844178943,DE +1844174848,1844178943,DE 1844178944,1844180991,EE 1844180992,1844181488,TR 1844181489,1844181503,DE @@ -78577,7 +73578,10 @@ 1844211712,1844215807,SK 1844215808,1844219903,BE 1844219904,1844220159,KE -1844220160,1844223999,A2 +1844220160,1844220415,US +1844220416,1844220671,A2 +1844220672,1844220927,US +1844220928,1844223999,A2 1844224000,1844228095,GB 1844228096,1844228479,DK 1844228480,1844228511,SE @@ -78883,7 +73887,7 @@ 1868300288,1868333055,IN 1868333056,1868341247,PK 1868341248,1868345343,ID -1868345344,1868346367,GU +1868345344,1868346367,AU 1868346368,1868347391,TH 1868347392,1868348415,AU 1868348416,1868349439,KR @@ -79445,9 +74449,7 @@ 1937518592,1937522687,JP 1937522688,1937530879,ID 1937530880,1937532927,US -1937532928,1937534975,IN -1937534976,1937535487,US -1937535488,1937535999,IN +1937532928,1937535999,IN 1937536000,1937536511,GB 1937536512,1937539071,IN 1937539072,1937637375,JP @@ -79857,9 +74859,7 @@ 1970925824,1970926079,SG 1970926080,1970926335,AU 1970926336,1970926591,US -1970926592,1970926847,SG -1970926848,1970927103,IL -1970927104,1970927359,SG +1970926592,1970927359,SG 1970927360,1970927615,US 1970927616,1970929663,AU 1970929664,1970962431,VN @@ -80559,7 +75559,9 @@ 2056794112,2056796159,BD 2056796160,2056806399,JP 2056806400,2056814591,KR -2056814592,2056817663,JP +2056814592,2056816863,JP +2056816864,2056816895,MY +2056816896,2056817663,JP 2056817664,2056817919,AU 2056817920,2056818943,JP 2056818944,2056818993,MY @@ -81290,21 +76292,7 @@ 2160893056,2160893119,DE 2160893120,2160893951,AT 2160893952,2160902143,RU -2160902144,2160902673,NL -2160902674,2160902675,TR -2160902676,2160902679,NL -2160902680,2160902681,TR -2160902682,2160902714,NL -2160902715,2160902716,TR -2160902717,2160902724,NL -2160902725,2160902727,TR -2160902728,2160902755,NL -2160902756,2160902756,TR -2160902757,2160902762,NL -2160902763,2160902763,TR -2160902764,2160903428,NL -2160903429,2160903429,ES -2160903430,2160906239,NL +2160902144,2160906239,NL 2160906240,2160908287,FR 2160908288,2160910335,PL 2160910336,2160914431,NL @@ -81664,7 +76652,7 @@ 2193186816,2193188863,PL 2193188864,2193189119,DE 2193189120,2193189247,CZ -2193189248,2193189375,GB +2193189248,2193189375,CZ 2193189376,2193189631,CZ 2193189632,2193189919,DE 2193189920,2193189935,GB @@ -81912,7 +76900,9 @@ 2222521856,2222522111,PR 2222522112,2224160767,US 2224160768,2224226303,GB -2224226304,2224357375,US +2224226304,2224242687,US +2224242688,2224259071,SG +2224259072,2224357375,US 2224357376,2224422911,FR 2224422912,2224488447,NO 2224488448,2224619519,US @@ -82073,7 +77063,7 @@ 2255749120,2255814655,US 2255814656,2255880191,CA 2255880192,2255945727,US -2255945728,2256011263,NO +2255945728,2256011263,DE 2256011264,2256666623,US 2256666624,2256732159,DE 2256732160,2257190911,US @@ -82186,7 +77176,7 @@ 2261843968,2261975039,US 2261975040,2262040575,AU 2262040576,2262106111,FR -2262106112,2262171647,IE +2262106112,2262171647,GB 2262171648,2262237183,FR 2262237184,2262499327,US 2262499328,2262630399,GB @@ -82856,7 +77846,7 @@ 2371747840,2371878911,GB 2371878912,2371944447,BE 2371944448,2372009983,GB -2372009984,2372075519,CH +2372009984,2372075519,PL 2372075520,2372206591,DE 2372206592,2372214783,UA 2372214784,2372218879,DE @@ -83004,7 +77994,8 @@ 2374686416,2374686639,GB 2374686640,2374686655,DK 2374686656,2374686671,FI -2374686672,2374686719,GB +2374686672,2374686703,GB +2374686704,2374686719,NO 2374686720,2374688767,NL 2374688768,2374696959,GB 2374696960,2374959103,US @@ -83939,7 +78930,8 @@ 2465665024,2465667071,IT 2465667072,2465669119,SI 2465669120,2465671167,RU -2465671168,2465673215,IE +2465671168,2465672959,IE +2465672960,2465673215,NL 2465673216,2465677311,GB 2465677312,2465679359,IT 2465679360,2465681407,NL @@ -84443,18 +79435,13 @@ 2509928448,2509930495,FI 2509930496,2509934591,RU 2509934592,2509936639,DE -2509936640,2509937681,AT -2509937682,2509937682,SX -2509937683,2509937683,CW -2509937684,2509937684,SS -2509937685,2509937713,AT +2509936640,2509937713,AT 2509937714,2509937729,LI 2509937730,2509937919,AT 2509937920,2509938175,IT 2509938176,2509938431,US 2509938432,2509938557,DE -2509938558,2509938558,FR -2509938559,2509938559,NL +2509938558,2509938559,AT 2509938560,2509938687,DE 2509938688,2509946879,UA 2509946880,2509963263,BE @@ -84496,7 +79483,9 @@ 2516523008,2516525055,RU 2516525056,2516525727,US 2516525728,2516525823,NL -2516525824,2516526335,US +2516525824,2516526079,US +2516526080,2516526143,NL +2516526144,2516526335,US 2516526336,2516527103,NL 2516527104,2516529151,GB 2516529152,2516531199,CH @@ -84639,7 +79628,7 @@ 2546039040,2547187711,US 2547187712,2547318783,GB 2547318784,2547515391,US -2547523584,2547531775,IT +2547515392,2547548159,NO 2547548160,2547580927,RU 2548039680,2548563967,GB 2548563968,2548826111,IR @@ -84648,19 +79637,17 @@ 2548827633,2548827634,AR 2548827635,2548827636,VE 2548827637,2548827638,MX -2548827639,2548827639,CO -2548827640,2548827640,PE -2548827641,2548827641,CA -2548827642,2548827642,ZA -2548827643,2548827644,IN -2548827645,2548827645,ID -2548827646,2548827646,TH -2548827647,2548829695,AT +2548827639,2548829695,AT 2548829696,2548829951,NL 2548829952,2548830207,AT 2548830208,2548830463,US 2548830464,2548830719,DE -2548830720,2548834303,AT +2548830720,2548830975,IT +2548830976,2548831231,GB +2548831232,2548831487,HK +2548831488,2548831743,FR +2548831744,2548831999,US +2548832000,2548834303,AT 2548834304,2548842495,GB 2548842496,2548858879,RU 2548858880,2548867071,NL @@ -84681,8 +79668,8 @@ 2548937728,2548937983,DK 2548937984,2548938239,LU 2548938240,2548938495,FR -2548938496,2548940543,SE -2548940544,2548940799,US +2548938496,2548940287,SE +2548940288,2548940799,US 2548940800,2548948991,ES 2548948992,2548951039,CZ 2548951040,2548953087,GB @@ -84717,7 +79704,8 @@ 2549613536,2549613551,DK 2549613552,2549613663,SE 2549613664,2549613679,NL -2549613680,2549613751,SE +2549613680,2549613687,DK +2549613688,2549613751,SE 2549613752,2549613759,ES 2549613760,2549613767,SE 2549613768,2549613775,FR @@ -84770,7 +79758,8 @@ 2549700608,2549701119,DE 2549701120,2549701375,EU 2549701376,2549701631,SE -2549701632,2549702655,EU +2549701632,2549701887,PL +2549701888,2549702655,EU 2549702656,2549704703,UA 2549704704,2549706751,CZ 2549706752,2549710847,NO @@ -84940,7 +79929,6 @@ 2559967232,2560032767,GB 2560032768,2560098303,US 2560098304,2560163839,BE -2560163840,2560229375,NZ 2560229376,2560628479,US 2560628480,2560628735,CA 2560628736,2560644607,US @@ -85026,7 +80014,9 @@ 2587066880,2587067135,GB 2587067136,2587067647,US 2587067648,2587067903,GB -2587067904,2587951103,US +2587067904,2587926527,US +2587926528,2587930623,BG +2587930624,2587951103,US 2600534016,2600665087,US 2600665088,2600730623,CA 2600730624,2600796159,NO @@ -85369,11 +80359,7 @@ 2654642176,2654644223,GB 2654644224,2654646271,IT 2654646272,2654648319,FR -2654648320,2654648655,IR -2654648656,2654648656,SE -2654648657,2654648665,IR -2654648666,2654648666,SE -2654648667,2654650367,IR +2654648320,2654650367,IR 2654650368,2654666751,BG 2654666752,2654994431,US 2654994432,2655059967,LU @@ -85504,31 +80490,17 @@ 2667537120,2667537135,FR 2667537136,2667537151,AT 2667537152,2667537791,FR -2667537792,2667537919,AT -2667537920,2667537943,FR +2667537792,2667537855,AT +2667537856,2667537943,FR 2667537944,2667537951,AT 2667537952,2667538431,FR 2667538432,2667544575,AT 2667544576,2667560959,RU 2667560960,2667565055,IT 2667565056,2667565311,HK -2667565312,2667565348,AT -2667565349,2667565349,TR -2667565350,2667565350,PT -2667565351,2667565351,GR -2667565352,2667565352,IE -2667565353,2667565353,DK -2667565354,2667565354,NO -2667565355,2667565355,NL -2667565356,2667565356,EG -2667565357,2667565357,LU -2667565358,2667565358,CZ -2667565359,2667565359,BE -2667565360,2667565360,AU +2667565312,2667565360,AT 2667565361,2667565362,PH -2667565363,2667565363,MY -2667565364,2667565364,NZ -2667565365,2667566335,AT +2667565363,2667566335,AT 2667566336,2667566591,US 2667566592,2667566847,DE 2667566848,2667567103,FR @@ -85761,9 +80733,7 @@ 2683699200,2683830271,US 2683830272,2683895807,AU 2683895808,2684157951,US -2684157952,2684158463,NL -2684158464,2684158719,BE -2684158720,2684159999,NL +2684157952,2684159999,NL 2684160000,2684162047,NO 2684162048,2684164095,EE 2684164096,2684166143,SE @@ -85803,7 +80773,7 @@ 2684191192,2684191199,IT 2684191200,2684191207,GB 2684191208,2684191215,NO -2684191216,2684191223,US +2684191216,2684191223,NL 2684191224,2684191231,CA 2684191232,2684191239,HR 2684191240,2684191247,IT @@ -85834,7 +80804,9 @@ 2684191424,2684191439,AU 2684191440,2684191455,CN 2684191456,2684191487,NL -2684191488,2684191615,US +2684191488,2684191495,US +2684191496,2684191503,NL +2684191504,2684191615,US 2684191616,2684191743,DK 2684191744,2684191751,US 2684191752,2684191759,NL @@ -85848,9 +80820,7 @@ 2684191848,2684191855,GB 2684191856,2684191871,US 2684191872,2684191873,ES -2684191874,2684191874,US -2684191875,2684191875,SA -2684191876,2684191879,NL +2684191874,2684191879,NL 2684191880,2684191887,LT 2684191888,2684191899,IT 2684191900,2684191911,US @@ -85861,7 +80831,7 @@ 2684191940,2684191943,US 2684191944,2684191951,ES 2684191952,2684191967,US -2684191968,2684191975,NL +2684191968,2684191975,SE 2684191976,2684191999,US 2684192000,2684192007,ES 2684192008,2684192015,AE @@ -85877,12 +80847,12 @@ 2684192088,2684192095,SG 2684192096,2684192103,CY 2684192104,2684192107,US -2684192108,2684192108,AU -2684192109,2684192111,NL +2684192108,2684192111,NL 2684192112,2684192119,CH 2684192120,2684192127,DO 2684192128,2684192135,IN -2684192136,2684192159,US +2684192136,2684192143,EE +2684192144,2684192159,US 2684192160,2684192163,HK 2684192164,2684192175,TR 2684192176,2684192191,JO @@ -85895,8 +80865,8 @@ 2684192240,2684192247,IN 2684192248,2684192263,US 2684192264,2684192265,TR -2684192266,2684192266,EG -2684192267,2684192271,GB +2684192266,2684192267,NL +2684192268,2684192271,GB 2684192272,2684192279,US 2684192280,2684192287,RU 2684192288,2684192295,DK @@ -85926,13 +80896,11 @@ 2684192496,2684192503,GB 2684192504,2684192507,HR 2684192508,2684192509,CA -2684192510,2684192510,BH -2684192511,2684192511,RU +2684192510,2684192511,NL 2684192512,2684192519,US 2684192520,2684192523,NL 2684192524,2684192535,US -2684192536,2684192543,NL -2684192544,2684192545,US +2684192536,2684192545,NL 2684192546,2684192547,EG 2684192548,2684192551,CN 2684192552,2684192559,GB @@ -85952,7 +80920,7 @@ 2684192668,2684192671,RU 2684192672,2684192687,US 2684192688,2684192695,NL -2684192696,2684192703,US +2684192696,2684192703,IT 2684192704,2684192711,BE 2684192712,2684192715,AU 2684192716,2684192719,CA @@ -85961,8 +80929,7 @@ 2684192732,2684192735,IT 2684192736,2684192767,US 2684192768,2684192775,TR -2684192776,2684192799,US -2684192800,2684192807,NL +2684192776,2684192807,US 2684192808,2684192823,PL 2684192824,2684192831,NL 2684192832,2684192839,NO @@ -85985,10 +80952,7 @@ 2684193000,2684193007,SA 2684193008,2684193015,GB 2684193016,2684193019,US -2684193020,2684193020,BH -2684193021,2684193021,US -2684193022,2684193022,GB -2684193023,2684193023,IT +2684193020,2684193023,NL 2684193024,2684193031,TR 2684193032,2684193039,GR 2684193040,2684193055,NL @@ -86020,7 +80984,7 @@ 2684193296,2684193303,IT 2684193304,2684193311,NL 2684193312,2684193319,IN -2684193320,2684193327,US +2684193320,2684193327,NL 2684193328,2684193335,GR 2684193336,2684193375,US 2684193376,2684193383,LB @@ -86046,11 +81010,11 @@ 2684193584,2684193591,RU 2684193592,2684193599,ES 2684193600,2684193607,IN -2684193608,2684193611,PT +2684193608,2684193611,CN 2684193612,2684193615,NL 2684193616,2684193623,IN -2684193624,2684193631,TR -2684193632,2684193639,MX +2684193624,2684193631,NL +2684193632,2684193639,AU 2684193640,2684193647,TR 2684193648,2684193655,AU 2684193656,2684193659,ES @@ -86069,9 +81033,7 @@ 2684193768,2684193775,AR 2684193776,2684193783,NL 2684193784,2684193789,US -2684193790,2684193790,TR -2684193791,2684193791,CH -2684193792,2684193799,NL +2684193790,2684193799,NL 2684193800,2684193807,FR 2684193808,2684193815,GB 2684193816,2684193823,US @@ -86090,18 +81052,20 @@ 2684193964,2684193967,US 2684193968,2684193975,IN 2684193976,2684193983,DK -2684193984,2684193999,US -2684194000,2684194007,NL -2684194008,2684194039,US +2684193984,2684193991,US +2684193992,2684194003,NL +2684194004,2684194039,US 2684194040,2684194047,MT 2684194048,2684194055,IT -2684194056,2684194087,US +2684194056,2684194071,NL +2684194072,2684194079,US +2684194080,2684194087,NL 2684194088,2684194095,GR 2684194096,2684194103,US 2684194104,2684194111,NL 2684194112,2684194119,US 2684194120,2684194127,BG -2684194128,2684194135,GB +2684194128,2684194135,IN 2684194136,2684194143,MX 2684194144,2684194151,US 2684194152,2684194159,EG @@ -86132,7 +81096,7 @@ 2684194376,2684194383,JO 2684194384,2684194391,CN 2684194392,2684194399,NL -2684194400,2684194407,GR +2684194400,2684194407,US 2684194408,2684194423,NZ 2684194424,2684194431,NL 2684194432,2684194463,SG @@ -86154,7 +81118,7 @@ 2684194664,2684194671,JO 2684194672,2684194679,US 2684194680,2684194687,NO -2684194688,2684194695,US +2684194688,2684194695,NL 2684194696,2684194703,DK 2684194704,2684194711,TR 2684194712,2684194719,LV @@ -86170,9 +81134,9 @@ 2684194832,2684194839,SG 2684194840,2684194847,US 2684194848,2684194855,MT -2684194856,2684194863,UG +2684194856,2684194863,BG 2684194864,2684194871,NL -2684194872,2684194879,SA +2684194872,2684194879,BG 2684194880,2684194887,AE 2684194888,2684194895,ES 2684194896,2684194903,DE @@ -86185,8 +81149,7 @@ 2684194936,2684194943,CN 2684194944,2684194959,NL 2684194960,2684194967,MA -2684194968,2684194975,US -2684194976,2684194983,NL +2684194968,2684194983,NL 2684194984,2684194991,BR 2684194992,2684194999,US 2684195000,2684195007,DK @@ -86207,7 +81170,8 @@ 2684195200,2684195295,US 2684195296,2684195303,DE 2684195304,2684195307,SE -2684195308,2684195319,US +2684195308,2684195311,US +2684195312,2684195319,NL 2684195320,2684195323,GB 2684195324,2684195327,US 2684195328,2684195335,DE @@ -86219,15 +81183,14 @@ 2684195372,2684195375,MA 2684195376,2684195383,BE 2684195384,2684195391,NL -2684195392,2684195407,US -2684195408,2684195415,DE +2684195392,2684195415,US 2684195416,2684195423,AE 2684195424,2684195427,IT 2684195428,2684195431,TR 2684195432,2684195439,GB 2684195440,2684195455,DK 2684195456,2684195495,CN -2684195496,2684195503,UG +2684195496,2684195503,US 2684195504,2684195511,SA 2684195512,2684195527,US 2684195528,2684195535,RO @@ -86239,18 +81202,16 @@ 2684195576,2684195583,TR 2684195584,2684195647,US 2684195648,2684195655,BA -2684195656,2684195679,US +2684195656,2684195675,US +2684195676,2684195679,TR 2684195680,2684195683,AE 2684195684,2684195685,SA -2684195686,2684195686,US -2684195687,2684195687,GB -2684195688,2684195695,NL -2684195696,2684195712,US -2684195713,2684195713,CN -2684195714,2684195715,NL +2684195686,2684195695,NL +2684195696,2684195703,US +2684195704,2684195715,NL 2684195716,2684195719,US 2684195720,2684195727,GB -2684195728,2684195735,NL +2684195728,2684195735,US 2684195736,2684195743,CA 2684195744,2684195751,US 2684195752,2684195759,BE @@ -86264,8 +81225,8 @@ 2684195816,2684195823,GB 2684195824,2684195831,AF 2684195832,2684195855,US -2684195856,2684195864,GB -2684195865,2684195865,NL +2684195856,2684195863,GB +2684195864,2684195865,NL 2684195866,2684195867,CY 2684195868,2684195871,US 2684195872,2684195879,AT @@ -86302,14 +81263,15 @@ 2684196228,2684196229,GB 2684196230,2684196231,NL 2684196232,2684196239,IT -2684196240,2684196255,NL -2684196256,2684196263,VN +2684196240,2684196259,NL +2684196260,2684196263,AE 2684196264,2684196279,EG 2684196280,2684196303,DK 2684196304,2684196311,BR 2684196312,2684196319,NL 2684196320,2684196327,GB -2684196328,2684196335,NL +2684196328,2684196333,NL +2684196334,2684196335,AE 2684196336,2684196343,CN 2684196344,2684196347,TR 2684196348,2684196383,US @@ -86328,8 +81290,9 @@ 2684196544,2684196551,DK 2684196552,2684196567,NL 2684196568,2684196591,US -2684196592,2684196599,GB -2684196600,2684196607,NL +2684196592,2684196593,NL +2684196594,2684196595,AE +2684196596,2684196607,NL 2684196608,2684196639,US 2684196640,2684196671,GB 2684196672,2684196703,CN @@ -86353,23 +81316,15 @@ 2684196864,2684196871,US 2684196872,2684196879,MX 2684196880,2684196881,GB -2684196882,2684196882,US -2684196883,2684196883,DE +2684196882,2684196883,NL 2684196884,2684196885,SA -2684196886,2684196886,GB -2684196887,2684196887,VG +2684196886,2684196887,NL 2684196888,2684196891,TR 2684196892,2684196893,SA -2684196894,2684196894,BR -2684196895,2684196895,MA +2684196894,2684196895,NL 2684196896,2684196903,RU 2684196904,2684196905,CY -2684196906,2684196906,EG -2684196907,2684196907,AU -2684196908,2684196908,NL -2684196909,2684196909,AU -2684196910,2684196910,GB -2684196911,2684196911,IT +2684196906,2684196911,NL 2684196912,2684196931,US 2684196932,2684196935,NL 2684196936,2684196939,EG @@ -86379,17 +81334,13 @@ 2684196960,2684196967,US 2684196968,2684196975,BR 2684196976,2684196979,ZA -2684196980,2684196980,TR -2684196981,2684196981,CN -2684196982,2684196982,NL -2684196983,2684196983,US +2684196980,2684196983,NL 2684196984,2684196987,DK 2684196988,2684196999,US 2684197000,2684197007,IT 2684197008,2684197019,US 2684197020,2684197021,HR -2684197022,2684197022,RU -2684197023,2684197023,JO +2684197022,2684197023,NL 2684197024,2684197031,EG 2684197032,2684197047,US 2684197048,2684197055,IN @@ -86399,16 +81350,13 @@ 2684197080,2684197083,IT 2684197084,2684197087,NO 2684197088,2684197091,US -2684197092,2684197092,RU -2684197093,2684197093,US +2684197092,2684197093,NL 2684197094,2684197095,CY 2684197096,2684197099,IT -2684197100,2684197103,NL -2684197104,2684197107,US +2684197100,2684197107,US 2684197108,2684197111,AR 2684197112,2684197119,US -2684197120,2684197120,NL -2684197121,2684197121,MA +2684197120,2684197121,NL 2684197122,2684197123,CY 2684197124,2684197135,US 2684197136,2684197143,SA @@ -86417,14 +81365,9 @@ 2684197168,2684197175,NL 2684197176,2684197179,TR 2684197180,2684197181,CY -2684197182,2684197182,MA -2684197183,2684197183,EG -2684197184,2684197191,NL +2684197182,2684197191,NL 2684197192,2684197195,US -2684197196,2684197196,TR -2684197197,2684197197,NL -2684197198,2684197198,BR -2684197199,2684197199,AU +2684197196,2684197199,NL 2684197200,2684197215,US 2684197216,2684197227,AT 2684197228,2684197231,TR @@ -86442,22 +81385,13 @@ 2684197312,2684197319,NL 2684197320,2684197327,SA 2684197328,2684197335,BR -2684197336,2684197336,NL -2684197337,2684197337,MA -2684197338,2684197338,AU -2684197339,2684197339,RU +2684197336,2684197339,NL 2684197340,2684197355,US -2684197356,2684197356,GR -2684197357,2684197357,NL -2684197358,2684197358,RU -2684197359,2684197359,IN -2684197360,2684197368,TR -2684197369,2684197369,US -2684197370,2684197370,NL -2684197371,2684197371,AU +2684197356,2684197359,NL +2684197360,2684197367,TR +2684197368,2684197371,NL 2684197372,2684197373,MA -2684197374,2684197374,DK -2684197375,2684198911,NL +2684197374,2684198911,NL 2684198912,2684199423,GB 2684199424,2684199679,EU 2684199680,2684200959,GB @@ -86888,8 +81822,8 @@ 2723832832,2723852287,US 2723852288,2723852543,GB 2723852544,2724268287,US -2724268288,2724268351,MX -2724268352,2724790271,US +2724268288,2724268415,MX +2724268416,2724790271,US 2724790272,2724855807,CN 2724855808,2724921343,CA 2724921344,2725249023,US @@ -86903,7 +81837,13 @@ 2727084032,2727411711,US 2727411712,2727608319,AU 2727608320,2728132607,US -2728394752,2731540479,US +2728132608,2728263679,CA +2728394752,2731543551,US +2731543552,2731544575,CA +2731544576,2731549695,US +2731549696,2731550719,CA +2731550720,2731551743,US +2731606016,2731638783,US 2734686208,2734751743,CN 2734751744,2734817279,GB 2734817280,2734882815,US @@ -87336,7 +82276,43 @@ 2783182848,2783248383,AU 2783248384,2783313919,KR 2783313920,2783379455,US -2783379456,2783444991,ZA +2783379456,2783383039,ZA +2783383040,2783383295,US +2783383296,2783384575,ZA +2783384576,2783384831,US +2783384832,2783388159,ZA +2783388160,2783388415,US +2783388416,2783390719,ZA +2783390720,2783390975,US +2783390976,2783396351,ZA +2783396352,2783396607,US +2783396608,2783399167,ZA +2783399168,2783399423,US +2783399424,2783408127,ZA +2783408128,2783408383,US +2783408384,2783408895,ZA +2783408896,2783409151,US +2783409152,2783412479,ZA +2783412480,2783412735,US +2783412736,2783415807,ZA +2783415808,2783416063,US +2783416064,2783417087,ZA +2783417088,2783417343,US +2783417344,2783417599,ZA +2783417600,2783417855,US +2783417856,2783419647,ZA +2783419648,2783419903,US +2783419904,2783425023,ZA +2783425024,2783425279,US +2783425280,2783426815,ZA +2783426816,2783427071,US +2783427072,2783430399,ZA +2783430400,2783430655,US +2783430656,2783437055,ZA +2783437056,2783437311,US +2783437312,2783440127,ZA +2783440128,2783440383,US +2783440384,2783444991,ZA 2783444992,2783510527,US 2783510528,2783576063,ZA 2783576064,2783969279,US @@ -87399,9 +82375,7 @@ 2789113856,2789146623,CA 2789146624,2789147159,US 2789147160,2789147167,NG -2789147168,2789147277,US -2789147278,2789147279,PH -2789147280,2789147895,US +2789147168,2789147895,US 2789147896,2789147903,NG 2789147904,2789148583,US 2789148584,2789148591,NG @@ -87627,7 +82601,6 @@ 2823553024,2823618559,ZA 2823618560,2823684095,PA 2823684096,2823749631,KR -2823749632,2823815167,JP 2823815168,2823946239,ZA 2823946240,2824011775,US 2824011776,2824077311,AR @@ -88022,31 +82995,15 @@ 2899574784,2899902463,GB 2899902464,2899967999,US 2899968000,2900099071,CA -2900099072,2900361215,US +2900099072,2902458367,US 2902458368,2902462463,US -2902462464,2902470775,US -2902470776,2902470777,BD -2902470778,2902472018,US +2902462464,2902472018,US 2902472019,2902472021,AL 2902472022,2902472725,US 2902472726,2902472728,BD -2902472729,2902472788,US -2902472789,2902472790,LK -2902472791,2902472813,US -2902472814,2902472814,LK -2902472815,2902472834,US -2902472835,2902472836,BD -2902472837,2902473028,US +2902472729,2902473028,US 2902473029,2902473031,IN -2902473032,2902473107,US -2902473108,2902473109,BD -2902473110,2902473556,US -2902473557,2902473558,LK -2902473559,2902473649,US -2902473650,2902473650,BD -2902473651,2902473652,US -2902473653,2902473653,BD -2902473654,2902475263,US +2902473032,2902475263,US 2902475264,2902475327,CY 2902475328,2902475399,US 2902475400,2902475407,UY @@ -88264,175 +83221,34 @@ 2916581376,2916594687,PR 2916594688,2916594943,US 2916594944,2916614143,PR -2916614144,2917167299,US -2917167300,2917167302,CA -2917167303,2917167303,AR -2917167304,2917167311,US -2917167312,2917167316,BR -2917167317,2917167317,US -2917167318,2917167318,CA -2917167319,2917167322,BR -2917167323,2917167325,US -2917167326,2917167328,BR -2917167329,2917167329,AT -2917167330,2917167332,US -2917167333,2917167335,BR -2917167336,2917167339,US -2917167340,2917167340,BR -2917167341,2917167342,US -2917167343,2917167351,BR -2917167352,2917167354,US -2917167355,2917167358,BR -2917167359,2917167679,US +2916614144,2917167679,US 2917167680,2917167711,BR -2917167712,2917167714,US -2917167715,2917167717,CA -2917167718,2917167718,BR -2917167719,2917167722,CA -2917167723,2917167744,BR -2917167745,2917167773,US -2917167774,2917167775,BR +2917167712,2917167775,US 2917167776,2917167807,LT 2917167808,2917167839,US 2917167840,2917167871,TR 2917167872,2917167903,US 2917167904,2917167935,TR -2917167936,2917167967,US -2917167968,2917167968,IN -2917167969,2917167999,US -2917168000,2917168000,UA -2917168001,2917168006,US -2917168007,2917168031,UA +2917167936,2917167999,US +2917168000,2917168031,UA 2917168032,2917168095,US 2917168096,2917168127,GB -2917168128,2917168223,US -2917168224,2917168230,BR -2917168231,2917168232,US -2917168233,2917168255,BR -2917168256,2917168319,US +2917168128,2917168319,US 2917168320,2917168351,AR -2917168352,2917168352,US -2917168353,2917168415,BR +2917168352,2917168383,US +2917168384,2917168415,BR 2917168416,2917168447,US 2917168448,2917168479,BR -2917168480,2917168607,US -2917168608,2917168608,AU -2917168609,2917168627,BR -2917168628,2917168632,US -2917168633,2917168633,BR -2917168634,2917168959,US +2917168480,2917168959,US 2917168960,2917169023,DE -2917169024,2917169096,US -2917169097,2917169098,CA -2917169099,2917169100,BR -2917169101,2917169101,US -2917169102,2917169102,BR -2917169103,2917169106,CA -2917169107,2917169109,US -2917169110,2917169110,CA -2917169111,2917169113,BR -2917169114,2917169114,CA -2917169115,2917169120,US -2917169121,2917169123,BR -2917169124,2917169124,CA -2917169125,2917169125,US -2917169126,2917169144,BR -2917169145,2917169145,US -2917169146,2917169147,BR -2917169148,2917169149,US -2917169150,2917169150,BR -2917169151,2917169663,US +2917169024,2917169663,US 2917169664,2917169695,DE 2917169696,2917170015,US 2917170016,2917170047,UA 2917170048,2917170079,BR 2917170080,2917170111,US 2917170112,2917170143,TR -2917170144,2917170239,US -2917170240,2917170303,BR -2917170304,2917170758,US -2917170759,2917170764,BR -2917170765,2917170771,US -2917170772,2917170772,BR -2917170773,2917170774,US -2917170775,2917170777,BR -2917170778,2917170783,US -2917170784,2917170785,AR -2917170786,2917170800,BR -2917170801,2917170801,US -2917170802,2917170806,BR -2917170807,2917170809,US -2917170810,2917170812,BR -2917170813,2917170819,US -2917170820,2917170820,BR -2917170821,2917170821,US -2917170822,2917170822,BD -2917170823,2917170823,US -2917170824,2917170824,PH -2917170825,2917170825,BR -2917170826,2917170830,US -2917170831,2917170831,PH -2917170832,2917170839,US -2917170840,2917170840,BD -2917170841,2917170841,PH -2917170842,2917170843,US -2917170844,2917170844,EC -2917170845,2917170846,US -2917170847,2917170847,PK -2917170848,2917170848,PH -2917170849,2917170850,US -2917170851,2917170851,BR -2917170852,2917170852,US -2917170853,2917170853,BR -2917170854,2917170856,PH -2917170857,2917170859,US -2917170860,2917170861,PH -2917170862,2917170862,CA -2917170863,2917170863,US -2917170864,2917170864,PH -2917170865,2917170869,US -2917170870,2917170870,BD -2917170871,2917170871,AU -2917170872,2917170873,BD -2917170874,2917170877,US -2917170878,2917170878,BD -2917170879,2917170948,US -2917170949,2917170949,BR -2917170950,2917170952,US -2917170953,2917170953,SV -2917170954,2917170962,US -2917170963,2917170964,UA -2917170965,2917170965,CY -2917170966,2917170969,US -2917170970,2917170970,IN -2917170971,2917170979,US -2917170980,2917170980,NL -2917170981,2917170999,US -2917171000,2917171002,DE -2917171003,2917171003,IN -2917171004,2917171005,US -2917171006,2917171006,CA -2917171007,2917171007,GB -2917171008,2917171013,US -2917171014,2917171014,MX -2917171015,2917171015,CA -2917171016,2917171025,US -2917171026,2917171027,NL -2917171028,2917171031,US -2917171032,2917171032,BR -2917171033,2917171034,US -2917171035,2917171036,BR -2917171037,2917171050,US -2917171051,2917171051,BR -2917171052,2917171055,US -2917171056,2917171056,IN -2917171057,2917171093,US -2917171094,2917171094,BR -2917171095,2917171120,US -2917171121,2917171121,BR -2917171122,2917171167,US -2917171168,2917171199,BR -2917171200,2917195775,US +2917170144,2917195775,US 2917195776,2917196031,A2 2917196032,2917196415,CA 2917196416,2917196543,A2 @@ -88793,8 +83609,8 @@ 2918515200,2918515327,CA 2918515328,2918515599,US 2918515600,2918515607,NL -2918515608,2918532095,US -2918532096,2918532103,US +2918515608,2918531327,US +2918531328,2918532103,US 2918532104,2918532111,US 2918532112,2918532119,CN 2918532120,2918532143,US @@ -89311,7 +84127,9 @@ 2921530368,2921531391,DE 2921531392,2921541119,US 2921541120,2921541375,DE -2921541376,2921545727,US +2921541376,2921542143,US +2921542144,2921542399,CA +2921542400,2921545727,US 2921545728,2921545983,NL 2921545984,2921546495,US 2921546496,2921546751,NL @@ -89861,12 +84679,14 @@ 2954821984,2954822015,GB 2954822016,2954822047,IT 2954822048,2954822063,PL -2954822064,2954822071,FR +2954822064,2954822071,BE 2954822072,2954822075,PT 2954822076,2954822079,GB -2954822080,2954822143,IE -2954822144,2954822207,FR -2954822208,2954822271,PL +2954822080,2954822143,ES +2954822144,2954822159,FR +2954822160,2954822175,PT +2954822176,2954822207,IE +2954822208,2954822271,FR 2954822272,2954822279,GB 2954822280,2954822283,ES 2954822284,2954822287,FR @@ -89878,15 +84698,13 @@ 2954822328,2954822335,FR 2954822336,2954822343,PL 2954822344,2954822347,ES -2954822348,2954822351,PL -2954822352,2954822367,FR +2954822348,2954822367,FR 2954822368,2954822399,IT 2954822400,2954822431,PL 2954822432,2954822447,FR 2954822448,2954822451,PL 2954822452,2954822455,NL -2954822456,2954822463,ES -2954822464,2954822483,FR +2954822456,2954822483,FR 2954822484,2954822487,DE 2954822488,2954822491,FR 2954822492,2954822495,DE @@ -89909,8 +84727,8 @@ 2954822792,2954822879,FR 2954822880,2954822883,ES 2954822884,2954822887,FR -2954822888,2954822891,GB -2954822892,2954822895,IE +2954822888,2954822891,IT +2954822892,2954822895,PL 2954822896,2954822911,FR 2954822912,2954822915,DE 2954822916,2954822919,PL @@ -89963,9 +84781,7 @@ 2954823640,2954823643,FR 2954823644,2954823647,CH 2954823648,2954823695,FR -2954823696,2954823703,PT -2954823704,2954823707,FR -2954823708,2954823711,PT +2954823696,2954823711,PT 2954823712,2954823715,FR 2954823716,2954823719,GB 2954823720,2954823727,FR @@ -89979,7 +84795,8 @@ 2954823780,2954823783,CZ 2954823784,2954823787,ES 2954823788,2954823791,NL -2954823792,2954823871,FR +2954823792,2954823807,FR +2954823808,2954823871,PT 2954823872,2954823887,PL 2954823888,2954823891,ES 2954823892,2954823895,NL @@ -90002,15 +84819,13 @@ 2954824096,2954824127,GB 2954824128,2954824131,PL 2954824132,2954824135,BE -2954824136,2954824139,IE +2954824136,2954824139,DE 2954824140,2954824159,FR 2954824160,2954824175,IE 2954824176,2954824179,PL 2954824180,2954824183,ES 2954824184,2954824187,PL -2954824188,2954824191,FR -2954824192,2954824207,GB -2954824208,2954824223,FR +2954824188,2954824223,FR 2954824224,2954824255,NL 2954824256,2954824259,FI 2954824260,2954824263,IT @@ -90030,12 +84845,11 @@ 2954824464,2954824471,FR 2954824472,2954824479,PT 2954824480,2954824511,BE -2954824512,2954824543,GB +2954824512,2954824543,FR 2954824544,2954824575,PT 2954824576,2954824607,FR 2954824608,2954824611,PL -2954824612,2954824623,FR -2954824624,2954824627,GB +2954824612,2954824627,FR 2954824628,2954824631,PL 2954824632,2954824635,FR 2954824636,2954824639,PL @@ -90045,10 +84859,7 @@ 2954824708,2954824711,IT 2954824712,2954824719,FR 2954824720,2954824767,IE -2954824768,2954824775,FR -2954824776,2954824779,NL -2954824780,2954824783,FI -2954824784,2954824799,IE +2954824768,2954824799,FR 2954824800,2954824831,PT 2954824832,2954824863,PL 2954824864,2954824895,IE @@ -90066,7 +84877,7 @@ 2954825024,2954825031,GB 2954825032,2954825063,FR 2954825064,2954825067,ES -2954825068,2954825071,GB +2954825068,2954825071,FR 2954825072,2954825087,BE 2954825088,2954825095,CZ 2954825096,2954825099,IE @@ -90074,21 +84885,14 @@ 2954825104,2954825119,DE 2954825120,2954825151,PL 2954825152,2954825159,FR -2954825160,2954825163,DE -2954825164,2954825167,GB -2954825168,2954825171,DE -2954825172,2954825175,NL -2954825176,2954825179,IE -2954825180,2954825183,GB -2954825184,2954825187,DE -2954825188,2954825191,NL -2954825192,2954825195,FR +2954825160,2954825167,GB +2954825168,2954825183,PL +2954825184,2954825195,FR 2954825196,2954825199,CZ 2954825200,2954825203,FR 2954825204,2954825207,IT 2954825208,2954825211,GB -2954825212,2954825215,DE -2954825216,2954825239,FR +2954825212,2954825239,FR 2954825240,2954825243,PL 2954825244,2954825247,FR 2954825248,2954825263,GB @@ -90097,10 +84901,9 @@ 2954825272,2954825275,ES 2954825276,2954825311,FR 2954825312,2954825315,GB -2954825316,2954825319,DE +2954825316,2954825319,FR 2954825320,2954825327,ES -2954825328,2954825331,GB -2954825332,2954825335,FR +2954825328,2954825335,FR 2954825336,2954825343,NL 2954825344,2954825351,FR 2954825352,2954825359,PT @@ -90109,14 +84912,13 @@ 2954825384,2954825387,PL 2954825388,2954825391,ES 2954825392,2954825455,FR -2954825456,2954825459,GB +2954825456,2954825459,IT 2954825460,2954825463,NL 2954825464,2954825467,FR 2954825468,2954825471,NL 2954825472,2954825535,MA 2954825536,2954825539,PL -2954825540,2954825543,FR -2954825544,2954825547,BE +2954825540,2954825547,FR 2954825548,2954825551,DE 2954825552,2954825567,ES 2954825568,2954825599,FR @@ -90146,8 +84948,7 @@ 2954826036,2954826039,ES 2954826040,2954826043,PL 2954826044,2954826063,FR -2954826064,2954826067,BE -2954826068,2954826071,NL +2954826064,2954826071,IT 2954826072,2954826075,CH 2954826076,2954826151,FR 2954826152,2954826159,ES @@ -90156,11 +84957,9 @@ 2954826240,2954826243,IT 2954826244,2954826247,PT 2954826248,2954826255,CH -2954826256,2954826259,CZ +2954826256,2954826259,FR 2954826260,2954826263,PL -2954826264,2954826267,FR -2954826268,2954826271,NL -2954826272,2954826279,FR +2954826264,2954826279,FR 2954826280,2954826287,IT 2954826288,2954826299,FR 2954826300,2954826303,GB @@ -90184,13 +84983,14 @@ 2954826752,2954826755,CH 2954826756,2954826759,FR 2954826760,2954826763,PL -2954826764,2954826767,IE +2954826764,2954826767,FR 2954826768,2954826771,GB 2954826772,2954826775,PL 2954826776,2954826779,FR 2954826780,2954826783,PL 2954826784,2954826791,FR -2954826792,2954826799,DE +2954826792,2954826795,DE +2954826796,2954826799,IE 2954826800,2954826807,NL 2954826808,2954826811,FR 2954826812,2954826815,IT @@ -90212,7 +85012,7 @@ 2954827820,2954827823,ES 2954827824,2954827827,DE 2954827828,2954827831,PT -2954827832,2954827835,IE +2954827832,2954827835,FR 2954827836,2954827839,DE 2954827840,2954827855,BE 2954827856,2954827863,PT @@ -90222,19 +85022,14 @@ 2954827936,2954827939,PL 2954827940,2954827943,PT 2954827944,2954827947,NL -2954827948,2954827971,FR -2954827972,2954827975,CH -2954827976,2954827979,FR -2954827980,2954827983,IE -2954827984,2954827987,FR +2954827948,2954827987,FR 2954827988,2954827999,PL 2954828000,2954828031,NL 2954828032,2954828287,FR 2954828288,2954828291,CZ 2954828292,2954828303,DE 2954828304,2954828307,PL -2954828308,2954828311,BE -2954828312,2954828315,FR +2954828308,2954828315,FR 2954828316,2954828319,PL 2954828320,2954828335,FR 2954828336,2954828339,ES @@ -90250,10 +85045,7 @@ 2954828448,2954828463,FR 2954828464,2954828467,GB 2954828468,2954828471,PL -2954828472,2954828479,FR -2954828480,2954828495,ES -2954828496,2954828511,IT -2954828512,2954828799,FR +2954828472,2954828799,FR 2954828800,2954828815,NL 2954828816,2954828819,FR 2954828820,2954828823,GB @@ -90279,8 +85071,7 @@ 2954829144,2954829147,FR 2954829148,2954829151,ES 2954829152,2954829167,CH -2954829168,2954829171,NL -2954829172,2954829175,FR +2954829168,2954829175,FR 2954829176,2954829179,NL 2954829180,2954829183,GB 2954829184,2954829263,FR @@ -90297,9 +85088,8 @@ 2954829344,2954829375,IT 2954829376,2954829383,GB 2954829384,2954829387,PL -2954829388,2954829391,GB -2954829392,2954829395,FR -2954829396,2954829399,PL +2954829388,2954829395,FR +2954829396,2954829399,DE 2954829400,2954829407,IT 2954829408,2954829423,ES 2954829424,2954829431,FR @@ -90309,7 +85099,7 @@ 2954829456,2954829459,FR 2954829460,2954829471,GB 2954829472,2954829495,FR -2954829496,2954829499,NL +2954829496,2954829499,ES 2954829500,2954829503,IT 2954829504,2954829559,FR 2954829560,2954829563,BE @@ -90326,7 +85116,8 @@ 2954829740,2954829743,GB 2954829744,2954829751,FR 2954829752,2954829755,DE -2954829756,2954829823,FR +2954829756,2954829759,FR +2954829760,2954829823,ES 2954829824,2954829827,PT 2954829828,2954829831,NL 2954829832,2954829843,FR @@ -90356,13 +85147,13 @@ 2954830144,2954830147,ES 2954830148,2954830151,PT 2954830152,2954830159,IE -2954830160,2954830163,GB +2954830160,2954830163,IT 2954830164,2954830167,PT 2954830168,2954830175,DE 2954830176,2954830271,FR 2954830272,2954830279,DE -2954830280,2954830283,PL -2954830284,2954830303,FR +2954830280,2954830287,PL +2954830288,2954830303,FR 2954830304,2954830335,NL 2954830336,2954830343,FR 2954830344,2954830351,IE @@ -90372,7 +85163,8 @@ 2954830368,2954830375,NL 2954830376,2954830383,ES 2954830384,2954830387,PL -2954830388,2954830399,FR +2954830388,2954830395,FR +2954830396,2954830399,BE 2954830400,2954830415,IT 2954830416,2954830431,ES 2954830432,2954830447,FR @@ -90428,19 +85220,14 @@ 2954831608,2954831611,FR 2954831612,2954831615,ES 2954831616,2954831631,DE -2954831632,2954831647,FR -2954831648,2954831651,GB -2954831652,2954831667,FR +2954831632,2954831667,FR 2954831668,2954831671,PL 2954831672,2954831711,FR 2954831712,2954831743,ES -2954831744,2954831747,FR -2954831748,2954831751,DE -2954831752,2954831759,FR +2954831744,2954831759,FR 2954831760,2954831775,FI 2954831776,2954831779,CH -2954831780,2954831783,FR -2954831784,2954831787,DE +2954831780,2954831787,FR 2954831788,2954831791,CZ 2954831792,2954831799,NL 2954831800,2954831807,FR @@ -90455,8 +85242,8 @@ 2954832024,2954832063,PL 2954832064,2954832127,FR 2954832128,2954832135,GB -2954832136,2954832143,PL -2954832144,2954832151,FR +2954832136,2954832139,PL +2954832140,2954832151,FR 2954832152,2954832159,GB 2954832160,2954832167,ES 2954832168,2954832175,DE @@ -90512,9 +85299,7 @@ 2954833096,2954833099,PL 2954833100,2954833103,FR 2954833104,2954833111,CZ -2954833112,2954833119,FR -2954833120,2954833151,PL -2954833152,2954833183,FR +2954833112,2954833183,FR 2954833184,2954833199,PL 2954833200,2954833207,FR 2954833208,2954833211,CH @@ -90592,8 +85377,7 @@ 2954833816,2954833823,PT 2954833824,2954833855,GB 2954833856,2954833887,ES -2954833888,2954833919,FR -2954833920,2954833927,PL +2954833888,2954833927,FR 2954833928,2954833931,ES 2954833932,2954833935,IT 2954833936,2954833951,PT @@ -90605,7 +85389,7 @@ 2954834000,2954834011,PL 2954834012,2954834063,FR 2954834064,2954834067,PL -2954834068,2954834071,NL +2954834068,2954834071,ES 2954834072,2954834079,PL 2954834080,2954834095,IT 2954834096,2954834099,PL @@ -90614,18 +85398,16 @@ 2954834108,2954834111,ES 2954834112,2954834143,FR 2954834144,2954834151,GB -2954834152,2954834175,FR -2954834176,2954834207,LT -2954834208,2954834223,FR -2954834224,2954834231,IE +2954834152,2954834223,FR +2954834224,2954834227,CH +2954834228,2954834231,FI 2954834232,2954834235,PL 2954834236,2954834255,FR 2954834256,2954834271,ES -2954834272,2954834303,CZ -2954834304,2954834431,IE +2954834272,2954834431,FR 2954834432,2954834435,PL 2954834436,2954834439,IE -2954834440,2954834447,BE +2954834440,2954834447,FR 2954834448,2954834451,PL 2954834452,2954834455,IT 2954834456,2954834463,NL @@ -90659,8 +85441,7 @@ 2954834656,2954834663,DE 2954834664,2954834671,ES 2954834672,2954834675,NL -2954834676,2954834679,FR -2954834680,2954834683,NL +2954834676,2954834683,FR 2954834684,2954834687,GB 2954834688,2954834695,PL 2954834696,2954834751,FR @@ -90671,7 +85452,9 @@ 2954834800,2954834803,GB 2954834804,2954834807,IT 2954834808,2954834815,FR -2954834816,2954834879,BE +2954834816,2954834863,ES +2954834864,2954834871,FR +2954834872,2954834879,PT 2954834880,2954834911,PL 2954834912,2954835199,FR 2954835200,2954835207,ES @@ -90719,7 +85502,9 @@ 2954835548,2954835551,PL 2954835552,2954835607,FR 2954835608,2954835611,DE -2954835612,2954835627,FR +2954835612,2954835615,FR +2954835616,2954835619,DE +2954835620,2954835627,FR 2954835628,2954835635,ES 2954835636,2954835639,FR 2954835640,2954835643,DE @@ -90802,8 +85587,7 @@ 2954837432,2954837435,GB 2954837436,2954837439,FR 2954837440,2954837471,GB -2954837472,2954837479,ES -2954837480,2954837487,FR +2954837472,2954837487,FR 2954837488,2954837495,CH 2954837496,2954837499,DE 2954837500,2954837503,ES @@ -90848,9 +85632,7 @@ 2954837880,2954837883,FR 2954837884,2954837887,ES 2954837888,2954837903,IT -2954837904,2954837919,FR -2954837920,2954837951,PL -2954837952,2954838015,FR +2954837904,2954838015,FR 2954838016,2954838019,PL 2954838020,2954838047,FR 2954838048,2954838055,BE @@ -90893,8 +85675,8 @@ 2954838272,2954838279,IE 2954838280,2954838287,IT 2954838288,2954838303,BE -2954838304,2954838319,GB -2954838320,2954838327,ES +2954838304,2954838319,PT +2954838320,2954838327,PL 2954838328,2954838351,FR 2954838352,2954838367,IE 2954838368,2954838379,FR @@ -90928,8 +85710,7 @@ 2954838584,2954838591,BE 2954838592,2954838599,DE 2954838600,2954838607,GB -2954838608,2954838615,NL -2954838616,2954838623,FR +2954838608,2954838623,FR 2954838624,2954838639,IT 2954838640,2954838643,ES 2954838644,2954838647,DE @@ -90949,15 +85730,14 @@ 2954838992,2954838995,DE 2954838996,2954838999,ES 2954839000,2954839007,GB -2954839008,2954839023,PT -2954839024,2954839039,FR +2954839008,2954839039,FR 2954839040,2954839107,GB 2954839108,2954839111,BE 2954839112,2954839119,ES 2954839120,2954839127,NL 2954839128,2954839135,GB 2954839136,2954839167,DE -2954839168,2954839199,PL +2954839168,2954839199,BE 2954839200,2954839207,FR 2954839208,2954839211,PT 2954839212,2954839231,FR @@ -90965,7 +85745,8 @@ 2954839244,2954839247,ES 2954839248,2954839263,FR 2954839264,2954839267,PL -2954839268,2954839303,FR +2954839268,2954839271,GB +2954839272,2954839303,FR 2954839304,2954839311,ES 2954839312,2954839319,PL 2954839320,2954839343,GB @@ -90977,7 +85758,8 @@ 2954839364,2954839367,IT 2954839368,2954839371,ES 2954839372,2954839383,FR -2954839384,2954839395,PL +2954839384,2954839391,PL +2954839392,2954839395,FR 2954839396,2954839399,ES 2954839400,2954839407,FR 2954839408,2954839423,IE @@ -90997,7 +85779,7 @@ 2954840080,2954840087,PL 2954840088,2954840095,FR 2954840096,2954840103,ES -2954840104,2954840107,GB +2954840104,2954840107,FR 2954840108,2954840111,ES 2954840112,2954840115,FR 2954840116,2954840119,PL @@ -91011,9 +85793,11 @@ 2954840156,2954840179,FR 2954840180,2954840183,IT 2954840184,2954840223,FR -2954840224,2954840479,PL -2954840480,2954840495,FR -2954840496,2954840499,GB +2954840224,2954840239,PL +2954840240,2954840319,FR +2954840320,2954840447,GB +2954840448,2954840479,IE +2954840480,2954840499,FR 2954840500,2954840503,ES 2954840504,2954840507,FR 2954840508,2954840519,PL @@ -91021,7 +85805,7 @@ 2954840524,2954840527,ES 2954840528,2954840543,FR 2954840544,2954840575,ES -2954840576,2954840591,FI +2954840576,2954840591,DE 2954840592,2954840607,IT 2954840608,2954840611,CH 2954840612,2954840615,GB @@ -91075,20 +85859,17 @@ 2954841216,2954841231,FR 2954841232,2954841239,DE 2954841240,2954841247,GB -2954841248,2954841255,PL +2954841248,2954841251,PL +2954841252,2954841255,FR 2954841256,2954841259,ES 2954841260,2954841263,GB 2954841264,2954841271,FR 2954841272,2954841275,IT 2954841276,2954841295,FR 2954841296,2954841299,ES -2954841300,2954841307,PL -2954841308,2954841311,GB -2954841312,2954841471,FR +2954841300,2954841471,FR 2954841472,2954841503,PL -2954841504,2954841507,DE -2954841508,2954841511,GB -2954841512,2954841519,FR +2954841504,2954841519,FR 2954841520,2954841523,PL 2954841524,2954841527,DE 2954841528,2954841535,CH @@ -91097,16 +85878,14 @@ 2954841552,2954841555,FR 2954841556,2954841559,PL 2954841560,2954841563,FI -2954841564,2954841567,PL +2954841564,2954841567,FR 2954841568,2954841591,ES -2954841592,2954841595,PL +2954841592,2954841595,FR 2954841596,2954841599,ES 2954841600,2954841631,PL 2954841632,2954841635,FR 2954841636,2954841639,ES -2954841640,2954841643,FR -2954841644,2954841647,GB -2954841648,2954841655,FR +2954841640,2954841655,FR 2954841656,2954841659,GB 2954841660,2954841663,FR 2954841664,2954841667,IE @@ -91114,9 +85893,7 @@ 2954841672,2954841675,PL 2954841676,2954841679,FR 2954841680,2954841683,GB -2954841684,2954841687,FR -2954841688,2954841691,PL -2954841692,2954841695,FR +2954841684,2954841695,FR 2954841696,2954841699,IT 2954841700,2954841703,FR 2954841704,2954841711,BE @@ -91124,7 +85901,8 @@ 2954841716,2954841719,CZ 2954841720,2954841759,FR 2954841760,2954841775,DE -2954841776,2954841783,PL +2954841776,2954841779,IT +2954841780,2954841783,PL 2954841784,2954841787,PT 2954841788,2954841795,ES 2954841796,2954841799,FR @@ -91138,8 +85916,7 @@ 2954841852,2954841855,ES 2954841856,2954841875,FR 2954841876,2954841879,NL -2954841880,2954841887,PL -2954841888,2954841907,FR +2954841880,2954841907,FR 2954841908,2954841911,PL 2954841912,2954841919,NL 2954841920,2954841927,GB @@ -91161,7 +85938,7 @@ 2954842096,2954842111,IE 2954842112,2954842239,FR 2954842240,2954842243,ES -2954842244,2954842247,FR +2954842244,2954842247,BE 2954842248,2954842251,ES 2954842252,2954842255,GB 2954842256,2954842263,FR @@ -91172,7 +85949,8 @@ 2954842280,2954842291,PL 2954842292,2954842295,CH 2954842296,2954842299,GB -2954842300,2954842367,ES +2954842300,2954842303,ES +2954842304,2954842367,FR 2954842368,2954842375,NL 2954842376,2954842403,FR 2954842404,2954842407,IT @@ -91183,7 +85961,7 @@ 2954842428,2954842439,FR 2954842440,2954842443,IE 2954842444,2954842447,NL -2954842448,2954842451,GB +2954842448,2954842451,FR 2954842452,2954842455,CZ 2954842456,2954842459,FR 2954842460,2954842463,FI @@ -91195,7 +85973,7 @@ 2954842488,2954842491,CH 2954842492,2954842559,FR 2954842560,2954842591,GB -2954842592,2954842623,PT +2954842592,2954842623,FR 2954842624,2954842655,DE 2954842656,2954842659,ES 2954842660,2954842663,FI @@ -91234,8 +86012,7 @@ 2954843012,2954843015,FR 2954843016,2954843023,LT 2954843024,2954843027,DE -2954843028,2954843031,ES -2954843032,2954843035,FR +2954843028,2954843035,FR 2954843036,2954843039,IT 2954843040,2954843043,FR 2954843044,2954843047,GB @@ -91254,7 +86031,7 @@ 2954843276,2954843311,FR 2954843312,2954843315,ES 2954843316,2954843319,FR -2954843320,2954843323,DE +2954843320,2954843323,CH 2954843324,2954843327,NL 2954843328,2954843335,IT 2954843336,2954843339,GB @@ -91265,17 +86042,17 @@ 2954843376,2954843391,ES 2954843392,2954843407,FR 2954843408,2954843415,CH -2954843416,2954843419,PL +2954843416,2954843419,BE 2954843420,2954843423,FR 2954843424,2954843439,NL 2954843440,2954843459,FR 2954843460,2954843463,PL -2954843464,2954843471,FR -2954843472,2954843487,GB +2954843464,2954843479,FR +2954843480,2954843487,GB 2954843488,2954843495,DE 2954843496,2954843503,FR 2954843504,2954843507,PT -2954843508,2954843511,FR +2954843508,2954843511,DE 2954843512,2954843519,PL 2954843520,2954843591,FR 2954843592,2954843595,BE @@ -91288,29 +86065,31 @@ 2954843632,2954843639,CH 2954843640,2954843643,IE 2954843644,2954843647,DE -2954843648,2954843711,PL -2954843712,2954843715,FR +2954843648,2954843715,FR 2954843716,2954843719,GB 2954843720,2954843723,BE 2954843724,2954843727,DE -2954843728,2954843775,FR +2954843728,2954843767,FR +2954843768,2954843771,IT +2954843772,2954843775,FR 2954843776,2954843783,PL 2954843784,2954843791,GB 2954843792,2954843807,IE -2954843808,2954843823,PL +2954843808,2954843823,FR 2954843824,2954843839,GB 2954843840,2954843855,IE 2954843856,2954843863,PL 2954843864,2954843867,ES -2954843868,2954843887,FR -2954843888,2954843895,BE +2954843868,2954843895,FR 2954843896,2954843899,PT 2954843900,2954844031,FR 2954844032,2954844039,PL 2954844040,2954844047,GB 2954844048,2954844063,PL 2954844064,2954844095,BE -2954844096,2954844119,FR +2954844096,2954844103,FR +2954844104,2954844111,PT +2954844112,2954844119,FR 2954844120,2954844123,PL 2954844124,2954844127,IT 2954844128,2954844143,FR @@ -91329,8 +86108,7 @@ 2954844272,2954844275,PL 2954844276,2954844279,GB 2954844280,2954844287,PT -2954844288,2954844351,PL -2954844352,2954844415,FR +2954844288,2954844415,FR 2954844416,2954844419,IT 2954844420,2954844423,ES 2954844424,2954844431,FR @@ -91340,7 +86118,7 @@ 2954844464,2954844467,ES 2954844468,2954844471,PL 2954844472,2954844479,NL -2954844480,2954844483,DE +2954844480,2954844483,FR 2954844484,2954844487,GB 2954844488,2954844499,FR 2954844500,2954844503,PL @@ -91351,16 +86129,16 @@ 2954844552,2954844559,ES 2954844560,2954844575,FR 2954844576,2954844591,DE -2954844592,2954844599,ES -2954844600,2954844603,FR +2954844592,2954844603,FR 2954844604,2954844607,CZ 2954844608,2954844687,FR 2954844688,2954844703,CH 2954844704,2954844711,PL -2954844712,2954844719,PT +2954844712,2954844719,FR 2954844720,2954844723,ES -2954844724,2954844735,FR -2954844736,2954844767,GB +2954844724,2954844731,FR +2954844732,2954844735,PL +2954844736,2954844767,IT 2954844768,2954844799,FR 2954844800,2954844815,ES 2954844816,2954844819,GB @@ -91408,13 +86186,15 @@ 2954845212,2954845215,CH 2954845216,2954845223,FR 2954845224,2954845231,NL -2954845232,2954845239,DE +2954845232,2954845239,PT 2954845240,2954845247,NL 2954845248,2954845263,CH 2954845264,2954845279,PL 2954845280,2954845283,CZ 2954845284,2954845287,GB -2954845288,2954845299,FR +2954845288,2954845291,FR +2954845292,2954845295,NL +2954845296,2954845299,FR 2954845300,2954845303,ES 2954845304,2954845311,PL 2954845312,2954845315,CH @@ -91459,7 +86239,7 @@ 2954854432,2954854463,ES 2954854464,2954854471,LT 2954854472,2954854475,FR -2954854476,2954854479,BE +2954854476,2954854479,PL 2954854480,2954854495,FR 2954854496,2954854511,IT 2954854512,2954854527,ES @@ -91494,9 +86274,10 @@ 2954854928,2954854943,FI 2954854944,2954855011,FR 2954855012,2954855015,CZ -2954855016,2954855027,GB -2954855028,2954855031,PL -2954855032,2954855039,GB +2954855016,2954855023,GB +2954855024,2954855031,DE +2954855032,2954855035,PL +2954855036,2954855039,GB 2954855040,2954855043,FR 2954855044,2954855047,IE 2954855048,2954855051,FR @@ -91577,12 +86358,12 @@ 2954856188,2954856447,FR 2954856448,2954856511,ES 2954856512,2954856543,FR -2954856544,2954856547,PL +2954856544,2954856547,FI 2954856548,2954856551,FR 2954856552,2954856559,IE 2954856560,2954856563,ES 2954856564,2954856567,LT -2954856568,2954856571,PL +2954856568,2954856571,FR 2954856572,2954856575,BE 2954856576,2954856583,ES 2954856584,2954856607,FR @@ -91642,7 +86423,7 @@ 2954857712,2954857727,FR 2954857728,2954857743,FI 2954857744,2954857755,FR -2954857756,2954857759,NL +2954857756,2954857759,ES 2954857760,2954857823,FR 2954857824,2954857855,ES 2954857856,2954857983,IE @@ -91670,7 +86451,7 @@ 2954858304,2954858335,DE 2954858336,2954858351,FR 2954858352,2954858359,GB -2954858360,2954858367,LT +2954858360,2954858367,FR 2954858368,2954858375,PL 2954858376,2954858379,ES 2954858380,2954858383,PL @@ -91716,12 +86497,11 @@ 2954859088,2954859103,BE 2954859104,2954859123,FR 2954859124,2954859127,NL -2954859128,2954859131,GB -2954859132,2954859135,BE -2954859136,2954859239,FR +2954859128,2954859167,FR +2954859168,2954859199,IE +2954859200,2954859239,FR 2954859240,2954859243,ES -2954859244,2954859247,PL -2954859248,2954859267,FR +2954859244,2954859267,FR 2954859268,2954859271,ES 2954859272,2954859275,PL 2954859276,2954859279,ES @@ -91729,14 +86509,13 @@ 2954859312,2954859319,ES 2954859320,2954859323,FR 2954859324,2954859327,CZ -2954859328,2954859343,GB -2954859344,2954859391,FR +2954859328,2954859391,FR 2954859392,2954859423,IT 2954859424,2954859455,GB 2954859456,2954859487,NL 2954859488,2954859495,FR 2954859496,2954859503,IT -2954859504,2954859519,GB +2954859504,2954859519,FR 2954859520,2954859551,DE 2954859552,2954859559,FR 2954859560,2954859575,IT @@ -91752,13 +86531,12 @@ 2954859728,2954859775,FR 2954859776,2954859807,PL 2954859808,2954859823,GB -2954859824,2954859827,DE +2954859824,2954859827,ES 2954859828,2954859831,PL 2954859832,2954859839,ES 2954859840,2954859903,FR 2954859904,2954859935,DE -2954859936,2954859951,FR -2954859952,2954859955,PL +2954859936,2954859955,FR 2954859956,2954859959,GB 2954859960,2954859963,ES 2954859964,2954859967,PL @@ -91788,8 +86566,7 @@ 2954860248,2954860259,FR 2954860260,2954860263,PL 2954860264,2954860271,IE -2954860272,2954860275,GB -2954860276,2954860319,FR +2954860272,2954860319,FR 2954860320,2954860327,DE 2954860328,2954860335,FR 2954860336,2954860351,CH @@ -91798,7 +86575,7 @@ 2954860424,2954860439,FR 2954860440,2954860443,CH 2954860444,2954860447,NL -2954860448,2954860455,ES +2954860448,2954860455,FR 2954860456,2954860459,PL 2954860460,2954860463,GB 2954860464,2954860479,DE @@ -91838,7 +86615,7 @@ 2954861144,2954861147,DE 2954861148,2954861151,FR 2954861152,2954861167,GB -2954861168,2954861183,PT +2954861168,2954861183,FR 2954861184,2954861191,IT 2954861192,2954861195,FR 2954861196,2954861199,CZ @@ -91860,7 +86637,7 @@ 2954861432,2954861435,ES 2954861436,2954861567,FR 2954861568,2954861571,ES -2954861572,2954861575,GB +2954861572,2954861575,IT 2954861576,2954861591,FR 2954861592,2954861595,PL 2954861596,2954861599,NL @@ -91874,7 +86651,8 @@ 2954861664,2954861667,DE 2954861668,2954861671,ES 2954861672,2954861675,NL -2954861676,2954861687,PL +2954861676,2954861683,PL +2954861684,2954861687,IT 2954861688,2954861691,GB 2954861692,2954861695,NL 2954861696,2954861727,GB @@ -91886,12 +86664,8 @@ 2954861784,2954861787,IE 2954861788,2954861791,PL 2954861792,2954861823,GB -2954861824,2954861827,PL -2954861828,2954861831,GB -2954861832,2954861835,DE -2954861836,2954861839,PL -2954861840,2954861843,GB -2954861844,2954861847,PL +2954861824,2954861839,FR +2954861840,2954861847,DE 2954861848,2954861863,FR 2954861864,2954861867,PL 2954861868,2954861871,FR @@ -91903,9 +86677,7 @@ 2954861928,2954861935,DE 2954861936,2954861939,FR 2954861940,2954861943,DE -2954861944,2954861947,FR -2954861948,2954861951,PL -2954861952,2954861955,FR +2954861944,2954861955,FR 2954861956,2954861967,GB 2954861968,2954861975,ES 2954861976,2954861983,DE @@ -91937,9 +86709,8 @@ 2954862400,2954862415,GB 2954862416,2954862419,PL 2954862420,2954862423,FR -2954862424,2954862431,NL -2954862432,2954862467,FR -2954862468,2954862471,NL +2954862424,2954862431,PL +2954862432,2954862471,FR 2954862472,2954862479,DE 2954862480,2954862483,ES 2954862484,2954862487,FR @@ -91986,9 +86757,9 @@ 2954871604,2954871607,PL 2954871608,2954871611,BE 2954871612,2954871615,CZ -2954871616,2954871631,ES -2954871632,2954871635,FR -2954871636,2954871639,ES +2954871616,2954871623,PT +2954871624,2954871627,CZ +2954871628,2954871639,FR 2954871640,2954871643,GB 2954871644,2954871647,IT 2954871648,2954871663,FR @@ -92044,7 +86815,16 @@ 2954872684,2954872687,DE 2954872688,2954872703,CZ 2954872704,2954872831,DE -2954872832,2954873347,FR +2954872832,2954872959,GB +2954872960,2954872967,CH +2954872968,2954872975,FR +2954872976,2954872983,GB +2954872984,2954872987,FR +2954872988,2954872991,LT +2954872992,2954873023,NL +2954873024,2954873087,BE +2954873088,2954873343,GB +2954873344,2954873347,FR 2954873348,2954873351,PL 2954873352,2954873355,GB 2954873356,2954873359,IT @@ -92060,7 +86840,7 @@ 2954873464,2954873471,FR 2954873472,2954873503,PT 2954873504,2954873583,FR -2954873584,2954873591,ES +2954873584,2954873591,PT 2954873592,2954873599,FR 2954873600,2954873631,DE 2954873632,2954873635,NL @@ -92135,7 +86915,7 @@ 2954874672,2954874675,PL 2954874676,2954874679,CZ 2954874680,2954874687,FR -2954874688,2954874719,ES +2954874688,2954874719,PT 2954874720,2954874751,FI 2954874752,2954874799,IE 2954874800,2954874815,GB @@ -92184,12 +86964,15 @@ 2954875208,2954875215,ES 2954875216,2954875231,FR 2954875232,2954875247,GB -2954875248,2954875327,FR +2954875248,2954875279,FR +2954875280,2954875287,PL +2954875288,2954875295,GB +2954875296,2954875327,FR 2954875328,2954875359,PL 2954875360,2954875375,FR 2954875376,2954875379,PT 2954875380,2954875383,DE -2954875384,2954875391,GB +2954875384,2954875391,FR 2954875392,2954875463,ES 2954875464,2954875467,NL 2954875468,2954875471,GB @@ -92218,7 +87001,9 @@ 2954875656,2954875659,FR 2954875660,2954875663,PT 2954875664,2954875671,ES -2954875672,2954875695,FR +2954875672,2954875687,FR +2954875688,2954875691,IT +2954875692,2954875695,FR 2954875696,2954875703,ES 2954875704,2954875707,PL 2954875708,2954875711,ES @@ -92247,8 +87032,7 @@ 2954876048,2954876051,ES 2954876052,2954876055,NL 2954876056,2954876063,IE -2954876064,2954876095,FR -2954876096,2954876111,PT +2954876064,2954876111,FR 2954876112,2954876119,IE 2954876120,2954876123,FR 2954876124,2954876127,NL @@ -92303,7 +87087,8 @@ 2954876892,2954876895,FR 2954876896,2954876899,GB 2954876900,2954876903,IT -2954876904,2954876959,FR +2954876904,2954876911,PT +2954876912,2954876959,FR 2954876960,2954876975,DE 2954876976,2954876983,PL 2954876984,2954876987,FR @@ -92387,7 +87172,7 @@ 2954878576,2954878579,CH 2954878580,2954878583,NL 2954878584,2954878591,GB -2954878592,2954878607,BE +2954878592,2954878607,FR 2954878608,2954878623,FI 2954878624,2954878627,CH 2954878628,2954878631,PL @@ -92506,9 +87291,7 @@ 2956509184,2956517375,GB 2956517376,2956518095,NL 2956518096,2956518111,FI -2956518112,2956519935,NL -2956519936,2956520319,GB -2956520320,2956521471,NL +2956518112,2956521471,NL 2956521472,2956525567,SE 2956525568,2956533759,JO 2956533760,2956535807,FR @@ -92749,7 +87532,15 @@ 2957685728,2957688831,GB 2957688832,2957688895,SE 2957688896,2957689023,US -2957689024,2957690463,SE +2957689024,2957689151,SE +2957689152,2957689159,NO +2957689160,2957689663,SE +2957689664,2957689671,NO +2957689672,2957689951,SE +2957689952,2957689983,NO +2957689984,2957690239,SE +2957690240,2957690271,NO +2957690272,2957690463,SE 2957690464,2957690467,DK 2957690468,2957690471,JP 2957690472,2957690479,SE @@ -92970,14 +87761,7 @@ 2960080896,2960084991,RU 2960084992,2960089087,UA 2960089088,2960091135,RU -2960091136,2960093147,PT -2960093148,2960093148,GB -2960093149,2960093149,PT -2960093150,2960093150,NL -2960093151,2960093151,FR -2960093152,2960093152,DE -2960093153,2960093153,ES -2960093154,2960093183,PT +2960091136,2960093183,PT 2960093184,2960105471,PL 2960105472,2960109567,RO 2960109568,2960113663,UA @@ -93225,7 +88009,9 @@ 2967396352,2967398399,CZ 2967398400,2967400447,DK 2967400448,2967404543,RU -2967404544,2967425023,RO +2967404544,2967421183,RO +2967421184,2967421439,ES +2967421440,2967425023,RO 2967425024,2967427071,DE 2967427072,2967428095,NL 2967428096,2967441407,RO @@ -93332,16 +88118,15 @@ 2987500200,2987500207,AQ 2987500208,2987500511,MD 2987500512,2987500519,US -2987500520,2987500767,MD -2987500768,2987500799,US -2987500800,2987502735,MD +2987500520,2987502735,MD 2987502736,2987502743,DE 2987502744,2987503615,MD 2987503616,2987511807,RU 2987511808,2987515903,JO -2987515904,2987519487,A2 +2987515904,2987518207,A2 +2987518208,2987519487,US 2987519488,2987519743,KE -2987519744,2987519999,A2 +2987519744,2987519999,US 2987520000,2987524095,GB 2987524096,2987528191,RU 2987528192,2987529215,US @@ -93528,7 +88313,8 @@ 2987898880,2987900927,NL 2987900928,2987901439,PL 2987901440,2987901695,GB -2987901696,2987902975,PL +2987901696,2987902719,PL +2987902720,2987902975,GB 2987902976,2987905023,IT 2987905024,2987907071,ES 2987907072,2987909119,CZ @@ -93574,12 +88360,7 @@ 2988441992,2988441995,ES 2988441996,2988441999,FI 2988442000,2988442003,GB -2988442004,2988442067,FR -2988442068,2988442071,GB -2988442072,2988442079,FR -2988442080,2988442083,GB -2988442084,2988442087,DE -2988442088,2988442095,FR +2988442004,2988442095,FR 2988442096,2988442099,IT 2988442100,2988442399,FR 2988442400,2988442431,NL @@ -93593,8 +88374,8 @@ 2988442512,2988442519,ES 2988442520,2988442527,DE 2988442528,2988442559,FR -2988442560,2988442583,PL -2988442584,2988442587,FR +2988442560,2988442575,PL +2988442576,2988442587,FR 2988442588,2988442591,ES 2988442592,2988442607,PL 2988442608,2988442623,ES @@ -93615,14 +88396,13 @@ 2988442872,2988442879,PL 2988442880,2988442895,FR 2988442896,2988442899,PL -2988442900,2988442903,FR +2988442900,2988442903,GB 2988442904,2988442907,IT 2988442908,2988442911,FR 2988442912,2988442915,NL 2988442916,2988442919,IT -2988442920,2988442923,FR -2988442924,2988442927,IE -2988442928,2988442975,FR +2988442920,2988442943,FR +2988442944,2988442975,PT 2988442976,2988442991,PL 2988442992,2988442995,GB 2988442996,2988442999,IE @@ -93703,11 +88483,11 @@ 2988444216,2988444219,BE 2988444220,2988444223,FR 2988444224,2988444287,PT -2988444288,2988444415,GB +2988444288,2988444415,FR 2988444416,2988444671,IE 2988444672,2988444679,ES 2988444680,2988444687,FR -2988444688,2988444695,LT +2988444688,2988444695,GB 2988444696,2988444703,FR 2988444704,2988444719,GB 2988444720,2988444735,ES @@ -93720,9 +88500,8 @@ 2988444772,2988444775,GB 2988444776,2988444783,CZ 2988444784,2988444791,FI -2988444792,2988444795,DE -2988444796,2988444799,FR -2988444800,2988444927,ES +2988444792,2988444795,GB +2988444796,2988444927,FR 2988444928,2988444931,PL 2988444932,2988444943,DE 2988444944,2988444967,PL @@ -93747,7 +88526,7 @@ 2988445232,2988445235,FR 2988445236,2988445239,PL 2988445240,2988445343,FR -2988445344,2988445375,PT +2988445344,2988445375,IE 2988445376,2988445391,GB 2988445392,2988445395,IT 2988445396,2988445399,FR @@ -93755,7 +88534,7 @@ 2988445408,2988445439,FR 2988445440,2988445951,DE 2988445952,2988446207,IE -2988446208,2988446271,PL +2988446208,2988446271,FR 2988446272,2988446275,IT 2988446276,2988446279,FR 2988446280,2988446287,BE @@ -93785,8 +88564,7 @@ 2988447516,2988447519,NL 2988447520,2988447543,FR 2988447544,2988447547,DE -2988447548,2988447551,NL -2988447552,2988447583,FR +2988447548,2988447583,FR 2988447584,2988447599,NL 2988447600,2988447615,FR 2988447616,2988447747,DE @@ -93794,7 +88572,7 @@ 2988447760,2988447775,FR 2988447776,2988447791,PT 2988447792,2988447871,FR -2988447872,2988447903,PL +2988447872,2988447903,IE 2988447904,2988447919,PT 2988447920,2988447923,PL 2988447924,2988447927,IT @@ -93808,7 +88586,8 @@ 2988448128,2988448255,ES 2988448256,2988448287,FR 2988448288,2988448319,GB -2988448320,2988448511,DE +2988448320,2988448383,FR +2988448384,2988448511,DE 2988448512,2988448515,GB 2988448516,2988448519,FR 2988448520,2988448527,PL @@ -93817,8 +88596,8 @@ 2988448548,2988448551,FR 2988448552,2988448559,PL 2988448560,2988448563,DE -2988448564,2988448567,ES -2988448568,2988448607,FR +2988448564,2988448575,PL +2988448576,2988448607,FR 2988448608,2988448639,ES 2988448640,2988448671,NL 2988448672,2988448691,IT @@ -93840,7 +88619,8 @@ 2988449136,2988449151,FR 2988449152,2988449167,PL 2988449168,2988449175,GB -2988449176,2988449191,FR +2988449176,2988449183,FR +2988449184,2988449191,BE 2988449192,2988449199,CZ 2988449200,2988449203,FR 2988449204,2988449207,PL @@ -93933,9 +88713,7 @@ 2988459536,2988459543,PL 2988459544,2988459547,ES 2988459548,2988459551,PL -2988459552,2988459567,FR -2988459568,2988459583,GB -2988459584,2988459599,FR +2988459552,2988459599,FR 2988459600,2988459603,GB 2988459604,2988459615,FR 2988459616,2988459619,CZ @@ -93948,7 +88726,7 @@ 2988459648,2988459679,GB 2988459680,2988459683,ES 2988459684,2988459687,DE -2988459688,2988459691,IT +2988459688,2988459691,FR 2988459692,2988459695,ES 2988459696,2988459711,FR 2988459712,2988459715,ES @@ -93993,13 +88771,14 @@ 2988460208,2988460223,PL 2988460224,2988460239,FR 2988460240,2988460243,BE -2988460244,2988460247,PL -2988460248,2988460255,FR +2988460244,2988460255,FR 2988460256,2988460271,ES 2988460272,2988460275,FR 2988460276,2988460279,NL 2988460280,2988460287,PL -2988460288,2988460323,FR +2988460288,2988460311,FR +2988460312,2988460319,PT +2988460320,2988460323,FR 2988460324,2988460327,GB 2988460328,2988460335,PL 2988460336,2988460339,FR @@ -94048,9 +88827,7 @@ 2988461088,2988461103,DE 2988461104,2988461135,FR 2988461136,2988461151,DE -2988461152,2988461183,FR -2988461184,2988461215,PT -2988461216,2988461255,FR +2988461152,2988461255,FR 2988461256,2988461259,ES 2988461260,2988461263,PT 2988461264,2988461279,ES @@ -94063,8 +88840,7 @@ 2988461392,2988461399,DE 2988461400,2988461407,PT 2988461408,2988461411,FR -2988461412,2988461415,PL -2988461416,2988461419,IE +2988461412,2988461419,PL 2988461420,2988461423,FR 2988461424,2988461431,IT 2988461432,2988461439,PT @@ -94085,7 +88861,7 @@ 2988461616,2988461623,IT 2988461624,2988461631,FR 2988461632,2988461695,PL -2988461696,2988461699,DE +2988461696,2988461699,FR 2988461700,2988461703,GB 2988461704,2988461707,NL 2988461708,2988461711,BE @@ -94189,7 +88965,8 @@ 2988463288,2988463291,PL 2988463292,2988463315,FR 2988463316,2988463319,PL -2988463320,2988463327,FR +2988463320,2988463323,FI +2988463324,2988463327,FR 2988463328,2988463331,ES 2988463332,2988463335,IT 2988463336,2988463339,PT @@ -94204,7 +88981,10 @@ 2988463652,2988463659,GB 2988463660,2988463663,FR 2988463664,2988463671,PT -2988463672,2988463695,FR +2988463672,2988463679,FR +2988463680,2988463683,GB +2988463684,2988463687,IE +2988463688,2988463695,FR 2988463696,2988463711,PL 2988463712,2988463727,FR 2988463728,2988463735,PT @@ -94234,8 +89014,7 @@ 2988464024,2988464027,GB 2988464028,2988464031,PL 2988464032,2988464059,FR -2988464060,2988464063,CZ -2988464064,2988464095,PL +2988464060,2988464095,PL 2988464096,2988464271,FR 2988464272,2988464275,ES 2988464276,2988464279,PL @@ -94243,7 +89022,7 @@ 2988464284,2988464287,PL 2988464288,2988464295,FR 2988464296,2988464299,IT -2988464300,2988464303,GB +2988464300,2988464303,FR 2988464304,2988464307,ES 2988464308,2988464311,PL 2988464312,2988464351,FR @@ -94285,7 +89064,8 @@ 2988464928,2988464943,ES 2988464944,2988464947,GB 2988464948,2988464951,PL -2988464952,2988464959,FR +2988464952,2988464955,GB +2988464956,2988464959,FR 2988464960,2988464967,GB 2988464968,2988464971,PT 2988464972,2988464975,PL @@ -94333,7 +89113,7 @@ 2988465588,2988465591,GB 2988465592,2988465599,FR 2988465600,2988465615,PL -2988465616,2988465619,FR +2988465616,2988465619,IT 2988465620,2988465623,DE 2988465624,2988465647,FR 2988465648,2988465655,CZ @@ -94342,8 +89122,9 @@ 2988466048,2988466111,IE 2988466112,2988466115,FR 2988466116,2988466127,PL -2988466128,2988466139,FR -2988466140,2988466143,PL +2988466128,2988466135,FR +2988466136,2988466139,ES +2988466140,2988466143,FR 2988466144,2988466159,NL 2988466160,2988476415,FR 2988476416,2988478463,IT @@ -94354,7 +89135,7 @@ 2988478500,2988478503,ES 2988478504,2988478543,FR 2988478544,2988478559,DE -2988478560,2988478563,FR +2988478560,2988478563,ES 2988478564,2988478567,BE 2988478568,2988478571,PT 2988478572,2988478575,FR @@ -94381,7 +89162,7 @@ 2988478800,2988478803,NL 2988478804,2988478807,PL 2988478808,2988478811,IT -2988478812,2988478815,FR +2988478812,2988478815,BE 2988478816,2988478847,PL 2988478848,2988478851,ES 2988478852,2988478855,FR @@ -94393,7 +89174,8 @@ 2988478880,2988478911,IE 2988478912,2988478919,FR 2988478920,2988478927,GB -2988478928,2988478947,FR +2988478928,2988478943,PT +2988478944,2988478947,FR 2988478948,2988478951,GB 2988478952,2988478955,ES 2988478956,2988478959,DE @@ -94455,7 +89237,10 @@ 2988479584,2988479599,ES 2988479600,2988479603,PL 2988479604,2988479607,GB -2988479608,2988479743,FR +2988479608,2988479615,FR +2988479616,2988479679,PT +2988479680,2988479711,FR +2988479712,2988479743,PT 2988479744,2988479747,ES 2988479748,2988479751,FR 2988479752,2988479755,NL @@ -94484,10 +89269,7 @@ 2988480228,2988480231,IE 2988480232,2988480235,FR 2988480236,2988480239,IT -2988480240,2988480259,FR -2988480260,2988480263,GB -2988480264,2988480267,NL -2988480268,2988480271,FR +2988480240,2988480271,FR 2988480272,2988480275,PL 2988480276,2988480279,FR 2988480280,2988480283,GB @@ -94519,7 +89301,7 @@ 2988480820,2988480823,PT 2988480824,2988480827,PL 2988480828,2988480831,ES -2988480832,2988480895,PL +2988480832,2988480895,FR 2988480896,2988480903,NL 2988480904,2988480911,FR 2988480912,2988480915,BE @@ -94537,8 +89319,7 @@ 2988481060,2988481063,FI 2988481064,2988481067,FR 2988481068,2988481071,DE -2988481072,2988481079,NL -2988481080,2988481087,FR +2988481072,2988481087,FR 2988481088,2988481095,CH 2988481096,2988481111,FR 2988481112,2988481119,DE @@ -94546,7 +89327,7 @@ 2988481128,2988481131,NL 2988481132,2988481135,GB 2988481136,2988481151,LT -2988481152,2988481159,GB +2988481152,2988481159,FR 2988481160,2988481167,PL 2988481168,2988481183,FR 2988481184,2988481187,DE @@ -94555,14 +89336,15 @@ 2988481196,2988481199,FR 2988481200,2988481203,PL 2988481204,2988481207,ES -2988481208,2988481215,FR +2988481208,2988481211,IE +2988481212,2988481215,FR 2988481216,2988481219,IE 2988481220,2988481223,FR 2988481224,2988481227,GB 2988481228,2988481231,BE 2988481232,2988481279,FR 2988481280,2988481535,GB -2988481536,2988481663,IE +2988481536,2988481663,CH 2988481664,2988481667,BE 2988481668,2988481671,CH 2988481672,2988481675,FR @@ -94586,7 +89368,7 @@ 2988481868,2988481871,PT 2988481872,2988481883,FR 2988481884,2988481887,ES -2988481888,2988481903,GB +2988481888,2988481903,FR 2988481904,2988481919,BE 2988481920,2988481935,IT 2988481936,2988481987,FR @@ -94625,10 +89407,10 @@ 2988482336,2988482351,ES 2988482352,2988482367,FR 2988482368,2988482399,ES -2988482400,2988482411,FR +2988482400,2988482407,FR +2988482408,2988482411,PL 2988482412,2988482415,PT -2988482416,2988482431,ES -2988482432,2988482447,FR +2988482416,2988482447,FR 2988482448,2988482455,CZ 2988482456,2988482479,FR 2988482480,2988482487,PL @@ -94636,9 +89418,9 @@ 2988482512,2988482515,DE 2988482516,2988482527,FR 2988482528,2988482531,DE -2988482532,2988482543,FR -2988482544,2988482551,GB -2988482552,2988482559,CH +2988482532,2988482535,FR +2988482536,2988482543,PT +2988482544,2988482559,PL 2988482560,2988482567,ES 2988482568,2988482575,FR 2988482576,2988482579,CZ @@ -94702,7 +89484,10 @@ 2988483168,2988483199,GB 2988483200,2988483231,FR 2988483232,2988483235,IE -2988483236,2988483263,PL +2988483236,2988483239,PL +2988483240,2988483247,FR +2988483248,2988483255,NL +2988483256,2988483263,PL 2988483264,2988483267,FR 2988483268,2988483271,NL 2988483272,2988483279,DE @@ -94734,18 +89519,20 @@ 2988483600,2988483603,GB 2988483604,2988483607,PT 2988483608,2988483615,NL -2988483616,2988483619,GB +2988483616,2988483619,FR 2988483620,2988483623,PL -2988483624,2988483631,IE +2988483624,2988483631,PT 2988483632,2988483639,FR 2988483640,2988483647,GB 2988483648,2988483651,CH -2988483652,2988483655,FR +2988483652,2988483655,CZ 2988483656,2988483667,IT 2988483668,2988483671,PT 2988483672,2988483675,GB -2988483676,2988483679,FR -2988483680,2988483695,PL +2988483676,2988483683,FR +2988483684,2988483687,PL +2988483688,2988483691,FR +2988483692,2988483695,PL 2988483696,2988483711,FR 2988483712,2988483727,PL 2988483728,2988483735,FR @@ -94756,7 +89543,7 @@ 2988483768,2988483771,FR 2988483772,2988483775,DE 2988483776,2988483871,PL -2988483872,2988483879,DE +2988483872,2988483879,NL 2988483880,2988483887,ES 2988483888,2988483895,GB 2988483896,2988483903,DE @@ -94766,8 +89553,7 @@ 2988483964,2988483967,FR 2988483968,2988483983,IE 2988483984,2988483987,DE -2988483988,2988483991,FR -2988483992,2988483995,GB +2988483988,2988483995,FR 2988483996,2988483999,PL 2988484000,2988484003,DE 2988484004,2988484007,GB @@ -94792,11 +89578,10 @@ 2988484164,2988484167,GB 2988484168,2988484175,ES 2988484176,2988484187,FR -2988484188,2988484191,PL +2988484188,2988484191,CH 2988484192,2988484207,DE 2988484208,2988484223,FR -2988484224,2988484239,ES -2988484240,2988484243,PL +2988484224,2988484243,ES 2988484244,2988484287,FR 2988484288,2988484351,PL 2988484352,2988484383,GB @@ -94805,7 +89590,7 @@ 2988484396,2988484399,PL 2988484400,2988484403,PT 2988484404,2988484427,PL -2988484428,2988484431,GB +2988484428,2988484431,FR 2988484432,2988484439,PL 2988484440,2988484443,ES 2988484444,2988484447,CH @@ -94830,13 +89615,11 @@ 2988484944,2988484955,PL 2988484956,2988484967,FR 2988484968,2988484971,PL -2988484972,2988484991,FR -2988484992,2988485007,LT +2988484972,2988485007,FR 2988485008,2988485023,PL 2988485024,2988485039,FR 2988485040,2988485055,PL -2988485056,2988485071,FR -2988485072,2988485087,IE +2988485056,2988485087,FR 2988485088,2988485103,DE 2988485104,2988485119,PL 2988485120,2988485135,FR @@ -94849,13 +89632,12 @@ 2988485264,2988485267,DE 2988485268,2988485279,FR 2988485280,2988485327,IT -2988485328,2988485335,FI -2988485336,2988485343,PT -2988485344,2988485351,BE +2988485328,2988485351,BE 2988485352,2988485355,GB 2988485356,2988485359,PL 2988485360,2988485439,FR -2988485440,2988485455,PL +2988485440,2988485447,PL +2988485448,2988485455,FR 2988485456,2988485471,ES 2988485472,2988485479,FR 2988485480,2988485487,IT @@ -94899,7 +89681,7 @@ 2988485956,2988485959,CZ 2988485960,2988485967,FR 2988485968,2988485983,IE -2988485984,2988485999,FR +2988485984,2988485999,IT 2988486000,2988486015,PL 2988486016,2988486031,GB 2988486032,2988486047,PL @@ -94912,7 +89694,8 @@ 2988486084,2988486095,FR 2988486096,2988486099,GB 2988486100,2988486103,FR -2988486104,2988486135,PL +2988486104,2988486127,PL +2988486128,2988486135,NL 2988486136,2988486139,FR 2988486140,2988486143,GB 2988486144,2988486147,FR @@ -94931,11 +89714,13 @@ 2988486224,2988486231,BE 2988486232,2988486235,PL 2988486236,2988486239,ES -2988486240,2988486287,PL +2988486240,2988486271,FR +2988486272,2988486287,PL 2988486288,2988486291,FR 2988486292,2988486299,GB 2988486300,2988486303,NL -2988486304,2988486311,PL +2988486304,2988486307,PL +2988486308,2988486311,FR 2988486312,2988486319,CH 2988486320,2988486323,IT 2988486324,2988486327,PT @@ -94970,7 +89755,7 @@ 2988486624,2988486643,FR 2988486644,2988486647,GB 2988486648,2988486651,ES -2988486652,2988486655,PL +2988486652,2988486655,IT 2988486656,2988486671,FR 2988486672,2988486675,DE 2988486676,2988486679,FR @@ -94987,9 +89772,7 @@ 2988486748,2988486751,GB 2988486752,2988486759,FR 2988486760,2988486763,DE -2988486764,2988486767,FR -2988486768,2988486775,GB -2988486776,2988486783,FR +2988486764,2988486783,FR 2988486784,2988486787,DE 2988486788,2988486791,FR 2988486792,2988486795,ES @@ -95003,10 +89786,10 @@ 2988486880,2988486883,PL 2988486884,2988486887,FR 2988486888,2988486891,PT -2988486892,2988486895,GB +2988486892,2988486895,IT 2988486896,2988486903,PT 2988486904,2988486907,DE -2988486908,2988486911,LT +2988486908,2988486911,NL 2988486912,2988487039,FR 2988487040,2988487043,PL 2988487044,2988487047,PT @@ -95034,7 +89817,9 @@ 2988488024,2988488031,GB 2988488032,2988488047,IE 2988488048,2988488051,IT -2988488052,2988488095,FR +2988488052,2988488055,FR +2988488056,2988488059,PT +2988488060,2988488095,FR 2988488096,2988488099,DE 2988488100,2988488103,PT 2988488104,2988488111,FR @@ -95156,7 +89941,7 @@ 2988490096,2988490103,PT 2988490104,2988490107,ES 2988490108,2988490111,FR -2988490112,2988490143,PL +2988490112,2988490143,PT 2988490144,2988490175,FR 2988490176,2988490179,IT 2988490180,2988490183,PL @@ -95190,8 +89975,7 @@ 2988490420,2988490423,CH 2988490424,2988490463,FR 2988490464,2988490623,PL -2988490624,2988490751,ES -2988490752,2988491775,FR +2988490624,2988491775,FR 2988491776,2988492031,TN 2988492032,2988492799,FR 2988492800,2988494847,PL @@ -95207,18 +89991,16 @@ 2988499104,2988499119,IE 2988499120,2988499135,FR 2988499136,2988499139,DE -2988499140,2988499143,FR +2988499140,2988499143,GB 2988499144,2988499151,DE -2988499152,2988499167,FR -2988499168,2988499199,ES -2988499200,2988499343,FR +2988499152,2988499343,FR 2988499344,2988499347,PL 2988499348,2988499351,GB 2988499352,2988499359,IE 2988499360,2988499367,PL 2988499368,2988499375,FR 2988499376,2988499379,GB -2988499380,2988499383,PL +2988499380,2988499383,IE 2988499384,2988499387,BE 2988499388,2988499407,FR 2988499408,2988499415,PL @@ -95245,23 +90027,23 @@ 2988499676,2988499679,FR 2988499680,2988499695,BE 2988499696,2988499699,PL -2988499700,2988499703,GB +2988499700,2988499703,FR 2988499704,2988499711,DE -2988499712,2988499731,GB -2988499732,2988499735,FR -2988499736,2988499743,NL +2988499712,2988499727,GB +2988499728,2988499729,FR +2988499730,2988499730,GB +2988499731,2988499743,FR 2988499744,2988499747,IE -2988499748,2988499751,LT +2988499748,2988499751,FR 2988499752,2988499755,PL 2988499756,2988499759,ES 2988499760,2988499763,CH -2988499764,2988499775,FR -2988499776,2988499791,IT +2988499764,2988499791,FR 2988499792,2988499795,GB 2988499796,2988499803,IT 2988499804,2988499807,DE 2988499808,2988499823,FR -2988499824,2988499831,PL +2988499824,2988499831,NL 2988499832,2988499839,GB 2988499840,2988499847,BE 2988499848,2988499851,DE @@ -95277,8 +90059,7 @@ 2988499928,2988499935,FR 2988499936,2988499967,IE 2988499968,2988500223,FR -2988500224,2988500255,ES -2988500256,2988500271,IT +2988500224,2988500271,ES 2988500272,2988500287,BE 2988500288,2988500303,PL 2988500304,2988500307,FR @@ -95297,15 +90078,17 @@ 2988500400,2988500415,DE 2988500416,2988500447,CZ 2988500448,2988500479,ES -2988500480,2988500495,DE -2988500496,2988500499,FR +2988500480,2988500483,FR +2988500484,2988500487,PT +2988500488,2988500499,FR 2988500500,2988500503,DE 2988500504,2988500511,PL 2988500512,2988500519,FR 2988500520,2988500523,ES 2988500524,2988500527,FR 2988500528,2988500543,BE -2988500544,2988500623,PL +2988500544,2988500607,FR +2988500608,2988500623,PL 2988500624,2988500639,FR 2988500640,2988500671,GB 2988500672,2988500679,IT @@ -95341,13 +90124,12 @@ 2988500992,2988501023,IE 2988501024,2988501119,FR 2988501120,2988501123,PL -2988501124,2988501131,FR +2988501124,2988501127,IE +2988501128,2988501131,FR 2988501132,2988501135,ES 2988501136,2988501143,FR 2988501144,2988501147,GB -2988501148,2988501183,FR -2988501184,2988501215,BE -2988501216,2988501223,FR +2988501148,2988501223,FR 2988501224,2988501227,CZ 2988501228,2988501327,FR 2988501328,2988501335,ES @@ -95361,19 +90143,18 @@ 2988501408,2988501415,PL 2988501416,2988501423,FR 2988501424,2988501439,NL -2988501440,2988501471,BE +2988501440,2988501471,FR 2988501472,2988501475,PT 2988501476,2988501479,BE 2988501480,2988501487,DE 2988501488,2988501567,FR -2988501568,2988501631,PL -2988501632,2988501663,DE +2988501568,2988501663,PL 2988501664,2988501679,CH 2988501680,2988501683,PL 2988501684,2988501687,GB 2988501688,2988501691,FR 2988501692,2988501695,GB -2988501696,2988501727,FI +2988501696,2988501727,FR 2988501728,2988501759,PL 2988501760,2988502039,FR 2988502040,2988502047,CZ @@ -95384,10 +90165,10 @@ 2988502064,2988502071,FR 2988502072,2988502075,PL 2988502076,2988502079,ES -2988502080,2988502095,IE +2988502080,2988502095,FR 2988502096,2988502099,FI 2988502100,2988502103,CZ -2988502104,2988502107,PL +2988502104,2988502107,FR 2988502108,2988502111,IE 2988502112,2988502127,FR 2988502128,2988502143,PL @@ -95440,11 +90221,7 @@ 2988502812,2988502815,PL 2988502816,2988502823,FR 2988502824,2988502831,ES -2988502832,2988502863,FR -2988502864,2988502867,IE -2988502868,2988502871,LT -2988502872,2988502875,PL -2988502876,2988502879,ES +2988502832,2988502879,FR 2988502880,2988502883,IT 2988502884,2988502887,CZ 2988502888,2988502891,NL @@ -95476,7 +90253,7 @@ 2988503400,2988503415,FR 2988503416,2988503423,PL 2988503424,2988503455,FR -2988503456,2988503463,BE +2988503456,2988503463,PT 2988503464,2988503471,FR 2988503472,2988503487,ES 2988503488,2988503495,IT @@ -95488,7 +90265,9 @@ 2988503548,2988503551,PL 2988503552,2988503871,FR 2988503872,2988503903,DE -2988503904,2988503919,FR +2988503904,2988503907,PL +2988503908,2988503911,DE +2988503912,2988503919,FR 2988503920,2988503927,ES 2988503928,2988503935,NL 2988503936,2988503939,PT @@ -95496,7 +90275,8 @@ 2988503944,2988503947,PL 2988503948,2988503951,IE 2988503952,2988503991,FR -2988503992,2988504007,PL +2988503992,2988503999,ES +2988504000,2988504007,PL 2988504008,2988504015,BE 2988504016,2988504019,FR 2988504020,2988504023,ES @@ -95509,8 +90289,7 @@ 2988504192,2988504223,FR 2988504224,2988504227,PT 2988504228,2988504231,FR -2988504232,2988504239,PL -2988504240,2988504255,GB +2988504232,2988504255,GB 2988504256,2988504287,ES 2988504288,2988504303,GB 2988504304,2988504307,PL @@ -95541,24 +90320,24 @@ 2988504460,2988504463,GB 2988504464,2988504467,DE 2988504468,2988504471,ES -2988504472,2988504479,PL -2988504480,2988504543,FR +2988504472,2988504543,FR 2988504544,2988504559,PL 2988504560,2988504563,FI 2988504564,2988504567,PL 2988504568,2988504571,CH 2988504572,2988504575,PL 2988504576,2988504591,FR -2988504592,2988504603,PL +2988504592,2988504599,IT +2988504600,2988504603,PL 2988504604,2988504639,FR 2988504640,2988504647,DE 2988504648,2988504655,IT 2988504656,2988504675,FR 2988504676,2988504679,PL -2988504680,2988504683,FR -2988504684,2988504703,PL +2988504680,2988504687,FR +2988504688,2988504703,PL 2988504704,2988504735,FR -2988504736,2988504743,PL +2988504736,2988504743,PT 2988504744,2988504751,ES 2988504752,2988504755,PL 2988504756,2988504759,CZ @@ -95578,13 +90357,14 @@ 2988505088,2988505151,NL 2988505152,2988505167,GB 2988505168,2988505183,FR -2988505184,2988505195,PL +2988505184,2988505191,IE +2988505192,2988505195,PL 2988505196,2988505199,DE 2988505200,2988505207,PL 2988505208,2988505211,ES 2988505212,2988505215,PT 2988505216,2988505247,FR -2988505248,2988505255,PL +2988505248,2988505255,BE 2988505256,2988505263,FR 2988505264,2988505267,IT 2988505268,2988505271,FR @@ -95598,7 +90378,8 @@ 2988505340,2988505343,CH 2988505344,2988505375,IT 2988505376,2988505391,FR -2988505392,2988505399,PL +2988505392,2988505395,PL +2988505396,2988505399,DE 2988505400,2988505403,ES 2988505404,2988505407,GB 2988505408,2988505439,FR @@ -95615,9 +90396,7 @@ 2988505584,2988505599,FR 2988505600,2988505603,DE 2988505604,2988505607,ES -2988505608,2988505615,FR -2988505616,2988505631,ES -2988505632,2988505663,FR +2988505608,2988505663,FR 2988505664,2988505695,PL 2988505696,2988505703,FR 2988505704,2988505711,PL @@ -95706,8 +90485,10 @@ 2988506752,2988506763,ES 2988506764,2988506767,PL 2988506768,2988506771,PT -2988506772,2988506783,ES -2988506784,2988506819,PL +2988506772,2988506775,IT +2988506776,2988506783,ES +2988506784,2988506815,PT +2988506816,2988506819,PL 2988506820,2988506827,FR 2988506828,2988506831,IE 2988506832,2988506863,FR @@ -95716,36 +90497,33 @@ 2988506876,2988506887,FR 2988506888,2988506891,ES 2988506892,2988506895,LT -2988506896,2988506911,ES -2988506912,2988506975,FR +2988506896,2988506975,FR 2988506976,2988507007,DE -2988507008,2988507135,FR +2988507008,2988507071,FR +2988507072,2988507135,PT 2988507136,2988507143,NL 2988507144,2988507147,PL 2988507148,2988507155,IT 2988507156,2988507159,PL 2988507160,2988507163,CH -2988507164,2988507167,FR -2988507168,2988507183,DE -2988507184,2988507199,FR +2988507164,2988507199,FR 2988507200,2988507203,GB 2988507204,2988507207,DE 2988507208,2988507211,ES 2988507212,2988507215,PL 2988507216,2988507223,IT 2988507224,2988507231,PL -2988507232,2988507239,ES -2988507240,2988507243,FR -2988507244,2988507247,GB +2988507232,2988507239,PT +2988507240,2988507247,IT 2988507248,2988507263,FR 2988507264,2988507279,ES 2988507280,2988507283,FR 2988507284,2988507287,ES -2988507288,2988507295,GB -2988507296,2988507327,FR +2988507288,2988507291,GB +2988507292,2988507327,FR 2988507328,2988507335,DE 2988507336,2988507339,ES -2988507340,2988507343,GB +2988507340,2988507343,IE 2988507344,2988507391,FR 2988507392,2988507423,DE 2988507424,2988507431,PL @@ -95802,9 +90580,7 @@ 2988507840,2988507855,FR 2988507856,2988507859,BE 2988507860,2988507863,PL -2988507864,2988507875,ES -2988507876,2988507879,FR -2988507880,2988507883,ES +2988507864,2988507883,ES 2988507884,2988507887,GB 2988507888,2988507903,ES 2988507904,2988507919,PL @@ -95879,8 +90655,7 @@ 2988508724,2988508735,GB 2988508736,2988508767,FR 2988508768,2988508771,IT -2988508772,2988508779,FR -2988508780,2988508783,GB +2988508772,2988508783,FR 2988508784,2988508791,PT 2988508792,2988508795,FR 2988508796,2988508799,PL @@ -95895,8 +90670,8 @@ 2988508932,2988508935,GB 2988508936,2988508939,DE 2988508940,2988508943,PL -2988508944,2988508951,FR -2988508952,2988508959,ES +2988508944,2988508947,FR +2988508948,2988508959,ES 2988508960,2988508987,FR 2988508988,2988508991,PL 2988508992,2988509007,IT @@ -95904,9 +90679,13 @@ 2988509012,2988509015,GB 2988509016,2988509023,CH 2988509024,2988509119,FR -2988509120,2988509151,IT +2988509120,2988509151,PT 2988509152,2988509183,PL -2988509184,2988509279,FR +2988509184,2988509195,FR +2988509196,2988509199,NL +2988509200,2988509231,FR +2988509232,2988509247,PL +2988509248,2988509279,FR 2988509280,2988509283,PL 2988509284,2988509287,PT 2988509288,2988509291,BE @@ -95926,7 +90705,8 @@ 2988509444,2988509447,FI 2988509448,2988509451,GB 2988509452,2988509459,PL -2988509460,2988509467,GB +2988509460,2988509463,GB +2988509464,2988509467,CH 2988509468,2988509471,NL 2988509472,2988509491,FR 2988509492,2988509495,IE @@ -95994,7 +90774,7 @@ 2988510112,2988510143,CZ 2988510144,2988510175,NL 2988510176,2988510207,ES -2988510208,2988510211,GB +2988510208,2988510211,FR 2988510212,2988510215,PT 2988510216,2988510239,FR 2988510240,2988510243,DE @@ -96008,15 +90788,12 @@ 2988510312,2988510319,GB 2988510320,2988510323,FR 2988510324,2988510327,GB -2988510328,2988510331,FR -2988510332,2988510335,IT -2988510336,2988510403,FR +2988510328,2988510403,FR 2988510404,2988510407,GB 2988510408,2988510415,PL 2988510416,2988510431,FR 2988510432,2988510435,IT -2988510436,2988510439,BE -2988510440,2988510463,FR +2988510436,2988510463,FR 2988510464,2988510495,PL 2988510496,2988510499,IT 2988510500,2988510503,PL @@ -96058,7 +90835,8 @@ 2988511176,2988511179,GB 2988511180,2988511187,FR 2988511188,2988511191,PL -2988511192,2988511555,FR +2988511192,2988511551,FR +2988511552,2988511555,BE 2988511556,2988511559,CZ 2988511560,2988511567,IT 2988511568,2988511575,FR @@ -96086,18 +90864,15 @@ 2988511832,2988511835,GB 2988511836,2988511855,FR 2988511856,2988511871,PL -2988511872,2988511879,FR -2988511880,2988511887,PL -2988511888,2988511903,FR -2988511904,2988511911,IT -2988511912,2988511915,FR +2988511872,2988511915,FR 2988511916,2988511919,PL 2988511920,2988511923,GB 2988511924,2988511927,ES 2988511928,2988511931,IT -2988511932,2988511955,FR +2988511932,2988511951,FR +2988511952,2988511955,GB 2988511956,2988511959,ES -2988511960,2988511967,FR +2988511960,2988511967,PT 2988511968,2988511975,IT 2988511976,2988511979,BE 2988511980,2988511983,FR @@ -96105,7 +90880,8 @@ 2988512000,2988512047,FR 2988512048,2988512055,ES 2988512056,2988512059,GB -2988512060,2988512095,FR +2988512060,2988512063,PL +2988512064,2988512095,FR 2988512096,2988512127,IE 2988512128,2988512143,ES 2988512144,2988512151,FR @@ -96127,7 +90903,8 @@ 2988512316,2988512319,PL 2988512320,2988512335,FR 2988512336,2988512343,PL -2988512344,2988512351,FR +2988512344,2988512347,FR +2988512348,2988512351,IE 2988512352,2988512383,IT 2988512384,2988512399,FR 2988512400,2988512403,ES @@ -96141,7 +90918,9 @@ 2988512468,2988512471,GB 2988512472,2988512479,FR 2988512480,2988512483,DE -2988512484,2988512523,FR +2988512484,2988512491,FR +2988512492,2988512495,PL +2988512496,2988512523,FR 2988512524,2988512527,IT 2988512528,2988512543,FR 2988512544,2988512551,PL @@ -96149,7 +90928,8 @@ 2988512560,2988512575,FR 2988512576,2988512579,NL 2988512580,2988512583,PL -2988512584,2988512591,FR +2988512584,2988512587,GB +2988512588,2988512591,FR 2988512592,2988512595,BE 2988512596,2988512599,IT 2988512600,2988512607,PT @@ -96166,7 +90946,7 @@ 2988512704,2988512735,FR 2988512736,2988512767,ES 2988512768,2988512831,IE -2988512832,2988512835,FR +2988512832,2988512835,GB 2988512836,2988512839,ES 2988512840,2988512847,FR 2988512848,2988512851,ES @@ -96189,7 +90969,7 @@ 2988512988,2988512991,CZ 2988512992,2988512995,FR 2988512996,2988512999,GB -2988513000,2988513003,FR +2988513000,2988513003,ES 2988513004,2988513007,PL 2988513008,2988513015,IT 2988513016,2988513019,FI @@ -96221,7 +91001,7 @@ 2988513472,2988513503,FR 2988513504,2988513507,CH 2988513508,2988513511,DE -2988513512,2988513515,IE +2988513512,2988513515,ES 2988513516,2988513519,DE 2988513520,2988513535,GB 2988513536,2988513551,FR @@ -96248,8 +91028,7 @@ 2988513732,2988513735,PL 2988513736,2988513739,FR 2988513740,2988513743,ES -2988513744,2988513759,GB -2988513760,2988513879,FR +2988513744,2988513879,FR 2988513880,2988513883,ES 2988513884,2988513887,FR 2988513888,2988513891,PL @@ -96294,9 +91073,7 @@ 2988514340,2988514343,FR 2988514344,2988514351,PL 2988514352,2988514367,ES -2988514368,2988514447,FR -2988514448,2988514463,NL -2988514464,2988514527,FR +2988514368,2988514527,FR 2988514528,2988514543,GB 2988514544,2988514559,PL 2988514560,2988514623,FR @@ -96323,12 +91100,11 @@ 2988514960,2988514975,PL 2988514976,2988514979,DE 2988514980,2988514983,PL -2988514984,2988514991,IT -2988514992,2988514995,FR +2988514984,2988514995,IT 2988514996,2988515007,PL 2988515008,2988515027,FR -2988515028,2988515031,DE -2988515032,2988515327,FR +2988515028,2988515035,DE +2988515036,2988515327,FR 2988515328,2988517375,DE 2988517376,2988519423,FR 2988519424,2988521471,PL @@ -96354,7 +91130,7 @@ 2988523776,2988524031,FR 2988524032,2988524039,PL 2988524040,2988524047,ES -2988524048,2988524055,FR +2988524048,2988524055,NL 2988524056,2988524063,CZ 2988524064,2988524067,PL 2988524068,2988524071,GB @@ -96410,7 +91186,8 @@ 2988524488,2988524495,FR 2988524496,2988524543,PL 2988524544,2988524575,IE -2988524576,2988524599,FR +2988524576,2988524595,FR +2988524596,2988524599,GB 2988524600,2988524607,ES 2988524608,2988524627,GB 2988524628,2988524631,FR @@ -96425,7 +91202,8 @@ 2988525056,2988525567,PL 2988525568,2988525579,FR 2988525580,2988525583,GB -2988525584,2988525631,PL +2988525584,2988525599,FR +2988525600,2988525631,PL 2988525632,2988525647,ES 2988525648,2988525651,GB 2988525652,2988525659,FR @@ -96436,15 +91214,14 @@ 2988525784,2988525791,FR 2988525792,2988525807,PL 2988525808,2988525811,ES -2988525812,2988525815,PL +2988525812,2988525815,FR 2988525816,2988525819,ES 2988525820,2988525823,IT 2988525824,2988525843,FR 2988525844,2988525847,ES 2988525848,2988525851,IT 2988525852,2988525855,DE -2988525856,2988525887,FR -2988525888,2988525951,FI +2988525856,2988525951,FR 2988525952,2988525967,IT 2988525968,2988525983,FR 2988525984,2988525991,FI @@ -96457,7 +91234,7 @@ 2988526092,2988526095,GB 2988526096,2988526135,FR 2988526136,2988526143,GB -2988526144,2988526175,BE +2988526144,2988526175,IE 2988526176,2988526239,ES 2988526240,2988526423,PL 2988526424,2988526427,GB @@ -96466,8 +91243,7 @@ 2988526436,2988526439,FR 2988526440,2988526443,CH 2988526444,2988526447,BE -2988526448,2988526451,FR -2988526452,2988526455,GB +2988526448,2988526455,FR 2988526456,2988526463,ES 2988526464,2988526575,FR 2988526576,2988526583,ES @@ -96493,9 +91269,8 @@ 2988526768,2988526783,FR 2988526784,2988526847,ES 2988526848,2988526863,BE -2988526864,2988526867,GB -2988526868,2988526871,PT -2988526872,2988526875,DE +2988526864,2988526867,ES +2988526868,2988526875,PT 2988526876,2988526879,PL 2988526880,2988526927,FR 2988526928,2988526935,DE @@ -96503,13 +91278,13 @@ 2988526940,2988526951,DE 2988526952,2988526955,FR 2988526956,2988526959,IT -2988526960,2988526975,FR -2988526976,2988526995,PL +2988526960,2988526991,FR +2988526992,2988526995,PL 2988526996,2988527007,ES 2988527008,2988527055,FR 2988527056,2988527071,BE 2988527072,2988527087,FR -2988527088,2988527095,GB +2988527088,2988527095,PT 2988527096,2988527103,PL 2988527104,2988527119,FR 2988527120,2988527167,PL @@ -96526,11 +91301,8 @@ 2988527212,2988527215,IE 2988527216,2988527359,FR 2988527360,2988527391,DE -2988527392,2988527399,PL -2988527400,2988527407,DE -2988527408,2988527411,FR -2988527412,2988527419,PL -2988527420,2988527423,GB +2988527392,2988527411,FR +2988527412,2988527423,PL 2988527424,2988527431,FR 2988527432,2988527439,IT 2988527440,2988527451,PL @@ -96541,8 +91313,7 @@ 2988527476,2988527479,ES 2988527480,2988527487,FR 2988527488,2988527503,GB -2988527504,2988527523,FR -2988527524,2988527527,PL +2988527504,2988527527,FR 2988527528,2988527531,DE 2988527532,2988527535,FR 2988527536,2988527543,DE @@ -96566,12 +91337,14 @@ 2988527688,2988527691,PL 2988527692,2988527695,FR 2988527696,2988527711,GB -2988527712,2988527747,FR +2988527712,2988527743,IE +2988527744,2988527747,FR 2988527748,2988527751,ES -2988527752,2988527755,NL +2988527752,2988527755,GB 2988527756,2988527759,PL 2988527760,2988527775,ES -2988527776,2988527823,FR +2988527776,2988527807,IE +2988527808,2988527823,FR 2988527824,2988527831,GB 2988527832,2988527839,ES 2988527840,2988527843,FR @@ -96598,7 +91371,7 @@ 2988528116,2988528119,PL 2988528120,2988528123,PT 2988528124,2988528127,FR -2988528128,2988528159,GB +2988528128,2988528159,PL 2988528160,2988528179,ES 2988528180,2988528183,FR 2988528184,2988528187,PL @@ -96618,13 +91391,11 @@ 2988528272,2988528275,ES 2988528276,2988528279,IT 2988528280,2988528287,DE -2988528288,2988528303,GB -2988528304,2988528351,FR +2988528288,2988528351,FR 2988528352,2988528383,DE 2988528384,2988528391,PL 2988528392,2988528399,CH -2988528400,2988528419,FR -2988528420,2988528423,DE +2988528400,2988528423,FR 2988528424,2988528431,NL 2988528432,2988528435,FR 2988528436,2988528439,PL @@ -96642,8 +91413,7 @@ 2988528512,2988528639,FR 2988528640,2988528643,BE 2988528644,2988528647,PL -2988528648,2988528651,GB -2988528652,2988528655,FR +2988528648,2988528655,FR 2988528656,2988528659,NL 2988528660,2988528663,PL 2988528664,2988528671,FR @@ -96678,7 +91448,7 @@ 2988529248,2988529251,GB 2988529252,2988529255,DE 2988529256,2988529263,IT -2988529264,2988529267,BE +2988529264,2988529267,DE 2988529268,2988529271,PL 2988529272,2988529275,FR 2988529276,2988529279,ES @@ -96719,7 +91489,9 @@ 2988529664,2988529667,PL 2988529668,2988529671,FR 2988529672,2988529675,CZ -2988529676,2988529703,FR +2988529676,2988529679,FR +2988529680,2988529695,PT +2988529696,2988529703,FR 2988529704,2988529707,DE 2988529708,2988529759,FR 2988529760,2988529763,PL @@ -96747,8 +91519,7 @@ 2988529936,2988529939,CH 2988529940,2988529943,GB 2988529944,2988529947,ES -2988529948,2988529951,DE -2988529952,2988529955,GB +2988529948,2988529955,DE 2988529956,2988529959,FR 2988529960,2988529983,GB 2988529984,2988529999,PL @@ -96794,7 +91565,8 @@ 2988530744,2988530751,PL 2988530752,2988530847,FR 2988530848,2988530851,DE -2988530852,2988530863,ES +2988530852,2988530855,FR +2988530856,2988530863,ES 2988530864,2988530867,PL 2988530868,2988530879,FR 2988530880,2988530895,DE @@ -96827,7 +91599,8 @@ 2988531200,2988531231,ES 2988531232,2988531247,IT 2988531248,2988531259,PL -2988531260,2988531267,GB +2988531260,2988531263,FR +2988531264,2988531267,GB 2988531268,2988531271,FR 2988531272,2988531279,ES 2988531280,2988531287,PT @@ -96853,8 +91626,7 @@ 2988535808,2988537855,ES 2988537856,2988539935,FR 2988539936,2988539967,GB -2988539968,2988539971,ES -2988539972,2988539975,IT +2988539968,2988539975,ES 2988539976,2988539983,FR 2988539984,2988540003,PL 2988540004,2988540007,CZ @@ -96862,7 +91634,8 @@ 2988540020,2988540023,GB 2988540024,2988540207,FR 2988540208,2988540211,GB -2988540212,2988540219,FR +2988540212,2988540215,FR +2988540216,2988540219,ES 2988540220,2988540223,GB 2988540224,2988540231,NL 2988540232,2988540235,GB @@ -96875,7 +91648,8 @@ 2988540276,2988540279,PL 2988540280,2988540287,FR 2988540288,2988540303,BE -2988540304,2988540363,FR +2988540304,2988540359,FR +2988540360,2988540363,CZ 2988540364,2988540367,PL 2988540368,2988540379,FR 2988540380,2988540383,PL @@ -96890,7 +91664,8 @@ 2988540456,2988540463,IT 2988540464,2988540467,PL 2988540468,2988540471,GB -2988540472,2988540483,FR +2988540472,2988540479,FR +2988540480,2988540483,CH 2988540484,2988540491,PL 2988540492,2988540499,FR 2988540500,2988540503,CZ @@ -96913,7 +91688,7 @@ 2988540716,2988540719,PL 2988540720,2988540735,DE 2988540736,2988540767,ES -2988540768,2988540775,PL +2988540768,2988540775,GB 2988540776,2988540787,BE 2988540788,2988540795,FR 2988540796,2988540799,GB @@ -96943,8 +91718,7 @@ 2988541264,2988541279,IT 2988541280,2988541311,NL 2988541312,2988541315,ES -2988541316,2988541319,IE -2988541320,2988541327,FR +2988541316,2988541327,FR 2988541328,2988541335,PL 2988541336,2988541343,FR 2988541344,2988541347,GB @@ -96980,7 +91754,9 @@ 2988541608,2988541611,GB 2988541612,2988541615,IT 2988541616,2988541619,BE -2988541620,2988541655,FR +2988541620,2988541627,FR +2988541628,2988541631,DE +2988541632,2988541655,FR 2988541656,2988541663,ES 2988541664,2988541679,FR 2988541680,2988541683,BE @@ -97006,11 +91782,11 @@ 2988541864,2988541867,DE 2988541868,2988541887,FR 2988541888,2988541895,DE -2988541896,2988541899,PL -2988541900,2988541903,BE -2988541904,2988541907,CZ -2988541908,2988541911,GB -2988541912,2988541927,PL +2988541896,2988541903,CZ +2988541904,2988541911,GB +2988541912,2988541915,PL +2988541916,2988541919,FR +2988541920,2988541927,PL 2988541928,2988541935,LT 2988541936,2988541943,FR 2988541944,2988541947,GB @@ -97077,10 +91853,10 @@ 2988542920,2988542923,PL 2988542924,2988542935,FR 2988542936,2988542939,IT -2988542940,2988542943,GB +2988542940,2988542943,FR 2988542944,2988542959,DE 2988542960,2988542963,PL -2988542964,2988542967,GB +2988542964,2988542967,FR 2988542968,2988542975,DE 2988542976,2988542983,CH 2988542984,2988542987,FR @@ -97156,9 +91932,7 @@ 2988543576,2988543579,FI 2988543580,2988543583,FR 2988543584,2988543615,DE -2988543616,2988543743,FR -2988543744,2988543775,CH -2988543776,2988543839,FR +2988543616,2988543839,FR 2988543840,2988543871,GB 2988543872,2988543935,ES 2988543936,2988543947,PL @@ -97171,7 +91945,7 @@ 2988544012,2988544015,PT 2988544016,2988544031,FR 2988544032,2988544035,CH -2988544036,2988544039,FR +2988544036,2988544039,IT 2988544040,2988544043,DE 2988544044,2988544047,GB 2988544048,2988544055,FR @@ -97199,7 +91973,7 @@ 2988544312,2988544319,FR 2988544320,2988544323,PL 2988544324,2988544327,FR -2988544328,2988544331,PL +2988544328,2988544331,PT 2988544332,2988544335,ES 2988544336,2988544355,FR 2988544356,2988544359,DE @@ -97218,7 +91992,7 @@ 2988544648,2988544655,FR 2988544656,2988544663,ES 2988544664,2988544667,DE -2988544668,2988544671,ES +2988544668,2988544671,FR 2988544672,2988544687,GB 2988544688,2988544691,NL 2988544692,2988544767,FR @@ -97242,8 +92016,8 @@ 2988544988,2988544991,FR 2988544992,2988544995,PL 2988544996,2988544999,FR -2988545000,2988545007,DE -2988545008,2988545011,FR +2988545000,2988545003,DE +2988545004,2988545011,FR 2988545012,2988545019,DE 2988545020,2988545027,FR 2988545028,2988545031,IT @@ -97266,19 +92040,16 @@ 2988545288,2988545291,FR 2988545292,2988545295,DE 2988545296,2988545331,FR -2988545332,2988545343,DE -2988545344,2988545367,FR -2988545368,2988545371,DE -2988545372,2988545375,GB -2988545376,2988545383,DE +2988545332,2988545335,DE +2988545336,2988545375,FR +2988545376,2988545383,PT 2988545384,2988545387,ES 2988545388,2988545391,FR 2988545392,2988545395,DE 2988545396,2988545439,FR 2988545440,2988545443,DE 2988545444,2988545447,ES -2988545448,2988545455,PL -2988545456,2988545503,FR +2988545448,2988545503,FR 2988545504,2988545511,DE 2988545512,2988545515,IT 2988545516,2988545519,FR @@ -97334,7 +92105,7 @@ 2988546124,2988546143,GB 2988546144,2988546159,PL 2988546160,2988546175,ES -2988546176,2988546239,GB +2988546176,2988546239,PT 2988546240,2988546271,LT 2988546272,2988546279,IT 2988546280,2988546283,FR @@ -97355,9 +92126,7 @@ 2988546440,2988546443,DE 2988546444,2988546451,FR 2988546452,2988546463,ES -2988546464,2988546527,FR -2988546528,2988546535,BE -2988546536,2988546543,FR +2988546464,2988546543,FR 2988546544,2988546547,PL 2988546548,2988546551,FR 2988546552,2988546555,DE @@ -97404,8 +92173,7 @@ 2988546968,2988546971,FR 2988546972,2988546975,BE 2988546976,2988546991,FI -2988546992,2988546995,DE -2988546996,2988546999,ES +2988546992,2988546999,DE 2988547000,2988547003,IT 2988547004,2988547007,ES 2988547008,2988547011,PL @@ -97419,8 +92187,7 @@ 2988547060,2988547063,FR 2988547064,2988547067,GB 2988547068,2988547071,PL -2988547072,2988547087,IE -2988547088,2988547095,FR +2988547072,2988547095,FR 2988547096,2988547099,GB 2988547100,2988547103,IE 2988547104,2988547111,FR @@ -97486,14 +92253,12 @@ 2988547688,2988547691,PL 2988547692,2988547695,CZ 2988547696,2988547703,ES -2988547704,2988547711,IT -2988547712,2988547751,FR +2988547704,2988547751,FR 2988547752,2988547759,ES 2988547760,2988547775,FR -2988547776,2988547807,ES -2988547808,2988547815,GB +2988547776,2988547815,ES 2988547816,2988547823,CH -2988547824,2988547831,FR +2988547824,2988547831,PT 2988547832,2988547839,ES 2988547840,2988547855,DE 2988547856,2988547871,NL @@ -97565,23 +92330,19 @@ 2988550680,2988550683,PL 2988550684,2988550687,FR 2988550688,2988550695,LT -2988550696,2988550699,GB +2988550696,2988550699,FR 2988550700,2988550703,ES 2988550704,2988550719,NL -2988550720,2988550751,PT +2988550720,2988550751,IE 2988550752,2988550783,NL 2988550784,2988550847,FR 2988550848,2988550863,PL 2988550864,2988550887,FR 2988550888,2988550895,PT 2988550896,2988550903,PL -2988550904,2988550911,FR -2988550912,2988550927,LT -2988550928,2988550951,FR +2988550904,2988550951,FR 2988550952,2988550955,PL -2988550956,2988550959,FR -2988550960,2988550963,GB -2988550964,2988550967,FR +2988550956,2988550967,FR 2988550968,2988550975,ES 2988550976,2988551007,FR 2988551008,2988551039,PL @@ -97628,7 +92389,7 @@ 2988551604,2988551607,NL 2988551608,2988551615,IT 2988551616,2988551631,ES -2988551632,2988551635,FR +2988551632,2988551635,DE 2988551636,2988551643,IT 2988551644,2988551647,FR 2988551648,2988551651,DE @@ -97650,12 +92411,14 @@ 2988552192,2988552319,NL 2988552320,2988552447,FR 2988552448,2988552479,GB -2988552480,2988552511,CH -2988552512,2988552551,BE +2988552480,2988552511,FR +2988552512,2988552543,BE +2988552544,2988552551,PL 2988552552,2988552559,IE 2988552560,2988552563,FR 2988552564,2988552567,IE -2988552568,2988552579,FR +2988552568,2988552575,BE +2988552576,2988552579,FR 2988552580,2988552583,DE 2988552584,2988552587,FR 2988552588,2988552591,PL @@ -97672,7 +92435,9 @@ 2988552636,2988552643,FR 2988552644,2988552647,GB 2988552648,2988552651,PT -2988552652,2988552703,FR +2988552652,2988552659,FR +2988552660,2988552663,PT +2988552664,2988552703,FR 2988552704,2988552711,ES 2988552712,2988552715,PT 2988552716,2988552719,FR @@ -97707,7 +92472,7 @@ 2988553004,2988553007,GB 2988553008,2988553023,IE 2988553024,2988553087,LT -2988553088,2988553119,PL +2988553088,2988553119,FR 2988553120,2988553135,ES 2988553136,2988553151,FR 2988553152,2988553159,ES @@ -97742,26 +92507,22 @@ 2988553404,2988553407,GB 2988553408,2988553411,LT 2988553412,2988553415,IT -2988553416,2988553423,BE -2988553424,2988553439,FR +2988553416,2988553439,FR 2988553440,2988553447,CZ 2988553448,2988553451,FR 2988553452,2988553455,ES 2988553456,2988553487,FR 2988553488,2988553495,PL -2988553496,2988553503,CH -2988553504,2988553511,FR +2988553496,2988553511,FR 2988553512,2988553519,PT -2988553520,2988553527,GB +2988553520,2988553527,FR 2988553528,2988553531,CH 2988553532,2988553551,FR 2988553552,2988553567,PL 2988553568,2988553575,FR 2988553576,2988553579,CH 2988553580,2988553583,ES -2988553584,2988553599,FR -2988553600,2988553607,GB -2988553608,2988553631,FR +2988553584,2988553631,FR 2988553632,2988553639,PL 2988553640,2988553643,IE 2988553644,2988553647,FR @@ -97798,14 +92559,17 @@ 2988554032,2988554035,FR 2988554036,2988554039,PL 2988554040,2988554043,BE -2988554044,2988554075,FR +2988554044,2988554071,FR +2988554072,2988554075,ES 2988554076,2988554079,CH -2988554080,2988554127,FR +2988554080,2988554095,GB +2988554096,2988554127,FR 2988554128,2988554131,IT 2988554132,2988554167,FR 2988554168,2988554171,PL 2988554172,2988554175,IE -2988554176,2988554223,FR +2988554176,2988554183,GB +2988554184,2988554223,FR 2988554224,2988554239,IT 2988554240,2988554495,ES 2988554496,2988554499,FR @@ -97819,8 +92583,7 @@ 2988554544,2988554555,FR 2988554556,2988554559,DE 2988554560,2988554623,IT -2988554624,2988554687,PL -2988554688,2988554751,FR +2988554624,2988554751,FR 2988554752,2988554783,FI 2988554784,2988554787,DE 2988554788,2988554791,PL @@ -97834,8 +92597,7 @@ 2988554924,2988554927,PT 2988554928,2988554931,DE 2988554932,2988554935,ES -2988554936,2988554939,GB -2988554940,2988554943,FR +2988554936,2988554943,FR 2988554944,2988555007,GB 2988555008,2988555047,FR 2988555048,2988555051,PL @@ -97889,7 +92651,9 @@ 2988556112,2988556115,PL 2988556116,2988556123,FR 2988556124,2988556127,NL -2988556128,2988556159,FR +2988556128,2988556135,FR +2988556136,2988556139,NL +2988556140,2988556159,FR 2988556160,2988556175,NL 2988556176,2988556179,DE 2988556180,2988556183,IT @@ -97910,7 +92674,7 @@ 2988556244,2988556251,FR 2988556252,2988556255,CZ 2988556256,2988556259,ES -2988556260,2988556263,FR +2988556260,2988556263,BE 2988556264,2988556271,GB 2988556272,2988556275,CH 2988556276,2988556279,FR @@ -97971,7 +92735,7 @@ 2988557044,2988557047,BE 2988557048,2988557051,PL 2988557052,2988557055,FR -2988557056,2988557059,ES +2988557056,2988557059,IT 2988557060,2988557063,FR 2988557064,2988557071,ES 2988557072,2988557075,PL @@ -97988,7 +92752,7 @@ 2988557252,2988557255,ES 2988557256,2988557259,FR 2988557260,2988557263,DE -2988557264,2988557279,GB +2988557264,2988557279,BE 2988557280,2988557287,ES 2988557288,2988557291,PL 2988557292,2988557295,FR @@ -97997,7 +92761,7 @@ 2988557304,2988557311,CZ 2988557312,2988557327,DE 2988557328,2988557343,ES -2988557344,2988557359,FR +2988557344,2988557359,PT 2988557360,2988557375,PL 2988557376,2988557379,FR 2988557380,2988557383,PL @@ -98014,7 +92778,8 @@ 2988557472,2988557487,PL 2988557488,2988557491,FI 2988557492,2988557495,FR -2988557496,2988557503,PL +2988557496,2988557499,DE +2988557500,2988557503,PL 2988557504,2988557511,FR 2988557512,2988557515,GB 2988557516,2988557519,PL @@ -98044,7 +92809,7 @@ 2988557952,2988557983,LT 2988557984,2988557999,NL 2988558000,2988558015,IE -2988558016,2988558047,FR +2988558016,2988558047,NL 2988558048,2988558063,PL 2988558064,2988558067,DE 2988558068,2988558071,FI @@ -98054,14 +92819,18 @@ 2988558084,2988558087,PL 2988558088,2988558095,FR 2988558096,2988558103,PL -2988558104,2988558115,IE +2988558104,2988558111,FR +2988558112,2988558115,IE 2988558116,2988558123,GB 2988558124,2988558127,FR 2988558128,2988558131,DE 2988558132,2988558135,PL 2988558136,2988558139,GB 2988558140,2988558143,DE -2988558144,2988558191,FR +2988558144,2988558151,PT +2988558152,2988558159,FR +2988558160,2988558175,IE +2988558176,2988558191,FR 2988558192,2988558199,CZ 2988558200,2988558203,PL 2988558204,2988558207,DE @@ -98117,7 +92886,9 @@ 2988559136,2988559139,DE 2988559140,2988559147,PL 2988559148,2988559151,GB -2988559152,2988559263,FR +2988559152,2988559247,FR +2988559248,2988559255,GB +2988559256,2988559263,FR 2988559264,2988559295,LT 2988559296,2988559359,PL 2988559360,2988559615,FR @@ -98133,9 +92904,7 @@ 2988559708,2988559723,FR 2988559724,2988559727,IT 2988559728,2988559731,DE -2988559732,2988559735,FR -2988559736,2988559743,ES -2988559744,2988559807,FR +2988559732,2988559807,FR 2988559808,2988559871,ES 2988559872,2988560383,IT 2988560384,2988560387,FR @@ -98167,9 +92936,9 @@ 2988560624,2988560627,PL 2988560628,2988560631,FR 2988560632,2988560635,IE -2988560636,2988560639,FR +2988560636,2988560639,DE 2988560640,2988560703,GB -2988560704,2988560711,DE +2988560704,2988560711,FR 2988560712,2988560719,PL 2988560720,2988560751,DE 2988560752,2988560759,FR @@ -98180,9 +92949,10 @@ 2988560816,2988560831,FR 2988560832,2988560863,GB 2988560864,2988560871,PL -2988560872,2988560895,GB -2988560896,2988560911,FR -2988560912,2988560919,ES +2988560872,2988560875,GB +2988560876,2988560879,ES +2988560880,2988560895,GB +2988560896,2988560919,FR 2988560920,2988560923,DE 2988560924,2988560935,FR 2988560936,2988560939,NL @@ -98201,8 +92971,7 @@ 2988561072,2988561075,ES 2988561076,2988561079,FR 2988561080,2988561083,PL -2988561084,2988561087,GB -2988561088,2988561091,FR +2988561084,2988561091,FR 2988561092,2988561095,LT 2988561096,2988561099,NL 2988561100,2988561103,CZ @@ -98232,7 +93001,7 @@ 2988561344,2988561375,PL 2988561376,2988561391,FR 2988561392,2988561403,ES -2988561404,2988561407,LT +2988561404,2988561407,FR 2988561408,2988561423,IE 2988561424,2988561431,PL 2988561432,2988561519,FR @@ -98247,7 +93016,7 @@ 2988561584,2988561591,GB 2988561592,2988561595,FR 2988561596,2988561599,PL -2988561600,2988561631,NL +2988561600,2988561631,FR 2988561632,2988561663,PL 2988561664,2988561667,GB 2988561668,2988561671,DE @@ -98257,7 +93026,7 @@ 2988561684,2988561687,ES 2988561688,2988561691,DE 2988561692,2988561695,LT -2988561696,2988561727,GB +2988561696,2988561727,FR 2988561728,2988561743,PL 2988561744,2988561747,FR 2988561748,2988561751,DE @@ -98306,9 +93075,7 @@ 2988562708,2988562711,DE 2988562712,2988562719,FR 2988562720,2988562815,BE -2988562816,2988562823,PL -2988562824,2988562831,PT -2988562832,2988562835,FR +2988562816,2988562835,FR 2988562836,2988562839,NL 2988562840,2988562843,IT 2988562844,2988562847,PL @@ -98435,9 +93202,7 @@ 2990505539,2990505599,IT 2990505600,2990515967,DE 2990515968,2990515983,IT -2990515984,2990517655,DE -2990517656,2990517663,IT -2990517664,2990518015,DE +2990515984,2990518015,DE 2990518016,2990518079,IT 2990518080,2990528703,DE 2990528704,2990528735,RS @@ -98454,10 +93219,38 @@ 2991128576,2991144959,PL 2991144960,2991161343,SA 2991161344,2991177727,FR -2991177728,2991178751,SE -2991178752,2991179263,SE -2991179264,2991179327,SE -2991179328,2991182591,SE +2991177728,2991178864,SE +2991178865,2991178878,SE +2991178879,2991178926,SE +2991178927,2991178927,SE +2991178928,2991179120,SE +2991179121,2991179134,SE +2991179135,2991179167,SE +2991179168,2991179199,SE +2991179200,2991179327,SE +2991179328,2991179775,SE +2991179776,2991179888,SE +2991179889,2991179902,SE +2991179903,2991180144,SE +2991180145,2991180158,SE +2991180159,2991180400,SE +2991180401,2991180414,SE +2991180415,2991180543,SE +2991180544,2991180670,SE +2991180671,2991180912,SE +2991180913,2991180926,SE +2991180927,2991180927,SE +2991180928,2991180991,SE +2991180992,2991181168,SE +2991181169,2991181182,SE +2991181183,2991181424,SE +2991181425,2991181438,SE +2991181439,2991181680,SE +2991181681,2991181694,SE +2991181695,2991181702,SE +2991181703,2991181703,SE +2991181704,2991181807,SE +2991181808,2991182591,SE 2991182592,2991182847,SE 2991182848,2991182943,SE 2991182944,2991182975,SE @@ -98883,17 +93676,7 @@ 2997508352,2997508607,IT 2997508608,2997508863,ES 2997508864,2997509119,GB -2997509120,2997513345,FR -2997513346,2997513346,IT -2997513347,2997513347,ES -2997513348,2997513348,DE -2997513349,2997513349,PT -2997513350,2997513350,BE -2997513351,2997513351,LU -2997513352,2997513352,AT -2997513353,2997513353,NL -2997513354,2997513354,IE -2997513355,2997518335,FR +2997509120,2997518335,FR 2997518336,2997528063,RU 2997528064,2997528319,UA 2997528320,2997583871,RU @@ -98965,7 +93748,9 @@ 2997847784,2997847791,CN 2997847792,2997847799,RU 2997847800,2997847807,PA -2997847808,2997878783,MD +2997847808,2997848367,MD +2997848368,2997848375,SC +2997848376,2997878783,MD 2997878784,2998140927,RU 2998140928,2998403071,PL 2998403072,2998665215,RU @@ -99381,7 +94166,9 @@ 3002601472,3002603055,IS 3002603056,3002603070,SL 3002603071,3002603519,IS -3002603520,3002605567,SE +3002603520,3002605183,SE +3002605184,3002605199,SE +3002605200,3002605567,SE 3002605568,3002607615,GB 3002607616,3002609663,IR 3002609664,3002611711,IT @@ -99569,8 +94356,7 @@ 3003077952,3003080703,GB 3003080704,3003081150,FR 3003081151,3003081156,GB -3003081157,3003081157,ES -3003081158,3003082751,FR +3003081157,3003082751,FR 3003082752,3003084799,ES 3003086848,3003088895,RU 3003088896,3003090943,FR @@ -99613,6 +94399,11 @@ 3003580416,3003645951,PE 3003908096,3004170239,CO 3004694528,3005218815,UY +3006267392,3006271231,PA +3006271232,3006271487,NI +3006271488,3006332927,PA +3006529536,3006660607,DO +3009413120,3009445887,BR 3011510272,3019898879,BR 3019898880,3024093183,JP 3024093184,3024617471,KR @@ -99925,19 +94716,29 @@ 3049078528,3049095167,CR 3049095168,3049103359,GT 3049103360,3049107455,AR +3049107456,3049111551,SV 3049111552,3049119743,AR 3049119744,3049127935,HN 3049127936,3049193471,CL -3049193472,3049259007,PA -3049259008,3049521151,CR -3049652224,3049717759,EC +3049193472,3049255935,PA +3049255936,3049256959,US +3049256960,3049259007,PA +3049259008,3049267199,AR +3049283584,3049291775,BZ +3049291776,3049324543,CO +3049324544,3049521151,CR +3049652224,3049783295,EC 3049783296,3050045439,CL 3050307584,3050340351,VE 3050373120,3050405887,AR 3050438656,3050504191,HN 3051356160,3051380735,CR 3051380736,3051388927,AR -3051388928,3051397119,PA +3051388928,3051393023,PA +3051393024,3051395071,US +3051395072,3051397119,PA +3051399168,3051400191,DO +3051401216,3051403263,AR 3051405312,3051407359,CR 3051407360,3051408383,PE 3051408384,3051409407,DO @@ -99951,7 +94752,15 @@ 3051552768,3051618303,BO 3051618304,3051749375,AR 3051880448,3051913215,CO -3051945984,3051978751,CR +3051945984,3051964671,CR +3051964672,3051964927,PA +3051964928,3051971071,CR +3051971072,3051971327,PA +3051971328,3051972095,CR +3051972096,3051972351,PA +3051972352,3051973887,CR +3051973888,3051974143,PA +3051974144,3051978751,CR 3051995136,3052011519,PE 3052142592,3052273663,CO 3052273664,3052404735,AR @@ -100308,15 +95117,11 @@ 3098255904,3098255911,MV 3098255912,3098263551,US 3098263552,3098271743,CA -3098271744,3098275944,US -3098275945,3098275945,CL -3098275946,3098275950,US +3098271744,3098275950,US 3098275951,3098275953,CL 3098275954,3098276126,US 3098276127,3098276130,IN -3098276131,3098276708,US -3098276709,3098276709,CL -3098276710,3098278719,US +3098276131,3098278719,US 3098278720,3098278751,CA 3098278752,3098278815,US 3098278816,3098278911,CA @@ -100700,7 +95505,10 @@ 3104122624,3104122624,GB 3104122625,3104122879,BD 3104122880,3104123903,RU -3104123904,3104124927,SE +3104123904,3104124159,SE +3104124160,3104124415,LU +3104124416,3104124671,RO +3104124672,3104124927,SE 3104124928,3104125951,MT 3104125952,3104126975,LT 3104126976,3104127999,CH @@ -100829,8 +95637,8 @@ 3104248832,3104250879,CZ 3104250880,3104251903,RU 3104251904,3104252671,NL -3104252672,3104252798,LU -3104252799,3104252927,NL +3104252672,3104252814,LU +3104252815,3104252927,NL 3104252928,3104253951,FR 3104253952,3104254975,RU 3104254976,3104255999,CZ @@ -100916,12 +95724,22 @@ 3104335984,3104335999,US 3104336000,3104336111,CN 3104336112,3104336119,GB -3104336120,3104336191,LT +3104336120,3104336135,LT +3104336136,3104336139,LV +3104336140,3104336143,LT +3104336144,3104336151,IL +3104336152,3104336159,LT +3104336160,3104336191,LK 3104336192,3104336223,BD 3104336224,3104336239,PH 3104336240,3104336255,DE 3104336256,3104336383,US -3104336384,3104336895,LT +3104336384,3104336399,LT +3104336400,3104336415,US +3104336416,3104336431,EE +3104336432,3104336447,SC +3104336448,3104336495,LK +3104336496,3104336895,LT 3104336896,3104337919,GB 3104337920,3104338943,IE 3104338944,3104339967,DE @@ -101108,7 +95926,7 @@ 3104534528,3104535551,SE 3104535552,3104536575,ES 3104536576,3104537599,RO -3104537600,3104538623,IL +3104537600,3104538623,US 3104538624,3104539647,PL 3104539648,3104540671,RU 3104540672,3104541695,DE @@ -101177,22 +95995,29 @@ 3104606208,3104607231,GB 3104607232,3104608255,UA 3104608256,3104609279,NL -3104609280,3104609407,SE +3104609280,3104609395,SE +3104609396,3104609399,CN +3104609400,3104609407,NO 3104609408,3104609439,PL 3104609440,3104609471,US 3104609472,3104609503,DE 3104609504,3104609535,NL -3104609536,3104609663,SE +3104609536,3104609651,SE +3104609652,3104609655,IL +3104609656,3104609663,NO 3104609664,3104609695,PL 3104609696,3104609727,US 3104609728,3104609759,DE 3104609760,3104609791,NL -3104609792,3104609919,SE +3104609792,3104609907,SE +3104609908,3104609911,JP +3104609912,3104609919,NO 3104609920,3104609951,PL 3104609952,3104609983,US 3104609984,3104610015,DE 3104610016,3104610047,NL -3104610048,3104610175,SE +3104610048,3104610167,SE +3104610168,3104610175,NO 3104610176,3104610207,PL 3104610208,3104610239,US 3104610240,3104610271,DE @@ -101218,25 +96043,31 @@ 3104629760,3104630783,RU 3104630784,3104631807,GB 3104631808,3104632831,EE -3104632832,3104633087,NL -3104633088,3104633855,AT +3104632832,3104632991,NL +3104632992,3104633087,AT +3104633088,3104633215,NL +3104633216,3104633855,AT 3104633856,3104634879,JO -3104634880,3104635031,SE +3104634880,3104635023,SE +3104635024,3104635031,DK 3104635032,3104635039,BR 3104635040,3104635071,PL 3104635072,3104635103,DE 3104635104,3104635135,NL -3104635136,3104635287,SE +3104635136,3104635279,SE +3104635280,3104635287,DK 3104635288,3104635295,KW 3104635296,3104635327,PL 3104635328,3104635359,DE 3104635360,3104635391,NL -3104635392,3104635543,SE +3104635392,3104635535,SE +3104635536,3104635543,DK 3104635544,3104635551,MA 3104635552,3104635583,PL 3104635584,3104635615,DE 3104635616,3104635647,NL -3104635648,3104635799,SE +3104635648,3104635791,SE +3104635792,3104635799,DK 3104635800,3104635807,QA 3104635808,3104635839,PL 3104635840,3104635871,DE @@ -101251,21 +96082,28 @@ 3104644096,3104645119,DE 3104645120,3104646143,RU 3104646144,3104647167,FR -3104647168,3104647319,GB +3104647168,3104647311,GB +3104647312,3104647319,NO 3104647320,3104647327,AE 3104647328,3104647359,PL 3104647360,3104647391,IT 3104647392,3104647423,NL -3104647424,3104647575,GB +3104647424,3104647559,GB +3104647560,3104647567,DK +3104647568,3104647575,BE 3104647576,3104647583,SA 3104647584,3104647615,PL 3104647616,3104647647,IT 3104647648,3104647679,NL -3104647680,3104647839,GB +3104647680,3104647815,GB +3104647816,3104647823,DK +3104647824,3104647839,BE 3104647840,3104647871,PL 3104647872,3104647903,IT 3104647904,3104647935,NL -3104647936,3104648095,GB +3104647936,3104648071,GB +3104648072,3104648079,DK +3104648080,3104648095,BE 3104648096,3104648127,PL 3104648128,3104648159,IT 3104648160,3104648191,NL @@ -101282,13 +96120,17 @@ 3104658432,3104659455,JO 3104659456,3104660479,LU 3104660480,3104661503,NO -3104661504,3104661727,SE +3104661504,3104661711,SE +3104661712,3104661727,NO 3104661728,3104661759,PL -3104661760,3104661983,SE +3104661760,3104661967,SE +3104661968,3104661983,NO 3104661984,3104662015,PL -3104662016,3104662239,SE +3104662016,3104662223,SE +3104662224,3104662239,NO 3104662240,3104662271,PL -3104662272,3104662495,SE +3104662272,3104662479,SE +3104662480,3104662495,NO 3104662496,3104662527,PL 3104662528,3104663551,FR 3104663552,3104665599,GB @@ -101300,7 +96142,7 @@ 3104673792,3104674815,PL 3104674816,3104675839,DE 3104675840,3104676863,LV -3104676864,3104677887,DE +3104676864,3104677887,CZ 3104677888,3104678911,RU 3104678912,3104679935,IT 3104679936,3104681983,PL @@ -101451,9 +96293,7 @@ 3104830464,3104831135,DE 3104831136,3104831167,GB 3104831168,3104831199,YE -3104831200,3104831359,DE -3104831360,3104831360,TR -3104831361,3104831391,DE +3104831200,3104831391,DE 3104831392,3104831423,AT 3104831424,3104831455,DE 3104831456,3104831487,TR @@ -101661,7 +96501,7 @@ 3105045504,3105046527,IQ 3105046528,3105047039,NO 3105047040,3105047295,SE -3105047296,3105047551,NO +3105047296,3105047551,DK 3105047552,3105048575,ES 3105048576,3105049599,SK 3105049600,3105050623,KW @@ -101704,7 +96544,9 @@ 3105088512,3105089535,JO 3105089536,3105090559,DE 3105090560,3105090687,NL -3105090688,3105091583,BE +3105090688,3105090815,GB +3105090816,3105090943,NL +3105090944,3105091583,GB 3105091584,3105092607,FR 3105092608,3105093631,UA 3105093632,3105094655,SE @@ -101728,7 +96570,145 @@ 3105117184,3105118207,FR 3105118208,3105119231,BG 3105119232,3105120255,IM -3105120256,3105121279,EU +3105120256,3105121279,GB +3105121280,3105121791,EE +3105121792,3105122047,LV +3105122048,3105122303,LT +3105122304,3105123327,NO +3105123328,3105124351,ES +3105124352,3105125375,BY +3105125376,3105126399,ES +3105126400,3105127423,KG +3105127424,3105128447,KZ +3105128448,3105129471,GB +3105129472,3105130495,RU +3105130496,3105131519,FI +3105131520,3105132543,DK +3105132544,3105133567,CH +3105133568,3105134591,PL +3105134592,3105135615,SA +3105135616,3105136639,BG +3105136640,3105137663,IR +3105137664,3105138687,GB +3105138688,3105139711,NO +3105139712,3105140735,PL +3105140736,3105142783,RU +3105142784,3105143807,NL +3105143808,3105144831,DE +3105144832,3105145855,ES +3105145856,3105146879,CZ +3105146880,3105147903,CH +3105147904,3105148927,DK +3105148928,3105149951,CH +3105149952,3105150975,CY +3105150976,3105151999,UA +3105152000,3105153023,NL +3105153024,3105154047,RU +3105154048,3105156095,DE +3105156096,3105157119,AT +3105157120,3105158143,DK +3105158144,3105159167,NO +3105159168,3105161215,GB +3105161216,3105162239,FI +3105162240,3105163263,TR +3105163264,3105164287,IL +3105164288,3105165311,GB +3105165312,3105166335,IS +3105166336,3105167359,GB +3105167360,3105168383,IT +3105168384,3105169407,DE +3105169408,3105170431,ES +3105170432,3105171455,PL +3105171456,3105172479,DK +3105172480,3105173503,ES +3105173504,3105174527,FR +3105174528,3105177599,NL +3105177600,3105178623,RU +3105178624,3105179647,IR +3105179648,3105180671,IT +3105180672,3105181695,IR +3105181696,3105182719,FR +3105182720,3105183743,PL +3105183744,3105184767,SE +3105184768,3105185791,RO +3105185792,3105186815,HR +3105186816,3105187839,DE +3105187840,3105188863,FR +3105188864,3105189887,GB +3105189888,3105190911,FR +3105190912,3105191935,SM +3105191936,3105192959,PS +3105192960,3105193983,DE +3105193984,3105195007,FR +3105195008,3105196031,GB +3105196032,3105197055,IQ +3105197056,3105198079,RU +3105198080,3105199103,SE +3105199104,3105200127,PL +3105200128,3105201151,FR +3105201152,3105202175,RU +3105202176,3105203199,CZ +3105203200,3105204223,DE +3105204224,3105205247,NL +3105205248,3105206271,IT +3105206272,3105207295,UA +3105207296,3105208319,RO +3105208320,3105210367,NL +3105210368,3105211391,FR +3105211392,3105212415,CZ +3105212416,3105213439,NL +3105213440,3105214463,TR +3105214464,3105215487,GB +3105215488,3105216511,FR +3105216512,3105217535,GB +3105217536,3105218559,CZ +3105218560,3105219583,DE +3105219584,3105220607,FR +3105220608,3105221631,DK +3105221632,3105222655,AT +3105222656,3105223679,NL +3105223680,3105224703,DE +3105224704,3105225727,IT +3105225728,3105226751,AM +3105226752,3105227775,RO +3105227776,3105228799,NL +3105228800,3105229823,PL +3105229824,3105230847,NL +3105230848,3105231871,UA +3105231872,3105232895,AT +3105232896,3105233919,RU +3105233920,3105234943,IR +3105234944,3105235967,LB +3105235968,3105236991,IT +3105236992,3105238015,GB +3105238016,3105239039,DE +3105239040,3105240063,FR +3105240064,3105240319,CH +3105240320,3105240383,IS +3105240384,3105240446,CH +3105240447,3105240575,IS +3105240576,3105241087,CH +3105241088,3105242111,TR +3105242112,3105243135,RU +3105243136,3105244159,KZ +3105244160,3105245183,DE +3105245184,3105246207,DK +3105246208,3105248255,GB +3105248256,3105249279,IT +3105249280,3105250303,RS +3105250304,3105251327,ES +3105251328,3105252351,CZ +3105252352,3105253375,TR +3105253376,3105254399,CH +3105254400,3105255423,FR +3105255424,3105256447,PL +3105256448,3105257471,FR +3105257472,3105258495,NO +3105258496,3105259519,CZ +3105259520,3105260543,FR +3105260544,3105261567,FI +3105261568,3105262591,PL +3105262592,3105263615,DE 3120562176,3120594943,CO 3120594944,3120599039,AR 3120599040,3120601087,EC @@ -101759,6 +96739,7 @@ 3120840704,3120857087,AR 3120857088,3120922623,EC 3120922624,3120930815,PA +3120930816,3120934911,CR 3120934912,3120949247,AR 3120949248,3120951295,CL 3120951296,3120955391,AR @@ -101800,12 +96781,12 @@ 3122734592,3122735103,AR 3122735104,3122735615,US 3122735616,3122737407,AR -3122737408,3122737663,US -3122737664,3122737919,AR -3122737920,3122738431,US +3122737408,3122738431,US 3122738432,3122739199,AR 3122739200,3122739455,US -3122739456,3122741247,AR +3122739456,3122740479,AR +3122740480,3122740735,US +3122740736,3122741247,AR 3122741248,3122757631,DO 3122757632,3122774015,EC 3122774016,3122790399,AR @@ -101946,9 +96927,7 @@ 3156759432,3156759432,GB 3156759433,3156791439,DE 3156791440,3156791455,NL -3156791456,3156793751,DE -3156793752,3156793759,IT -3156793760,3156800287,DE +3156791456,3156800287,DE 3156800288,3156800295,IT 3156800296,3156803583,DE 3156803584,3156869119,TR @@ -102033,7 +97012,9 @@ 3158395712,3158395743,DE 3158395744,3158396287,AT 3158396288,3158396327,DE -3158396328,3158396927,AT +3158396328,3158396879,AT +3158396880,3158396895,DE +3158396896,3158396927,AT 3158396928,3158398975,IT 3158398976,3158401023,ES 3158401024,3158403071,GB @@ -102471,9 +97452,19 @@ 3162365952,3162374143,PL 3162374144,3162382335,BG 3162382336,3162390527,RU -3162390528,3162392959,SE -3162392960,3162393087,SE -3162393088,3162394623,SE +3162390528,3162391807,SE +3162391808,3162391920,SE +3162391921,3162391934,SE +3162391935,3162392063,SE +3162392064,3162392959,SE +3162392960,3162393114,SE +3162393115,3162393115,SE +3162393116,3162393200,SE +3162393201,3162393343,SE +3162393344,3162393456,SE +3162393457,3162393470,SE +3162393471,3162393599,SE +3162393600,3162394623,SE 3162394624,3162396671,SE 3162396672,3162398719,SE 3162398720,3162406911,BE @@ -102637,125 +97628,15 @@ 3163162432,3163162463,CY 3163162464,3163162559,DE 3163162560,3163162623,US -3163162624,3163163135,DE -3163163136,3163163136,KZ -3163163137,3163163145,DE -3163163146,3163163148,NL -3163163149,3163163149,HU -3163163150,3163163151,TR -3163163152,3163163152,US -3163163153,3163163155,DE -3163163156,3163163156,RU -3163163157,3163163159,DE -3163163160,3163163160,SE -3163163161,3163163172,DE -3163163173,3163163173,RU -3163163174,3163163174,IL -3163163175,3163163175,TR -3163163176,3163163176,DE -3163163177,3163163177,PK -3163163178,3163163178,IN -3163163179,3163163179,US -3163163180,3163163180,MX -3163163181,3163163181,DE -3163163182,3163163182,HR -3163163183,3163163183,NL -3163163184,3163163184,IT -3163163185,3163163187,DE -3163163188,3163163189,MX -3163163190,3163163197,DE -3163163198,3163163198,CZ -3163163199,3163163239,DE -3163163240,3163163240,SA -3163163241,3163163241,AZ -3163163242,3163163250,DE -3163163251,3163163251,ZA -3163163252,3163163252,SA -3163163253,3163163253,DE -3163163254,3163163254,ES -3163163255,3163163255,IT -3163163256,3163163258,DE -3163163259,3163163261,CZ -3163163262,3163163270,DE -3163163271,3163163271,EG -3163163272,3163163272,MD -3163163273,3163163273,IT -3163163274,3163163274,LT -3163163275,3163163277,DE -3163163278,3163163278,LK -3163163279,3163163279,DE -3163163280,3163163280,PK -3163163281,3163163286,DE -3163163287,3163163287,RU -3163163288,3163163293,DE -3163163294,3163163294,AL -3163163295,3163163296,DE -3163163297,3163163298,IT -3163163299,3163163304,DE -3163163305,3163163305,TR -3163163306,3163163307,DE -3163163308,3163163308,AL -3163163309,3163163309,DE -3163163310,3163163310,US -3163163311,3163163312,DE -3163163313,3163163313,IN -3163163314,3163163323,DE -3163163324,3163163324,IN -3163163325,3163163330,DE -3163163331,3163163331,UG -3163163332,3163163332,LT -3163163333,3163163333,DE -3163163334,3163163334,US -3163163335,3163163336,DE -3163163337,3163163337,NL -3163163338,3163163338,TR -3163163339,3163163340,DE -3163163341,3163163341,BR -3163163342,3163163342,DE -3163163343,3163163343,IR -3163163344,3163163345,DE -3163163346,3163163347,CA -3163163348,3163163348,DE -3163163349,3163163349,BR -3163163350,3163163350,DE -3163163351,3163163351,RU -3163163352,3163163352,DE -3163163353,3163163353,BR -3163163354,3163163356,DE -3163163357,3163163357,HK -3163163358,3163163358,DE -3163163359,3163163359,BR -3163163360,3163163361,DE -3163163362,3163163362,BR -3163163363,3163163363,MD -3163163364,3163163365,DK -3163163366,3163163366,US -3163163367,3163163368,DE -3163163369,3163163369,ES -3163163370,3163163371,PE -3163163372,3163163374,DE -3163163375,3163163375,BR -3163163376,3163163376,DE -3163163377,3163163378,NL -3163163379,3163163379,PE -3163163380,3163163382,DE -3163163383,3163163383,UA -3163163384,3163163385,DE -3163163386,3163163386,MD -3163163387,3163163387,DE -3163163388,3163163388,PE -3163163389,3163163389,BG -3163163390,3163163390,LK -3163163391,3163163647,DE -3163163648,3163163679,DK +3163162624,3163163679,DE 3163163680,3163163711,RU -3163163712,3163163743,BR +3163163712,3163163743,DE 3163163744,3163163807,US 3163163808,3163163839,DE 3163163840,3163163871,PL 3163163872,3163163903,DE 3163163904,3163163935,GR -3163163936,3163163967,BR +3163163936,3163163967,DE 3163163968,3163163999,US 3163164000,3163164063,DE 3163164064,3163164095,AM @@ -102781,7 +97662,7 @@ 3163165696,3163165727,US 3163165728,3163165759,RU 3163165760,3163165791,PL -3163165792,3163165823,RU +3163165792,3163165823,DE 3163165824,3163165855,BR 3163165856,3163165887,DE 3163165888,3163165919,AR @@ -102806,68 +97687,7 @@ 3163166592,3163166623,IN 3163166624,3163166687,DE 3163166688,3163166719,RU -3163166720,3163166986,DE -3163166987,3163166987,CH -3163166988,3163166988,RU -3163166989,3163166989,UA -3163166990,3163166990,AE -3163166991,3163166991,US -3163166992,3163166992,DE -3163166993,3163166993,US -3163166994,3163166994,TR -3163166995,3163166995,CH -3163166996,3163166997,UA -3163166998,3163167003,DE -3163167004,3163167004,IR -3163167005,3163167007,UA -3163167008,3163167103,DE -3163167104,3163167107,AE -3163167108,3163167123,BR -3163167124,3163167375,DE -3163167376,3163167376,IN -3163167377,3163167377,RU -3163167378,3163167380,DE -3163167381,3163167381,CH -3163167382,3163167382,DE -3163167383,3163167383,IN -3163167384,3163167384,TR -3163167385,3163167385,RU -3163167386,3163167391,DE -3163167392,3163167392,NL -3163167393,3163167393,DE -3163167394,3163167394,CA -3163167395,3163167396,DE -3163167397,3163167397,NL -3163167398,3163167399,CA -3163167400,3163167401,US -3163167402,3163167403,BD -3163167404,3163167404,GR -3163167405,3163167405,NL -3163167406,3163167406,CH -3163167407,3163167426,DE -3163167427,3163167427,BD -3163167428,3163167431,DE -3163167432,3163167432,GR -3163167433,3163167433,IN -3163167434,3163167434,DE -3163167435,3163167435,TR -3163167436,3163167438,DE -3163167439,3163167440,IN -3163167441,3163167441,DE -3163167442,3163167442,BD -3163167443,3163167443,RU -3163167444,3163167445,DE -3163167446,3163167446,TR -3163167447,3163167453,DE -3163167454,3163167454,TR -3163167455,3163167456,DE -3163167457,3163167457,IN -3163167458,3163167458,NL -3163167459,3163167463,DE -3163167464,3163167465,NL -3163167466,3163167467,HR -3163167468,3163167469,IN -3163167470,3163167743,DE +3163166720,3163167743,DE 3163167744,3163167775,RU 3163167776,3163167807,DE 3163167808,3163167839,US @@ -102875,11 +97695,10 @@ 3163167904,3163167935,UA 3163167936,3163167967,DE 3163167968,3163167999,TR -3163168000,3163168031,BR +3163168000,3163168031,DE 3163168032,3163168095,RU 3163168096,3163168127,TR -3163168128,3163168159,DE -3163168160,3163168191,BR +3163168128,3163168191,DE 3163168192,3163168223,AT 3163168224,3163168255,DE 3163168256,3163168287,US @@ -102931,7 +97750,8 @@ 3163171968,3163171999,US 3163172000,3163172031,DE 3163172032,3163172063,LT -3163172064,3163172127,BR +3163172064,3163172095,BR +3163172096,3163172127,DE 3163172128,3163172159,US 3163172160,3163172255,DE 3163172256,3163172287,US @@ -102949,13 +97769,12 @@ 3163172704,3163172767,DE 3163172768,3163172799,US 3163172800,3163172831,RU -3163172832,3163172863,BR -3163172864,3163173951,DE +3163172832,3163173951,DE 3163173952,3163173983,IN 3163173984,3163174015,GB 3163174016,3163174047,RU 3163174048,3163174079,DK -3163174080,3163174111,BR +3163174080,3163174111,DE 3163174112,3163174143,FR 3163174144,3163174175,BD 3163174176,3163174207,DE @@ -102997,614 +97816,19 @@ 3163176544,3163176575,UG 3163176576,3163176607,GR 3163176608,3163176671,DE -3163176672,3163176735,BR -3163176736,3163176767,DE +3163176672,3163176703,BR +3163176704,3163176767,DE 3163176768,3163176799,PL 3163176800,3163176831,EG -3163176832,3163176895,BR +3163176832,3163176863,DE +3163176864,3163176895,BR 3163176896,3163176927,SE 3163176928,3163176959,NL -3163176960,3163177279,DE -3163177280,3163177280,SE -3163177281,3163177281,BO -3163177282,3163177283,DE -3163177284,3163177286,BR -3163177287,3163177289,UA -3163177290,3163177290,DE -3163177291,3163177293,EE -3163177294,3163177296,DE -3163177297,3163177298,TR -3163177299,3163177299,SI -3163177300,3163177301,DE -3163177302,3163177304,BR -3163177305,3163177307,DE -3163177308,3163177309,MA -3163177310,3163177311,BR -3163177312,3163177805,DE -3163177806,3163177806,IN -3163177807,3163177808,KW -3163177809,3163177809,DE -3163177810,3163177810,IN -3163177811,3163177812,DE -3163177813,3163177813,IN -3163177814,3163177817,DE -3163177818,3163177818,IN -3163177819,3163180671,DE -3163180672,3163180673,DZ -3163180674,3163180677,DE -3163180678,3163180678,PT -3163180679,3163180679,BD -3163180680,3163180691,TR -3163180692,3163180693,DE -3163180694,3163180694,ES -3163180695,3163180695,DE -3163180696,3163180696,CA -3163180697,3163180698,DE -3163180699,3163180699,US -3163180700,3163180700,ES -3163180701,3163180702,TR -3163180703,3163180707,DE -3163180708,3163180708,VE -3163180709,3163180709,TR -3163180710,3163180712,DE -3163180713,3163180713,BR -3163180714,3163180714,GR -3163180715,3163180716,DE -3163180717,3163180717,AE -3163180718,3163180718,DE -3163180719,3163180719,ES -3163180720,3163180720,DE -3163180721,3163180721,NO -3163180722,3163180724,TR -3163180725,3163180725,RO -3163180726,3163180727,BR -3163180728,3163180728,TR -3163180729,3163180729,GB -3163180730,3163180732,DE -3163180733,3163180734,TR -3163180735,3163180735,SG -3163180736,3163180767,DE -3163180768,3163180768,TR -3163180769,3163180769,DE -3163180770,3163180770,UA -3163180771,3163180772,DE -3163180773,3163180773,LT -3163180774,3163180775,RU -3163180776,3163180776,MD -3163180777,3163180777,IL -3163180778,3163180779,DE -3163180780,3163180780,SG -3163180781,3163180781,BD -3163180782,3163180782,SG -3163180783,3163180783,MD -3163180784,3163180786,US -3163180787,3163180787,DE -3163180788,3163180788,EG -3163180789,3163180789,DE -3163180790,3163180790,BR -3163180791,3163180791,MX -3163180792,3163180792,MD -3163180793,3163180793,GR -3163180794,3163180927,DE -3163180928,3163180928,PE -3163180929,3163180930,DE -3163180931,3163180931,EE -3163180932,3163180932,ES -3163180933,3163180933,CL -3163180934,3163180934,GR -3163180935,3163180935,CL -3163180936,3163180936,ES -3163180937,3163180937,AE -3163180938,3163180939,CZ -3163180940,3163180941,DE -3163180942,3163180942,CN -3163180943,3163180947,DE -3163180948,3163180948,CN -3163180949,3163180954,DE -3163180955,3163180955,UA -3163180956,3163180962,DE -3163180963,3163180963,IT -3163180964,3163180964,DZ -3163180965,3163180969,DE -3163180970,3163180971,TR -3163180972,3163180972,PE -3163180973,3163180973,DE -3163180974,3163180974,GR -3163180975,3163180975,DE -3163180976,3163180976,HU -3163180977,3163180986,DE -3163180987,3163180987,IN -3163180988,3163180988,TR -3163180989,3163180992,DE -3163180993,3163180993,US -3163180994,3163180994,DE -3163180995,3163180997,TW -3163180998,3163181001,DE -3163181002,3163181002,LK -3163181003,3163181006,DE -3163181007,3163181007,US -3163181008,3163181010,DE -3163181011,3163181011,HR -3163181012,3163181018,DE -3163181019,3163181019,EG -3163181020,3163181022,DE -3163181023,3163181023,BR -3163181024,3163181027,DE -3163181028,3163181028,TR -3163181029,3163181037,DE -3163181038,3163181038,EG -3163181039,3163181040,DE -3163181041,3163181041,GB -3163181042,3163181046,DE -3163181047,3163181047,TR -3163181048,3163181048,SE -3163181049,3163181049,DE -3163181050,3163181050,AU -3163181051,3163181052,DE -3163181053,3163181055,RU -3163181056,3163181702,DE -3163181703,3163181703,MD -3163181704,3163181704,US -3163181705,3163181706,DE -3163181707,3163181707,US -3163181708,3163181708,AR -3163181709,3163181728,DE -3163181729,3163181729,BR -3163181730,3163181730,DE -3163181731,3163181731,UA -3163181732,3163181732,DE -3163181733,3163181734,MD -3163181735,3163181735,DE -3163181736,3163181736,BD -3163181737,3163181738,DE -3163181739,3163181739,CA -3163181740,3163181740,RU -3163181741,3163181744,DE -3163181745,3163181745,BR -3163181746,3163181749,DE -3163181750,3163181750,MD -3163181751,3163181751,DE -3163181752,3163181753,MD -3163181754,3163181757,DE -3163181758,3163181758,PT -3163181759,3163181767,DE -3163181768,3163181768,AU -3163181769,3163181777,DE -3163181778,3163181778,AU -3163181779,3163181786,DE -3163181787,3163181787,BD -3163181788,3163181790,DE -3163181791,3163181791,PT -3163181792,3163181831,DE -3163181832,3163181833,SI -3163181834,3163181834,MY -3163181835,3163181839,DE -3163181840,3163181840,AE -3163181841,3163181841,GB -3163181842,3163181842,NL -3163181843,3163181843,CH -3163181844,3163181853,DE -3163181854,3163181855,TR -3163181856,3163181856,SI -3163181857,3163181857,DE -3163181858,3163181858,IN -3163181859,3163181861,DE -3163181862,3163181862,GB -3163181863,3163181863,DE -3163181864,3163181864,GR -3163181865,3163181865,IN -3163181866,3163181867,DE -3163181868,3163181869,IN -3163181870,3163181870,RU -3163181871,3163181871,IN -3163181872,3163181872,GR -3163181873,3163181873,RU -3163181874,3163181874,DE -3163181875,3163181875,TR -3163181876,3163181878,DE -3163181879,3163181879,US -3163181880,3163181882,CH -3163181883,3163181883,IN -3163181884,3163181885,DE -3163181886,3163181888,CY -3163181889,3163181892,DE -3163181893,3163181893,GB -3163181894,3163181894,BD -3163181895,3163181895,DE -3163181896,3163181896,IN -3163181897,3163181899,DE -3163181900,3163181900,HR -3163181901,3163181901,GR -3163181902,3163181903,DE -3163181904,3163181904,HR -3163181905,3163181905,US -3163181906,3163181908,BR -3163181909,3163181910,DE -3163181911,3163181912,CY -3163181913,3163181913,DE -3163181914,3163181914,BR -3163181915,3163181916,DE -3163181917,3163181917,CY -3163181918,3163181918,DE -3163181919,3163181919,BD -3163181920,3163181929,DE -3163181930,3163181930,IN -3163181931,3163181934,DE -3163181935,3163181935,UA -3163181936,3163181938,DE -3163181939,3163181939,GR -3163181940,3163181940,DE -3163181941,3163181941,RU -3163181942,3163181942,CN -3163181943,3163181943,US -3163181944,3163182414,DE -3163182415,3163182415,MA -3163182416,3163182419,DE -3163182420,3163182420,MA -3163182421,3163182525,DE -3163182526,3163182526,BG -3163182527,3163182559,DE -3163182560,3163182560,BG -3163182561,3163182561,DE -3163182562,3163182562,BG -3163182563,3163182563,DE -3163182564,3163182564,BG -3163182565,3163182565,DE -3163182566,3163182566,BG -3163182567,3163182567,DE -3163182568,3163182571,BG -3163182572,3163182574,DE -3163182575,3163182575,BG -3163182576,3163182590,RU -3163182591,3163184457,DE -3163184458,3163184458,PL -3163184459,3163184460,DE -3163184461,3163184461,US -3163184462,3163184462,DE -3163184463,3163184463,BD -3163184464,3163184469,DE -3163184470,3163184470,BD -3163184471,3163184471,DE -3163184472,3163184472,BE -3163184473,3163184476,DE -3163184477,3163184477,ME -3163184478,3163184478,DK -3163184479,3163184487,DE -3163184488,3163184488,MX -3163184489,3163184489,DE -3163184490,3163184490,US -3163184491,3163184496,DE -3163184497,3163184498,CZ -3163184499,3163184499,DE -3163184500,3163184500,BD -3163184501,3163184502,DE -3163184503,3163184503,RU -3163184504,3163184505,DE -3163184506,3163184506,PL -3163184507,3163184509,GR -3163184510,3163184551,DE -3163184552,3163184553,RU -3163184554,3163184555,DE -3163184556,3163184556,RU -3163184557,3163184557,DE -3163184558,3163184558,RU -3163184559,3163184569,DE -3163184570,3163184574,RU -3163184575,3163185099,DE -3163185100,3163185100,RU -3163185101,3163185112,DE -3163185113,3163185113,RU -3163185114,3163185116,DE -3163185117,3163185117,RU -3163185118,3163185122,DE -3163185123,3163185123,RU -3163185124,3163185136,DE -3163185137,3163185137,RU -3163185138,3163185144,DE -3163185145,3163185150,RU -3163185151,3163185166,DE -3163185167,3163185168,TN -3163185169,3163185170,DE -3163185171,3163185171,TN -3163185172,3163185182,DE -3163185183,3163185183,US -3163185184,3163185186,DE -3163185187,3163185187,MD -3163185188,3163185189,DE -3163185190,3163185190,LT -3163185191,3163185191,DE -3163185192,3163185193,LT -3163185194,3163185195,GR -3163185196,3163185196,CZ -3163185197,3163185225,DE -3163185226,3163185226,MA -3163185227,3163185266,DE -3163185267,3163185268,IN -3163185269,3163185307,DE -3163185308,3163185308,UA -3163185309,3163186002,DE -3163186003,3163186003,CA -3163186004,3163186033,DE -3163186034,3163186034,LT -3163186035,3163186064,DE -3163186065,3163186065,RU -3163186066,3163186098,DE -3163186099,3163186099,LT -3163186100,3163186102,DE -3163186103,3163186103,LT -3163186104,3163186534,DE +3163176960,3163186534,DE 3163186535,3163186535,FR 3163186536,3163186673,DE 3163186674,3163186674,FR -3163186675,3163187346,DE -3163187347,3163187347,AT -3163187348,3163188355,DE -3163188356,3163188356,BD -3163188357,3163188357,DE -3163188358,3163188358,GR -3163188359,3163188359,DE -3163188360,3163188360,VG -3163188361,3163188363,DE -3163188364,3163188364,RU -3163188365,3163188369,DE -3163188370,3163188370,NL -3163188371,3163188371,US -3163188372,3163188372,DE -3163188373,3163188374,US -3163188375,3163188380,DE -3163188381,3163188382,IT -3163188383,3163188384,GB -3163188385,3163188387,DE -3163188388,3163188388,GB -3163188389,3163188391,DE -3163188392,3163188392,LT -3163188393,3163188394,DE -3163188395,3163188395,LT -3163188396,3163188397,DE -3163188398,3163188400,GB -3163188401,3163188401,BD -3163188402,3163188402,BZ -3163188403,3163188405,NL -3163188406,3163188406,DE -3163188407,3163188407,RU -3163188408,3163188408,TR -3163188409,3163188410,NL -3163188411,3163188744,DE -3163188745,3163188745,BD -3163188746,3163188751,DE -3163188752,3163188752,IT -3163188753,3163188754,DE -3163188755,3163188755,ME -3163188756,3163188801,DE -3163188802,3163188802,US -3163188803,3163188804,DE -3163188805,3163188806,AR -3163188807,3163188807,DE -3163188808,3163188808,TR -3163188809,3163188809,DE -3163188810,3163188810,TR -3163188811,3163188813,DE -3163188814,3163188815,GR -3163188816,3163188831,DE -3163188832,3163188832,UA -3163188833,3163188834,DE -3163188835,3163188835,GB -3163188836,3163188847,DE -3163188848,3163188848,FR -3163188849,3163188849,FI -3163188850,3163188851,RU -3163188852,3163188852,GR -3163188853,3163188854,DE -3163188855,3163188855,PL -3163188856,3163188856,US -3163188857,3163188857,DE -3163188858,3163188858,CO -3163188859,3163188859,DE -3163188860,3163188860,AE -3163188861,3163188861,US -3163188862,3163188862,IR -3163188863,3163188930,DE -3163188931,3163188931,TR -3163188932,3163188932,NL -3163188933,3163188934,DE -3163188935,3163188935,MA -3163188936,3163188936,AE -3163188937,3163188937,GR -3163188938,3163188938,TR -3163188939,3163189062,DE -3163189063,3163189065,GB -3163189066,3163189071,DE -3163189072,3163189072,VN -3163189073,3163189074,DE -3163189075,3163189076,RU -3163189077,3163189082,DE -3163189083,3163189083,HR -3163189084,3163189086,DE -3163189087,3163189087,TR -3163189088,3163189088,DE -3163189089,3163189089,AE -3163189090,3163189090,KR -3163189091,3163189092,DE -3163189093,3163189094,UA -3163189095,3163189096,DE -3163189097,3163189099,GB -3163189100,3163189100,UA -3163189101,3163189103,DE -3163189104,3163189104,CZ -3163189105,3163189106,DE -3163189107,3163189107,UA -3163189108,3163189108,DE -3163189109,3163189109,IN -3163189110,3163189110,TR -3163189111,3163189111,GB -3163189112,3163189112,BR -3163189113,3163189116,DE -3163189117,3163189117,PE -3163189118,3163189994,DE -3163189995,3163189999,IN -3163190000,3163190532,DE -3163190533,3163190533,TR -3163190534,3163190535,US -3163190536,3163190553,DE -3163190554,3163190554,HU -3163190555,3163190563,DE -3163190564,3163190564,US -3163190565,3163190571,DE -3163190572,3163190572,RU -3163190573,3163190573,US -3163190574,3163190575,DE -3163190576,3163190576,RU -3163190577,3163190586,DE -3163190587,3163190588,US -3163190589,3163190601,DE -3163190602,3163190602,US -3163190603,3163190613,DE -3163190614,3163190614,LT -3163190615,3163190615,DE -3163190616,3163190616,US -3163190617,3163190619,DE -3163190620,3163190620,LT -3163190621,3163190621,DE -3163190622,3163190626,LT -3163190627,3163190632,DE -3163190633,3163190637,LT -3163190638,3163191246,DE -3163191247,3163191247,BR -3163191248,3163191248,IT -3163191249,3163191250,DE -3163191251,3163191252,GB -3163191253,3163191253,BR -3163191254,3163191256,DE -3163191257,3163191257,TR -3163191258,3163191258,RU -3163191259,3163191259,DE -3163191260,3163191262,EE -3163191263,3163191263,DE -3163191264,3163191264,LT -3163191265,3163191266,BG -3163191267,3163191267,NL -3163191268,3163191268,US -3163191269,3163191269,DE -3163191270,3163191272,NL -3163191273,3163191273,IT -3163191274,3163191274,DE -3163191275,3163191275,HK -3163191276,3163191276,FI -3163191277,3163191278,DE -3163191279,3163191279,IN -3163191280,3163191280,NL -3163191281,3163191281,DE -3163191282,3163191282,BR -3163191283,3163191285,NL -3163191286,3163191288,DE -3163191289,3163191293,IN -3163191294,3163191432,DE -3163191433,3163191433,IT -3163191434,3163191440,DE -3163191441,3163191442,US -3163191443,3163191448,DE -3163191449,3163191449,BZ -3163191450,3163191450,RU -3163191451,3163191451,IT -3163191452,3163191454,TR -3163191455,3163191461,DE -3163191462,3163191464,NL -3163191465,3163191465,CN -3163191466,3163191471,DE -3163191472,3163191472,NL -3163191473,3163191473,UA -3163191474,3163191476,DE -3163191477,3163191477,HK -3163191478,3163191478,PK -3163191479,3163192193,DE -3163192194,3163192194,BR -3163192195,3163192196,DE -3163192197,3163192197,UA -3163192198,3163192200,DE -3163192201,3163192202,TR -3163192203,3163192207,DE -3163192208,3163192208,TR -3163192209,3163192210,MX -3163192211,3163192211,DE -3163192212,3163192213,UA -3163192214,3163192214,TR -3163192215,3163192216,DE -3163192217,3163192218,GR -3163192219,3163192219,TR -3163192220,3163192222,US -3163192223,3163192224,DE -3163192225,3163192225,TH -3163192226,3163192227,DE -3163192228,3163192228,US -3163192229,3163192229,DE -3163192230,3163192230,TR -3163192231,3163192231,BR -3163192232,3163192232,DE -3163192233,3163192233,US -3163192234,3163192234,BR -3163192235,3163192235,DE -3163192236,3163192236,BR -3163192237,3163192237,VE -3163192238,3163192241,DE -3163192242,3163192242,RU -3163192243,3163192249,DE -3163192250,3163192250,RU -3163192251,3163192251,DE -3163192252,3163192255,TR -3163192256,3163192840,DE -3163192841,3163192842,CZ -3163192843,3163192846,DE -3163192847,3163192847,CZ -3163192848,3163192848,KW -3163192849,3163192850,DE -3163192851,3163192851,NL -3163192852,3163192861,DE -3163192862,3163192863,US -3163192864,3163192864,DE -3163192865,3163192865,US -3163192866,3163192866,DE -3163192867,3163192868,RO -3163192869,3163192869,CH -3163192870,3163192870,RO -3163192871,3163192872,US -3163192873,3163192874,DE -3163192875,3163192876,BD -3163192877,3163192877,RU -3163192878,3163192878,KW -3163192879,3163193216,DE -3163193217,3163193217,GB -3163193218,3163193218,DE -3163193219,3163193219,GB -3163193220,3163193223,DE -3163193224,3163193224,BR -3163193225,3163193227,DE -3163193228,3163193228,UA -3163193229,3163193236,DE -3163193237,3163193237,RU -3163193238,3163193241,DE -3163193242,3163193243,TR -3163193244,3163193246,DE -3163193247,3163193247,KR -3163193248,3163193250,DE -3163193251,3163193251,GB -3163193252,3163193259,DE -3163193260,3163193260,TR -3163193261,3163193261,UA -3163193262,3163193262,HU -3163193263,3163193263,DE -3163193264,3163193264,UA -3163193265,3163193270,DE -3163193271,3163193272,AT -3163193273,3163193278,DE -3163193279,3163193279,GR -3163193280,3163193281,DE -3163193282,3163193283,UA -3163193284,3163193286,DE -3163193287,3163193287,LK -3163193288,3163193319,DE -3163193320,3163193320,HR -3163193321,3163193342,DE -3163193343,3163193343,SA +3163186675,3163193343,DE 3163193344,3163226111,MD 3163226112,3163258879,SA 3163258880,3163291647,SY @@ -103668,13 +97892,14 @@ 3164947008,3164947039,FR 3164947040,3164947043,ES 3164947044,3164947047,GB -3164947048,3164947063,FR +3164947048,3164947055,FR +3164947056,3164947063,GB 3164947064,3164947067,NL 3164947068,3164947071,IT 3164947072,3164947519,FR 3164947520,3164947551,ES -3164947552,3164947583,DE -3164947584,3164947587,FR +3164947552,3164947567,DE +3164947568,3164947587,FR 3164947588,3164947591,DE 3164947592,3164947599,GB 3164947600,3164947619,FR @@ -103736,16 +97961,15 @@ 3164949232,3164949247,BE 3164949248,3164949271,FR 3164949272,3164949275,GB -3164949276,3164949279,CH +3164949276,3164949279,FR 3164949280,3164949295,BE -3164949296,3164949331,FR +3164949296,3164949327,FR +3164949328,3164949331,DE 3164949332,3164949335,PL 3164949336,3164949339,FR 3164949340,3164949343,GB -3164949344,3164949363,FR -3164949364,3164949367,DE -3164949368,3164949371,NL -3164949372,3164949375,GB +3164949344,3164949367,FR +3164949368,3164949375,GB 3164949376,3164949391,FR 3164949392,3164949395,PL 3164949396,3164949439,FR @@ -103788,17 +98012,19 @@ 3164950688,3164950707,PL 3164950708,3164950711,FR 3164950712,3164950715,FI -3164950716,3164950723,GB -3164950724,3164950735,FR +3164950716,3164950719,GB +3164950720,3164950735,FR 3164950736,3164950751,ES 3164950752,3164950759,GB -3164950760,3164950783,ES +3164950760,3164950767,IT +3164950768,3164950783,ES 3164950784,3164951039,FR -3164951040,3164951231,DE +3164951040,3164951167,DE +3164951168,3164951231,FR 3164951232,3164951239,GB 3164951240,3164951263,FR 3164951264,3164951295,DE -3164951296,3164951423,GB +3164951296,3164951423,FR 3164951424,3164951455,ES 3164951456,3164951471,PL 3164951472,3164951519,FR @@ -103830,8 +98056,13 @@ 3164952192,3164952207,ES 3164952208,3164952215,FR 3164952216,3164952219,NL -3164952220,3164952223,FR -3164952224,3164952239,GB +3164952220,3164952224,FR +3164952225,3164952231,GB +3164952232,3164952233,FR +3164952234,3164952235,GB +3164952236,3164952236,FR +3164952237,3164952237,GB +3164952238,3164952239,FR 3164952240,3164952243,DE 3164952244,3164952247,BE 3164952248,3164952255,PT @@ -103901,20 +98132,17 @@ 3164954276,3164954279,GB 3164954280,3164954287,FR 3164954288,3164954303,NL -3164954304,3164954367,DE -3164954368,3164954371,FR +3164954304,3164954371,FR 3164954372,3164954375,DE 3164954376,3164954383,FI -3164954384,3164954399,FR -3164954400,3164954407,PL -3164954408,3164954431,FR +3164954384,3164954431,FR 3164954432,3164954439,ES 3164954440,3164954443,NL 3164954444,3164954447,PL -3164954448,3164954479,FR -3164954480,3164954495,GB +3164954448,3164954495,FR 3164954496,3164954499,PL -3164954500,3164954507,FR +3164954500,3164954503,FR +3164954504,3164954507,FI 3164954508,3164954511,ES 3164954512,3164954515,FR 3164954516,3164954519,IT @@ -103931,7 +98159,8 @@ 3164956384,3164956399,DE 3164956400,3164956479,FR 3164956480,3164956543,GB -3164956544,3164958847,FR +3164956544,3164958719,FR +3164958720,3164958847,GB 3164958848,3164958879,IE 3164958880,3164958911,FR 3164958912,3164958927,CH @@ -103944,8 +98173,8 @@ 3164959008,3164959023,PL 3164959024,3164959039,FR 3164959040,3164959135,DE -3164959136,3164959231,ES -3164959232,3164959247,FR +3164959136,3164959167,ES +3164959168,3164959247,FR 3164959248,3164959255,ES 3164959256,3164959263,PL 3164959264,3164959295,NL @@ -103971,8 +98200,7 @@ 3164959664,3164959671,BE 3164959672,3164959763,FR 3164959764,3164959767,PL -3164959768,3164959775,FR -3164959776,3164959807,PL +3164959768,3164959807,FR 3164959808,3164959823,IE 3164959824,3164959839,FI 3164959840,3164959855,BE @@ -104011,25 +98239,24 @@ 3164960444,3164960447,BE 3164960448,3164960463,PL 3164960464,3164960467,NL -3164960468,3164960471,GB -3164960472,3164960479,FR +3164960468,3164960479,FR 3164960480,3164960495,GB 3164960496,3164960507,FR 3164960508,3164960511,CH -3164960512,3164960575,PL +3164960512,3164960575,FR 3164960576,3164960591,DE -3164960592,3164960599,FR -3164960600,3164960607,DE +3164960592,3164960607,FR 3164960608,3164960623,GB 3164960624,3164960627,FR -3164960628,3164960639,PL +3164960628,3164960631,PL +3164960632,3164960639,GB 3164960640,3164960643,LT 3164960644,3164960647,FR 3164960648,3164960651,CH 3164960652,3164960655,IT 3164960656,3164960671,FR 3164960672,3164960675,ES -3164960676,3164960679,GB +3164960676,3164960679,BE 3164960680,3164960687,FR 3164960688,3164960695,PL 3164960696,3164960703,ES @@ -104039,9 +98266,7 @@ 3164960724,3164960727,FR 3164960728,3164960735,PL 3164960736,3164960751,FR -3164960752,3164960767,ES -3164960768,3164960799,GB -3164960800,3164960831,ES +3164960752,3164960831,ES 3164960832,3164960839,IE 3164960840,3164960843,FR 3164960844,3164960847,BE @@ -104053,15 +98278,12 @@ 3164960892,3164960895,GB 3164960896,3164960911,FR 3164960912,3164960919,PL -3164960920,3164960927,FR -3164960928,3164960931,ES -3164960932,3164960939,FR +3164960920,3164960939,FR 3164960940,3164960943,DE 3164960944,3164960959,PL 3164960960,3164960963,ES -3164960964,3164960967,GB -3164960968,3164960975,PL -3164960976,3164960991,GB +3164960964,3164960967,FR +3164960968,3164960991,GB 3164960992,3164961003,FR 3164961004,3164961007,DE 3164961008,3164961023,PL @@ -104078,25 +98300,25 @@ 3164961388,3164961395,FR 3164961396,3164961399,PL 3164961400,3164961403,FR -3164961404,3164961407,ES +3164961404,3164961407,PL 3164961408,3164961503,FR 3164961504,3164961519,GB 3164961520,3164961527,IT 3164961528,3164961535,PL 3164961536,3164961551,ES -3164961552,3164961559,GB +3164961552,3164961555,NL +3164961556,3164961559,ES 3164961560,3164961563,DE -3164961564,3164961583,FR -3164961584,3164961599,DE -3164961600,3164961631,FR +3164961564,3164961631,FR 3164961632,3164961647,IT 3164961648,3164961655,NL -3164961656,3164961663,ES +3164961656,3164961663,FR 3164961664,3164961695,DE 3164961696,3164961727,GB 3164961728,3164961739,DE 3164961740,3164961743,GB -3164961744,3164961763,PL +3164961744,3164961759,FR +3164961760,3164961763,PL 3164961764,3164961767,IT 3164961768,3164961775,BE 3164961776,3164961783,PL @@ -104115,8 +98337,7 @@ 3164961904,3164961951,FR 3164961952,3164961967,ES 3164961968,3164961971,IE -3164961972,3164961975,ES -3164961976,3164961979,FR +3164961972,3164961979,FR 3164961980,3164961983,CH 3164961984,3164961999,FR 3164962000,3164962007,BE @@ -104126,7 +98347,8 @@ 3164962032,3164962035,DE 3164962036,3164962079,FR 3164962080,3164962095,ES -3164962096,3164962143,FR +3164962096,3164962111,FR +3164962112,3164962143,IE 3164962144,3164962151,ES 3164962152,3164962159,DE 3164962160,3164962175,FR @@ -104139,7 +98361,7 @@ 3164962240,3164962247,PL 3164962248,3164962255,FR 3164962256,3164962259,BE -3164962260,3164962263,DE +3164962260,3164962263,IE 3164962264,3164962271,PT 3164962272,3164962279,GB 3164962280,3164962283,DE @@ -104204,7 +98426,8 @@ 3164967360,3164967375,FR 3164967376,3164967391,GB 3164967392,3164967423,IE -3164967424,3164967679,ES +3164967424,3164967551,FR +3164967552,3164967679,GB 3164967680,3164967935,IE 3164967936,3164967967,DE 3164967968,3164967971,FR @@ -104213,21 +98436,33 @@ 3164967984,3164967991,PL 3164967992,3164967999,PT 3164968000,3164968015,GB -3164968016,3164968031,FR -3164968032,3164968063,NL -3164968064,3164968831,FR +3164968016,3164968191,FR +3164968192,3164968223,IE +3164968224,3164968255,PL +3164968256,3164968271,DE +3164968272,3164968279,GB +3164968280,3164968283,PL +3164968284,3164968287,DE +3164968288,3164968319,FR +3164968320,3164968447,GB +3164968448,3164968455,ES +3164968456,3164968459,PT +3164968460,3164968471,IT +3164968472,3164968511,FR +3164968512,3164968543,BE +3164968544,3164968583,FR +3164968584,3164968587,DE +3164968588,3164968679,FR +3164968680,3164968703,PT +3164968704,3164968831,FR 3164968832,3164968835,PL 3164968836,3164968839,NL -3164968840,3164968843,ES -3164968844,3164968847,IT -3164968848,3164968851,GB -3164968852,3164968855,FR -3164968856,3164968859,IE -3164968860,3164968863,LT +3164968840,3164968847,FR +3164968848,3164968851,ES +3164968852,3164968863,FR 3164968864,3164968871,CH 3164968872,3164968895,IE -3164968896,3164968899,PT -3164968900,3164968903,CZ +3164968896,3164968903,FR 3164968904,3164968907,PL 3164968908,3164968911,GB 3164968912,3164968927,DE @@ -104240,8 +98475,7 @@ 3164969016,3164969019,NL 3164969020,3164969023,BE 3164969024,3164969027,GB -3164969028,3164969031,FR -3164969032,3164969035,GB +3164969028,3164969035,FR 3164969036,3164969039,PL 3164969040,3164969043,CH 3164969044,3164969047,PT @@ -104265,7 +98499,7 @@ 3164969200,3164969203,LT 3164969204,3164969207,ES 3164969208,3164969211,PL -3164969212,3164969215,DE +3164969212,3164969215,BE 3164969216,3164969503,FR 3164969504,3164969535,DE 3164969536,3164969543,FR @@ -104305,12 +98539,11 @@ 3164970292,3164970295,DE 3164970296,3164970299,ES 3164970300,3164970303,DE -3164970304,3164970335,ES -3164970336,3164970339,NL +3164970304,3164970339,NL 3164970340,3164970343,BE -3164970344,3164970347,FI +3164970344,3164970347,PL 3164970348,3164970351,GB -3164970352,3164970359,FR +3164970352,3164970359,PT 3164970360,3164970363,DE 3164970364,3164970367,ES 3164970368,3164970371,FR @@ -104323,10 +98556,7 @@ 3164970404,3164970407,CH 3164970408,3164970411,FR 3164970412,3164970415,GB -3164970416,3164970423,FR -3164970424,3164970427,IE -3164970428,3164970431,PT -3164970432,3164970463,FR +3164970416,3164970463,FR 3164970464,3164970495,GB 3164970496,3164970527,PL 3164970528,3164970543,NL @@ -104341,7 +98571,7 @@ 3164970624,3164970627,BE 3164970628,3164970631,DE 3164970632,3164970647,ES -3164970648,3164970651,GB +3164970648,3164970651,DE 3164970652,3164970655,FR 3164970656,3164970687,NL 3164970688,3164970691,GB @@ -104357,7 +98587,7 @@ 3164970840,3164970847,GB 3164970848,3164970851,IE 3164970852,3164970867,FR -3164970868,3164970871,NL +3164970868,3164970871,PL 3164970872,3164970875,BE 3164970876,3164970879,NL 3164970880,3164970883,FR @@ -104373,8 +98603,8 @@ 3164971008,3164971011,DE 3164971012,3164971015,IE 3164971016,3164971023,PL -3164971024,3164971071,FR -3164971072,3164971135,DE +3164971024,3164971103,FR +3164971104,3164971135,DE 3164971136,3164971263,IT 3164971264,3164971391,GB 3164971392,3164971455,DE @@ -104385,7 +98615,7 @@ 3164971472,3164971479,FR 3164971480,3164971483,FI 3164971484,3164971487,PL -3164971488,3164971503,ES +3164971488,3164971503,IT 3164971504,3164971511,PL 3164971512,3164971519,CZ 3164971520,3164971567,FR @@ -104406,17 +98636,15 @@ 3164971800,3164971803,NL 3164971804,3164971807,FR 3164971808,3164971903,BE -3164971904,3164971967,DE +3164971904,3164971967,FR 3164971968,3164971983,PT -3164971984,3164971991,ES -3164971992,3164971999,FR +3164971984,3164971999,FR 3164972000,3164972015,CH 3164972016,3164972019,GB 3164972020,3164972023,FR -3164972024,3164972027,IT +3164972024,3164972027,ES 3164972028,3164972031,CH -3164972032,3164972287,GB -3164972288,3164972319,FR +3164972032,3164972319,FR 3164972320,3164972351,DE 3164972352,3164972367,PL 3164972368,3164972375,NL @@ -104428,12 +98656,11 @@ 3164972408,3164972447,FR 3164972448,3164972463,PL 3164972464,3164972495,FR -3164972496,3164972511,DE +3164972496,3164972499,CH +3164972500,3164972511,DE 3164972512,3164972527,PL 3164972528,3164972531,DE -3164972532,3164972535,FR -3164972536,3164972539,NL -3164972540,3164972559,FR +3164972532,3164972559,FR 3164972560,3164972575,IT 3164972576,3164972579,CZ 3164972580,3164972583,GB @@ -104456,14 +98683,13 @@ 3164972784,3164972799,PL 3164972800,3164973183,FR 3164973184,3164973311,CZ -3164973312,3164973375,DE -3164973376,3164973391,FR +3164973312,3164973391,FR 3164973392,3164973399,DE 3164973400,3164973407,FR 3164973408,3164973415,GB 3164973416,3164973419,FR 3164973420,3164973423,ES -3164973424,3164973439,DE +3164973424,3164973439,FR 3164973440,3164973503,PL 3164973504,3164973511,FR 3164973512,3164973515,ES @@ -104492,25 +98718,40 @@ 3164973848,3164973855,DE 3164973856,3164973863,PL 3164973864,3164973867,FR -3164973868,3164973871,ES +3164973868,3164973871,GB 3164973872,3164973875,PL 3164973876,3164973879,GB -3164973880,3164973883,IT +3164973880,3164973883,PL 3164973884,3164973887,DE 3164973888,3164973911,FR 3164973912,3164973915,DE 3164973916,3164973935,FR 3164973936,3164973939,PL -3164973940,3164973943,BE +3164973940,3164973943,FR 3164973944,3164973951,PL -3164973952,3164974591,FR +3164973952,3164974079,FR +3164974080,3164974119,PT +3164974120,3164974127,FR +3164974128,3164974135,PT +3164974136,3164974139,PL +3164974140,3164974143,DE +3164974144,3164974159,FR +3164974160,3164974175,PT +3164974176,3164974183,NL +3164974184,3164974191,GB +3164974192,3164974335,FR +3164974336,3164974463,GB +3164974464,3164974495,FR +3164974496,3164974511,IE +3164974512,3164974591,FR 3164974592,3164974623,PL 3164974624,3164974643,FR 3164974644,3164974647,PL 3164974648,3164974651,PT -3164974652,3164974655,DE +3164974652,3164974655,ES 3164974656,3164974659,FR -3164974660,3164974667,GB +3164974660,3164974663,GB +3164974664,3164974667,CZ 3164974668,3164974671,LT 3164974672,3164974675,FR 3164974676,3164974679,PL @@ -104554,12 +98795,12 @@ 3164975652,3164975655,PL 3164975656,3164975663,FR 3164975664,3164975679,PL -3164975680,3164975687,NL -3164975688,3164975691,FR +3164975680,3164975691,FR 3164975692,3164975695,GB 3164975696,3164975699,PL 3164975700,3164975703,FR -3164975704,3164975719,PL +3164975704,3164975711,NL +3164975712,3164975719,PL 3164975720,3164975727,ES 3164975728,3164975735,FR 3164975736,3164975739,BE @@ -104569,12 +98810,14 @@ 3164975756,3164975759,ES 3164975760,3164975775,PL 3164975776,3164975807,FR -3164975808,3164975823,PL +3164975808,3164975815,PL +3164975816,3164975823,IT 3164975824,3164975843,GB 3164975844,3164975847,PL -3164975848,3164975855,FR +3164975848,3164975851,FR +3164975852,3164975855,PT 3164975856,3164975871,PL -3164975872,3164975935,FR +3164975872,3164975935,PT 3164975936,3164975939,ES 3164975940,3164975943,PT 3164975944,3164975947,PL @@ -104584,7 +98827,9 @@ 3164975984,3164975991,DE 3164975992,3164975995,FR 3164975996,3164975999,NL -3164976000,3164976023,PL +3164976000,3164976007,BE +3164976008,3164976015,PL +3164976016,3164976023,FR 3164976024,3164976031,ES 3164976032,3164976047,FR 3164976048,3164976063,PL @@ -104629,8 +98874,7 @@ 3164976448,3164976455,FR 3164976456,3164976459,LT 3164976460,3164976463,DE -3164976464,3164976479,ES -3164976480,3164976575,FR +3164976464,3164976575,FR 3164976576,3164976583,LT 3164976584,3164976591,IT 3164976592,3164976623,FR @@ -104644,16 +98888,12 @@ 3164976784,3164976799,CZ 3164976800,3164976831,FR 3164976832,3164976835,IT -3164976836,3164976839,ES +3164976836,3164976839,DE 3164976840,3164976847,FR 3164976848,3164976863,CH -3164976864,3164977151,FR -3164977152,3164977215,PL -3164977216,3164977407,FR +3164976864,3164977407,FR 3164977408,3164977415,NL -3164977416,3164977439,FR -3164977440,3164977455,PT -3164977456,3164977471,FR +3164977416,3164977471,FR 3164977472,3164977535,PT 3164977536,3164977599,FR 3164977600,3164977631,GB @@ -104682,7 +98922,7 @@ 3164978008,3164978015,FR 3164978016,3164978047,PT 3164978048,3164978063,FR -3164978064,3164978067,BE +3164978064,3164978067,ES 3164978068,3164978071,FR 3164978072,3164978079,ES 3164978080,3164978127,GB @@ -104707,7 +98947,7 @@ 3164978668,3164978671,FR 3164978672,3164978679,PT 3164978680,3164978687,PL -3164978688,3164978695,PT +3164978688,3164978695,FR 3164978696,3164978703,ES 3164978704,3164978719,BE 3164978720,3164978783,PT @@ -104716,7 +98956,8 @@ 3164978880,3164978951,FR 3164978952,3164978955,PL 3164978956,3164978975,FR -3164978976,3164978983,ES +3164978976,3164978979,FI +3164978980,3164978983,ES 3164978984,3164978991,CZ 3164978992,3164978999,PL 3164979000,3164979003,GB @@ -104729,10 +98970,8 @@ 3164979112,3164979119,PL 3164979120,3164979135,NL 3164979136,3164979151,FR -3164979152,3164979155,ES -3164979156,3164979167,FR -3164979168,3164979175,DE -3164979176,3164979183,FR +3164979152,3164979159,ES +3164979160,3164979183,FR 3164979184,3164979199,DE 3164979200,3164995583,FR 3164995584,3165061119,RU @@ -104785,18 +99024,20 @@ 3167594840,3167748095,NL 3167748096,3167781887,RO 3167781888,3167782399,A2 -3167782400,3167875071,RO -3167875072,3167879167,MD +3167782400,3167870975,RO +3167870976,3167879167,MD 3167879168,3167940095,RO 3167940096,3167940351,CY 3167940352,3167950847,RO 3167950848,3167951359,A2 3167951360,3167986687,RO -3167986688,3167987711,CY +3167986688,3167987711,GB 3167987712,3167989759,MD 3167989760,3168096255,RO 3168096256,3168100351,MD -3168100352,3168195583,RO +3168100352,3168110591,RO +3168110592,3168111615,GB +3168111616,3168195583,RO 3168195584,3168196095,DE 3168196096,3168207103,RO 3168207104,3168207359,CY @@ -104878,8 +99119,8 @@ 3169863680,3169864703,MD 3169864704,3169867775,RO 3169867776,3169868031,DE -3169868032,3169873919,RO -3169873920,3169878015,MD +3169868032,3169869823,RO +3169869824,3169878015,MD 3169878016,3169905151,RO 3169905152,3169905407,GB 3169905408,3169920767,RO @@ -105104,22 +99345,26 @@ 3191607808,3191608319,CL 3191608320,3191611391,CO 3191611392,3191619583,VE -3191619584,3191649279,CO +3191619584,3191648255,CO +3191648256,3191648767,US +3191648768,3191649279,CO 3191649280,3191649791,US -3191649792,3191650559,CO -3191650560,3191650815,US +3191649792,3191650303,CO +3191650304,3191650815,US 3191650816,3191651071,CO -3191651072,3191651327,US -3191651328,3191651583,CO -3191651584,3191651839,US +3191651072,3191651839,US 3191651840,3191670015,CO 3191670016,3191670271,AR 3191670272,3191676927,CO 3191676928,3191679487,AR 3191679488,3191679743,US -3191679744,3191683327,AR +3191679744,3191679999,AR +3191680000,3191680255,US +3191680256,3191683327,AR 3191683328,3191683583,US -3191683584,3191684351,AR +3191683584,3191683839,AR +3191683840,3191684095,US +3191684096,3191684351,AR 3191684352,3191684607,US 3191684608,3191685631,AR 3191685632,3191685887,US @@ -105129,13 +99374,21 @@ 3191696384,3191696895,US 3191696896,3191697407,CO 3191697408,3191701503,US -3191701504,3191704063,CO +3191701504,3191702527,CO +3191702528,3191703039,US +3191703040,3191704063,CO 3191704064,3191704575,US 3191704576,3191705599,CO 3191705600,3191705855,US -3191705856,3191721983,CO +3191705856,3191706367,CO +3191706368,3191706623,US +3191706624,3191720447,CO +3191720448,3191721215,AR +3191721216,3191721983,CO 3191721984,3191722495,AR -3191722496,3191727103,CO +3191722496,3191726079,CO +3191726080,3191726335,AR +3191726336,3191727103,CO 3191727104,3191727359,AR 3191727360,3191730943,CO 3191730944,3191731199,AR @@ -105157,9 +99410,13 @@ 3193438208,3193569279,CW 3193569280,3193582847,CO 3193582848,3193583103,EC -3193583104,3193606143,CO +3193583104,3193599999,CO +3193600000,3193600255,EC +3193600256,3193606143,CO 3193606144,3193606399,EC -3193606400,3193622527,CO +3193606400,3193606655,CO +3193606656,3193606911,EC +3193606912,3193622527,CO 3193622528,3193623295,EC 3193623296,3193625599,CO 3193625600,3193625855,EC @@ -105202,8 +99459,8 @@ 3193750528,3193750783,US 3193750784,3193751807,AR 3193751808,3193752319,US -3193752320,3193753215,AR -3193753216,3193753343,US +3193752320,3193753087,AR +3193753088,3193753343,US 3193753344,3193754623,AR 3193754624,3193754751,US 3193754752,3193765887,AR @@ -105424,9 +99681,7 @@ 3195207680,3195211775,GT 3195215872,3195224063,AR 3195224064,3195232511,PA -3195232512,3195232767,CR -3195232768,3195233023,PA -3195233024,3195234559,CR +3195232512,3195234559,CR 3195234560,3195234815,PA 3195234816,3195235327,CR 3195235328,3195235583,PA @@ -105462,12 +99717,16 @@ 3195699200,3195707391,AR 3195707392,3195711487,PA 3195711488,3195712511,SV +3195712512,3195713535,AR +3195713536,3195714559,GT +3195714560,3195715583,PA 3195715584,3195731967,AR 3195731968,3195736063,EC 3195736064,3195737087,BQ 3195737088,3195738111,CW 3195738112,3195740159,HN -3195740160,3195741439,PA +3195740160,3195740415,US +3195740416,3195741439,PA 3195741440,3195741951,US 3195741952,3195744255,PA 3195744256,3195748351,EC @@ -105713,7 +99972,8 @@ 3222036736,3222036991,US 3222036992,3222037247,CA 3222037248,3222037503,GB -3222037504,3222044671,US +3222037504,3222039551,US +3222040576,3222044671,US 3222044928,3222045183,CA 3222045184,3222055935,US 3222056192,3222056447,US @@ -105856,8 +100116,8 @@ 3223301120,3223303167,US 3223303168,3223303423,CA 3223303424,3223303679,US -3223304192,3223307519,US -3223307520,3223310079,JP +3223304192,3223307263,US +3223307264,3223310079,JP 3223310080,3223310335,US 3223310592,3223311103,US 3223311104,3223311359,FR @@ -106513,7 +100773,6 @@ 3225728512,3225728767,NL 3225728768,3225729023,US 3225729024,3225729279,CA -3225729280,3225729535,US 3225729536,3225729791,PT 3225729792,3225735167,US 3225735424,3225735679,PT @@ -106568,7 +100827,8 @@ 3225858048,3225858559,CA 3225858560,3225858815,US 3225858816,3225859583,JP -3225860096,3225868287,US +3225860096,3225862143,US +3225864192,3225868287,US 3225868288,3225868543,AU 3225868544,3225869055,US 3225869056,3225869311,AU @@ -107129,7 +101389,7 @@ 3227403520,3227403775,US 3227404288,3227405311,US 3227405312,3227405567,DE -3227405568,3227414015,US +3227406080,3227414015,US 3227414272,3227415551,GB 3227415552,3227415807,US 3227415808,3227416063,GB @@ -107176,15 +101436,17 @@ 3227454720,3227455487,CA 3227455488,3227456255,US 3227456256,3227457023,CA -3227457024,3227457279,US -3227457280,3227459001,CA +3227457024,3227457535,US +3227457536,3227459001,CA 3227459002,3227459002,US -3227459003,3227464447,CA +3227459003,3227461119,CA +3227461120,3227461631,US +3227461632,3227464447,CA 3227464448,3227464575,US 3227464576,3227465147,CA 3227465148,3227465151,US 3227465152,3227467775,CA -3227467776,3227475967,US +3227467776,3227484159,US 3227484160,3227516927,CA 3227516928,3227533311,ZA 3227533312,3227534335,US @@ -107552,8 +101814,8 @@ 3228531712,3228532223,NO 3228532224,3228532479,US 3228532480,3228532735,DE -3228540928,3228558591,US -3228558592,3228559103,BR +3228532736,3228558591,US +3228558592,3228558847,BR 3228559104,3228564479,US 3228564480,3228564735,AT 3228564736,3228565247,US @@ -107628,6 +101890,7 @@ 3229064192,3229064951,CA 3229064952,3229064955,US 3229064956,3229065215,CA +3229065216,3229069311,US 3229073408,3229092095,US 3229092096,3229093887,AU 3229093888,3229101823,US @@ -107730,7 +101993,7 @@ 3229412096,3229483007,DE 3229483008,3229499647,FI 3229499648,3229500671,US -3229501440,3229507583,US +3229501440,3229511679,US 3229515776,3229614847,US 3229614848,3229615103,GB 3229615104,3229679103,US @@ -107949,6 +102212,7 @@ 3230168832,3230177791,US 3230177792,3230178303,GB 3230178304,3230178559,CH +3230179328,3230183423,US 3230187520,3230210047,US 3230210048,3230210303,CA 3230210304,3230211839,US @@ -108123,9 +102387,7 @@ 3230897664,3230897919,GB 3230898688,3230898943,US 3230898944,3230899199,PT -3230899200,3230913023,US -3230913024,3230913279,BR -3230913280,3230913535,US +3230899200,3230913535,US 3230913536,3230913791,GB 3230913792,3230914047,CA 3230914048,3230914303,US @@ -108310,7 +102572,7 @@ 3231149568,3231154431,US 3231155200,3231155711,US 3231155712,3231156223,CA -3231156224,3231162367,US +3231156224,3231166463,US 3231170560,3231186687,US 3231186688,3231186943,CN 3231186944,3231188479,US @@ -108407,7 +102669,6 @@ 3231285248,3231291647,US 3231291648,3231291903,GB 3231291904,3231292159,US -3231292160,3231292415,BR 3231292416,3231292927,US 3231292928,3231293183,AU 3231293184,3231294975,US @@ -108439,6 +102700,7 @@ 3231325184,3231326207,CA 3231326208,3231352831,US 3231352832,3231358975,CA +3231358976,3231363071,US 3231367168,3231383551,US 3231383552,3231385599,NO 3231385600,3231408127,US @@ -108632,7 +102894,7 @@ 3231673856,3231674111,US 3231674112,3231674367,CA 3231674368,3231675391,US -3231675392,3231675903,BR +3231675392,3231675647,BR 3231675904,3231676159,IE 3231676672,3231676927,FR 3231676928,3231677183,FI @@ -108699,9 +102961,7 @@ 3231755520,3231755775,US 3231755776,3231756543,PR 3231756544,3231757311,GB -3231757312,3231759359,US -3231759360,3231759615,BR -3231759616,3231760895,US +3231757312,3231760895,US 3231760896,3231761407,GB 3231761408,3231763711,US 3231763712,3231763967,AU @@ -108886,7 +103146,7 @@ 3232448512,3232462847,US 3232462848,3232464895,BB 3232464896,3232483327,GB -3232485376,3232489471,US +3232483328,3232489471,US 3232497664,3232555007,US 3232555264,3232555640,US 3232555641,3232555641,US @@ -108904,13 +103164,13 @@ 3232570368,3232571391,CA 3232571392,3232595967,US 3232595968,3232598015,GB -3232600064,3232604159,US +3232598016,3232604159,US 3232612352,3232628735,US 3232629248,3232629759,US 3232629760,3232630783,CA 3232630784,3232645119,US 3232645120,3232647167,AT -3232649216,3232653311,US +3232647168,3232653311,US 3232661504,3232694271,JP 3232694272,3232702463,US 3232702464,3232703743,FI @@ -108918,8 +103178,8 @@ 3232704000,3232704511,CH 3232704512,3232705535,GB 3232705536,3232706559,FI -3232706560,3232708607,US -3232710656,3232718847,US +3232706560,3232716799,US +3232716800,3232718847,CA 3232727040,3232759807,US 3232759808,3232772095,SE 3232772096,3232774143,IT @@ -108940,7 +103200,7 @@ 3232813056,3232820223,SE 3232820224,3232820479,IE 3232820480,3232825343,SE -3232890880,3233286143,US +3232890880,3233288191,US 3233288192,3233292287,CA 3233316864,3233349631,US 3233480704,3233484799,US @@ -109073,7 +103333,7 @@ 3233675520,3233676031,US 3233676032,3233676287,DE 3233676288,3233684991,US -3233684992,3233685503,BR +3233685248,3233685503,BR 3233685504,3233688063,US 3233688576,3233688831,GB 3233688832,3233692159,US @@ -109089,8 +103349,7 @@ 3233694976,3233695231,FR 3233695232,3233696511,US 3233696512,3233696767,CA -3233696768,3233697791,US -3233699840,3233700863,US +3233696768,3233700863,US 3233701632,3233701887,NO 3233701888,3233704959,US 3233704960,3233705215,NZ @@ -109274,7 +103533,7 @@ 3234279424,3234283519,CA 3234283520,3234310367,US 3234310368,3234310371,HK -3234310372,3234314239,US +3234310372,3234316287,US 3234332672,3234349055,US 3234349056,3234353151,NZ 3234353152,3234357247,US @@ -109401,7 +103660,7 @@ 3234855168,3234855935,US 3234856192,3234856447,US 3234856960,3234861055,CA -3234861056,3234897919,US +3234861056,3234906111,US 3234922496,3234988031,US 3234988032,3234992127,CA 3234992128,3235004415,US @@ -109452,6 +103711,7 @@ 3235184640,3235184895,CA 3235184896,3235275007,US 3235275776,3235276799,CA +3235276800,3235278847,US 3235278848,3235282943,BB 3235282944,3235315711,CA 3235315712,3235389439,US @@ -109553,11 +103813,12 @@ 3236167680,3236172543,CA 3236172544,3236172799,US 3236172800,3236175871,CA -3236175872,3236192255,US +3236175872,3236200447,US 3236200448,3236233215,MY 3236233216,3236237567,US 3236237568,3236237936,EU 3236237937,3236238591,US +3236239360,3236241407,CA 3236241408,3236249599,US 3236265984,3236315135,US 3236364288,3236368127,US @@ -109590,9 +103851,8 @@ 3236406784,3236407551,AU 3236407552,3236408063,SG 3236408064,3236408319,US -3236408320,3236409087,CA -3236409088,3236409599,BR -3236409600,3236413695,US +3236408320,3236409343,CA +3236409344,3236413695,US 3236413696,3236413951,AU 3236413952,3236416255,US 3236416256,3236416511,AU @@ -109609,6 +103869,7 @@ 3236450048,3236450303,EU 3236450304,3236462591,US 3236462592,3236470783,AU +3236470784,3236478975,US 3236495360,3236566783,US 3236566784,3236567039,CA 3236567040,3236585983,US @@ -109668,11 +103929,10 @@ 3236789504,3236790271,US 3236823040,3236826111,CH 3236826112,3236827135,CA -3236829184,3236855807,US +3236827136,3236855807,US 3236888576,3236958207,US 3236958208,3236962303,AU -3236962304,3236978687,US -3236986880,3236995071,US +3236962304,3237003263,US 3237019648,3237022291,US 3237022292,3237022335,CA 3237022336,3237022367,US @@ -109687,7 +103947,7 @@ 3237085184,3237154815,US 3237154816,3237155839,ES 3237155840,3237156863,AU -3237156864,3237160959,US +3237156864,3237163007,US 3237163008,3237167103,DM 3237183488,3237216255,US 3237216256,3237281791,JP @@ -109745,8 +104005,7 @@ 3237366272,3237412863,US 3237412864,3237415935,GB 3237415936,3237416959,CA -3237416960,3237437439,US -3237445632,3237478399,US +3237416960,3237478399,US 3237478400,3237511167,LK 3237511168,3237548031,US 3237548032,3237552127,KR @@ -109756,7 +104015,7 @@ 3237553923,3237553923,EU 3237553924,3237554434,US 3237554435,3237554435,AP -3237554436,3237558271,US +3237554436,3237560319,US 3237609472,3237613567,US 3237613568,3237614591,CA 3237615104,3237615615,US @@ -109803,7 +104062,7 @@ 3237734400,3237773311,US 3237806080,3237857535,US 3237858304,3237863423,CA -3237871616,3237887999,US +3237863424,3237887999,US 3238002688,3238006783,NL 3238006784,3238007039,GB 3238007040,3238008831,NL @@ -110537,7 +104796,7 @@ 3239828992,3239830015,RU 3239830016,3239830527,CH 3239830528,3239831039,SE -3239831040,3239832063,RU +3239831040,3239831551,RU 3239832064,3239832575,UA 3239832576,3239834111,RU 3239834112,3239834623,UA @@ -110889,7 +105148,7 @@ 3240241152,3240241407,EU 3240241408,3240242175,FI 3240242176,3240243199,PL -3240243200,3240244223,GB +3240243200,3240244223,PL 3240244224,3240245247,PL 3240245248,3240246271,IL 3240246272,3240247295,UA @@ -110941,7 +105200,6 @@ 3240280192,3240280319,SE 3240280320,3240280447,PL 3240280448,3240280575,UA -3240280576,3240280703,GB 3240280704,3240280831,RU 3240280832,3240280959,GB 3240280960,3240281215,PL @@ -111330,7 +105588,9 @@ 3240952080,3240952087,SE 3240952088,3240952095,GB 3240952096,3240952127,US -3240952128,3240953343,SE +3240952128,3240952575,SE +3240952576,3240952639,GB +3240952640,3240953343,SE 3240953344,3240953375,RU 3240953376,3240953415,SE 3240953416,3240953423,GB @@ -111507,7 +105767,7 @@ 3241500160,3241500671,GB 3241500672,3241501439,BE 3241501440,3241501951,GB -3241501952,3241502975,BE +3241501952,3241502463,BE 3241503232,3241503487,RS 3241503488,3241508095,BE 3241508096,3241508351,NL @@ -111567,7 +105827,9 @@ 3242196992,3242393599,FI 3242393600,3242394471,NL 3242394472,3242394479,DE -3242394480,3242403583,NL +3242394480,3242403083,NL +3242403084,3242403087,GB +3242403088,3242403583,NL 3242403584,3242403591,GB 3242403592,3242419967,NL 3242419968,3242420223,EU @@ -113015,7 +107277,9 @@ 3247244768,3247244775,DE 3247244776,3247244927,NL 3247244928,3247244935,DE -3247244936,3247245047,NL +3247244936,3247245023,NL +3247245024,3247245031,DE +3247245032,3247245047,NL 3247245048,3247245055,DE 3247245056,3247245063,NL 3247245064,3247245071,DE @@ -113033,7 +107297,9 @@ 3247245640,3247245647,DE 3247245648,3247245655,NL 3247245656,3247245663,DE -3247245664,3247245791,NL +3247245664,3247245751,NL +3247245752,3247245759,DE +3247245760,3247245791,NL 3247245792,3247245799,DE 3247245800,3247245959,NL 3247245960,3247245967,DE @@ -113045,7 +107311,9 @@ 3247246176,3247246183,DE 3247246184,3247246271,NL 3247246272,3247246279,DE -3247246280,3247246503,NL +3247246280,3247246351,NL +3247246352,3247246359,DE +3247246360,3247246503,NL 3247246504,3247246511,DE 3247246512,3247246527,NL 3247246528,3247246535,DE @@ -113061,11 +107329,19 @@ 3247246968,3247246975,DE 3247246976,3247246991,NL 3247246992,3247246999,DE -3247247000,3247247111,NL +3247247000,3247247023,NL +3247247024,3247247031,DE +3247247032,3247247079,NL +3247247080,3247247087,DE +3247247088,3247247095,NL +3247247096,3247247103,DE +3247247104,3247247111,NL 3247247112,3247247119,DE 3247247120,3247247175,NL 3247247176,3247247183,DE -3247247184,3247247367,NL +3247247184,3247247343,NL +3247247344,3247247351,DE +3247247352,3247247367,NL 3247247368,3247247375,DE 3247247376,3247247407,NL 3247247408,3247247415,DE @@ -113171,8 +107447,8 @@ 3247255368,3247255375,DE 3247255376,3247255559,NL 3247255560,3247255567,DE -3247255568,3247255655,NL -3247255656,3247255663,DE +3247255568,3247255647,NL +3247255648,3247255663,DE 3247255664,3247255671,NL 3247255672,3247255679,DE 3247255680,3247255711,NL @@ -113209,9 +107485,11 @@ 3247261208,3247261223,DE 3247261224,3247261303,NL 3247261304,3247261311,DE -3247261312,3247261791,NL -3247261792,3247261799,DE -3247261800,3247261935,NL +3247261312,3247261711,NL +3247261712,3247261719,DE +3247261720,3247261791,NL +3247261792,3247261807,DE +3247261808,3247261935,NL 3247261936,3247261943,DE 3247261944,3247261951,NL 3247261952,3247261959,DE @@ -113227,7 +107505,9 @@ 3247262152,3247262159,DE 3247262160,3247262223,NL 3247262224,3247262231,DE -3247262232,3247262439,NL +3247262232,3247262295,NL +3247262296,3247262303,DE +3247262304,3247262439,NL 3247262440,3247262447,DE 3247262448,3247262615,NL 3247262616,3247262623,DE @@ -113249,7 +107529,9 @@ 3247263304,3247263311,DE 3247263312,3247263335,NL 3247263336,3247263359,DE -3247263360,3247263551,NL +3247263360,3247263431,NL +3247263432,3247263439,DE +3247263440,3247263551,NL 3247263552,3247263559,DE 3247263560,3247263599,NL 3247263600,3247263607,DE @@ -113265,15 +107547,23 @@ 3247263928,3247263935,DE 3247263936,3247264359,NL 3247264360,3247264367,DE -3247264368,3247264447,NL +3247264368,3247264383,NL +3247264384,3247264391,DE +3247264392,3247264447,NL 3247264448,3247264455,DE -3247264456,3247264615,NL +3247264456,3247264543,NL +3247264544,3247264559,DE +3247264560,3247264591,NL +3247264592,3247264599,DE +3247264600,3247264615,NL 3247264616,3247264623,DE 3247264624,3247264719,NL 3247264720,3247264727,DE 3247264728,3247265095,NL 3247265096,3247265103,DE -3247265104,3247265175,NL +3247265104,3247265127,NL +3247265128,3247265135,DE +3247265136,3247265175,NL 3247265176,3247265183,DE 3247265184,3247265199,NL 3247265200,3247265207,DE @@ -113281,9 +107571,13 @@ 3247265240,3247265247,DE 3247265248,3247265319,NL 3247265320,3247265327,DE -3247265328,3247265535,NL +3247265328,3247265479,NL +3247265480,3247265487,DE +3247265488,3247265535,NL 3247265536,3247265543,DE -3247265544,3247265663,NL +3247265544,3247265639,NL +3247265640,3247265647,DE +3247265648,3247265663,NL 3247265664,3247265671,DE 3247265672,3247265799,NL 3247265800,3247265807,DE @@ -113299,7 +107593,9 @@ 3247265936,3247265943,DE 3247265944,3247266175,NL 3247266176,3247266183,DE -3247266184,3247266287,NL +3247266184,3247266271,NL +3247266272,3247266279,DE +3247266280,3247266287,NL 3247266288,3247266295,DE 3247266296,3247266559,NL 3247266560,3247271679,DE @@ -113351,7 +107647,9 @@ 3247273752,3247273759,DE 3247273760,3247273791,NL 3247273792,3247273799,DE -3247273800,3247274167,NL +3247273800,3247274007,NL +3247274008,3247274015,DE +3247274016,3247274167,NL 3247274168,3247274175,DE 3247274176,3247274239,NL 3247274240,3247274503,DE @@ -113397,7 +107695,9 @@ 3247276952,3247276959,DE 3247276960,3247277319,NL 3247277320,3247277327,DE -3247277328,3247277479,NL +3247277328,3247277407,NL +3247277408,3247277415,DE +3247277416,3247277479,NL 3247277480,3247277487,DE 3247277488,3247277743,NL 3247277744,3247277751,DE @@ -113430,8 +107730,8 @@ 3247280496,3247281159,NL 3247281160,3247281167,DE 3247281168,3247281239,NL -3247281240,3247281247,DE -3247281248,3247281351,NL +3247281240,3247281255,DE +3247281256,3247281351,NL 3247281352,3247281359,DE 3247281360,3247281447,NL 3247281448,3247281455,DE @@ -113451,7 +107751,9 @@ 3247281856,3247281863,DE 3247281864,3247281903,NL 3247281904,3247281911,DE -3247281912,3247281983,NL +3247281912,3247281919,NL +3247281920,3247281927,DE +3247281928,3247281983,NL 3247281984,3247281991,DE 3247281992,3247282063,NL 3247282064,3247282071,DE @@ -113487,7 +107789,9 @@ 3247283448,3247283455,DE 3247283456,3247283567,NL 3247283568,3247283575,DE -3247283576,3247283759,NL +3247283576,3247283735,NL +3247283736,3247283743,DE +3247283744,3247283759,NL 3247283760,3247283767,DE 3247283768,3247283799,NL 3247283800,3247283807,DE @@ -113551,12 +107855,18 @@ 3247286456,3247286463,DE 3247286464,3247286503,NL 3247286504,3247286511,DE -3247286512,3247287167,NL +3247286512,3247286527,NL +3247286528,3247286535,DE +3247286536,3247287055,NL +3247287056,3247287063,DE +3247287064,3247287167,NL 3247287168,3247287175,DE 3247287176,3247287503,NL 3247287504,3247287511,DE -3247287512,3247287895,NL -3247287896,3247287903,DE +3247287512,3247287615,NL +3247287616,3247287623,DE +3247287624,3247287887,NL +3247287888,3247287903,DE 3247287904,3247287959,NL 3247287960,3247287967,DE 3247287968,3247287975,NL @@ -113578,18 +107888,22 @@ 3247302808,3247302871,NL 3247302872,3247302879,DE 3247302880,3247302951,NL -3247302952,3247302959,DE -3247302960,3247303047,NL +3247302952,3247302967,DE +3247302968,3247303047,NL 3247303048,3247303071,DE 3247303072,3247303151,NL 3247303152,3247303159,DE -3247303160,3247303343,NL +3247303160,3247303223,NL +3247303224,3247303231,DE +3247303232,3247303343,NL 3247303344,3247303359,DE 3247303360,3247303615,NL 3247303616,3247303623,DE 3247303624,3247303671,NL 3247303672,3247303679,DE -3247303680,3247304007,NL +3247303680,3247303943,NL +3247303944,3247303951,DE +3247303952,3247304007,NL 3247304008,3247304015,DE 3247304016,3247304351,NL 3247304352,3247304359,DE @@ -113677,7 +107991,9 @@ 3247308208,3247308215,DE 3247308216,3247308223,NL 3247308224,3247308231,DE -3247308232,3247308415,NL +3247308232,3247308287,NL +3247308288,3247308295,DE +3247308296,3247308415,NL 3247308416,3247308423,DE 3247308424,3247308479,NL 3247308480,3247308487,DE @@ -114329,7 +108645,8 @@ 3249871616,3249871871,NO 3249871872,3249872383,SE 3249872384,3249872639,GB -3249872640,3249910783,SE +3249872640,3249910271,SE +3249910272,3249910783,NL 3249910784,3249912319,GB 3249912320,3249924607,SE 3249924608,3249924863,NO @@ -114348,7 +108665,9 @@ 3249932288,3249934335,US 3249934336,3249935103,SE 3249935104,3249935359,IT -3249935360,3249960447,SE +3249935360,3249935871,SE +3249935872,3249936383,DE +3249936384,3249960447,SE 3249960448,3249960959,DE 3249960960,3249961215,CA 3249961216,3249961471,SE @@ -114408,7 +108727,8 @@ 3250020352,3250020863,SE 3250020864,3250021375,IT 3250021376,3250022399,FR -3250022400,3250023423,SE +3250022400,3250022911,SE +3250022912,3250023423,FR 3250023424,3250024447,DE 3250024448,3250026495,SE 3250026496,3250027519,FR @@ -114423,7 +108743,9 @@ 3250035456,3250035711,US 3250035712,3250038271,SE 3250038272,3250039295,ES -3250039296,3250042623,SE +3250039296,3250039807,DK +3250039808,3250040319,NO +3250040320,3250042623,SE 3250042624,3250043135,FR 3250043136,3250043391,SE 3250043392,3250043647,ES @@ -114761,7 +109083,6 @@ 3251143424,3251143679,LV 3251143680,3251143935,NL 3251143936,3251144191,PL -3251144192,3251144447,TR 3251144448,3251144703,BE 3251144704,3251144959,HU 3251144960,3251145471,DE @@ -114985,7 +109306,6 @@ 3251220224,3251220479,UA 3251220480,3251222527,DE 3251222528,3251224575,GB -3251224576,3251225087,UA 3251225088,3251225599,FR 3251225600,3251226111,GB 3251226112,3251226623,UA @@ -115165,18 +109485,26 @@ 3252178944,3252179199,NO 3252179200,3252179455,SE 3252179456,3252189183,NL -3252189184,3252191231,NO +3252189184,3252189695,NO +3252189696,3252190719,SE +3252190720,3252191231,NO 3252191232,3252197119,HR 3252197120,3252197375,NO 3252197376,3252203519,HR -3252203520,3252207615,NO +3252203520,3252204287,SE +3252204288,3252204543,NO +3252204544,3252205567,SE +3252205568,3252206079,NO +3252206080,3252207615,SE 3252207616,3252211711,NL 3252211712,3252211967,SE -3252211968,3252214527,NO -3252214528,3252214783,SE -3252214784,3252219135,NO -3252219136,3252219391,SE -3252219392,3252221183,NO +3252211968,3252212223,NO +3252212224,3252213759,SE +3252213760,3252214527,NO +3252214528,3252218879,SE +3252218880,3252219135,NO +3252219136,3252220927,SE +3252220928,3252221183,NO 3252221184,3252221439,SE 3252221440,3252222463,HR 3252222464,3252223231,NO @@ -115184,13 +109512,19 @@ 3252223744,3252223999,NO 3252224000,3252232320,NL 3252232321,3252233215,SE -3252233216,3252248575,NO +3252233216,3252234239,NO +3252234240,3252236287,SE +3252236288,3252247551,NO +3252247552,3252248575,SE 3252248576,3252256767,NL -3252256768,3252277759,NO +3252256768,3252273151,NO +3252273152,3252276223,SE +3252276224,3252277759,NO 3252277760,3252279295,HR 3252279296,3252279807,NO 3252279808,3252286463,HR -3252286464,3252289535,NO +3252286464,3252286975,NO +3252286976,3252289535,SE 3252289536,3252289791,BG 3252289792,3252291327,GR 3252291328,3252291583,SK @@ -115286,14 +109620,9 @@ 3252407296,3252407551,ZA 3252407552,3252407759,LT 3252407760,3252407775,CD -3252407776,3252408319,LT -3252408320,3252408327,MW -3252408328,3252408335,LT +3252407776,3252408335,LT 3252408336,3252408339,CD -3252408340,3252408359,LT -3252408360,3252408367,GN -3252408368,3252408375,LT -3252408376,3252408383,GN +3252408340,3252408383,LT 3252408384,3252408391,BI 3252408392,3252408511,LT 3252408512,3252408527,AF @@ -115395,7 +109724,9 @@ 3252415064,3252415079,LT 3252415080,3252415111,IQ 3252415112,3252415119,LT -3252415120,3252415159,IQ +3252415120,3252415143,IQ +3252415144,3252415151,LT +3252415152,3252415159,IQ 3252415160,3252415167,LT 3252415168,3252415191,IQ 3252415192,3252415199,LT @@ -115415,7 +109746,9 @@ 3252417376,3252417391,LT 3252417392,3252417439,AF 3252417440,3252417455,LT -3252417456,3252417527,AF +3252417456,3252417495,AF +3252417496,3252417503,LT +3252417504,3252417527,AF 3252417528,3252417935,LT 3252417936,3252417951,ZM 3252417952,3252418559,LT @@ -115440,17 +109773,15 @@ 3252419840,3252419879,IQ 3252419880,3252419919,LT 3252419920,3252419927,IQ -3252419928,3252420031,LT -3252420032,3252420047,IQ +3252419928,3252420039,LT +3252420040,3252420047,IQ 3252420048,3252420095,LT 3252420096,3252420111,IQ -3252420112,3252420119,GB +3252420112,3252420119,LT 3252420120,3252420143,IQ 3252420144,3252420367,LT 3252420368,3252420383,IQ -3252420384,3252420415,LT -3252420416,3252420431,GB -3252420432,3252420455,LT +3252420384,3252420455,LT 3252420456,3252420463,IQ 3252420464,3252420471,AF 3252420472,3252420583,LT @@ -115473,9 +109804,7 @@ 3252425472,3252425535,AO 3252425536,3252425551,LT 3252425552,3252425567,AO -3252425568,3252425727,LT -3252425728,3252425983,A2 -3252425984,3252427775,LT +3252425568,3252427775,LT 3252427776,3252428287,MW 3252428288,3252428303,AO 3252428304,3252428319,LT @@ -115528,7 +109857,7 @@ 3252435456,3252435711,TZ 3252435712,3252435855,GH 3252435856,3252435871,MR -3252435872,3252435887,GH +3252435872,3252435887,LT 3252435888,3252435903,CD 3252435904,3252435919,BW 3252435920,3252435935,BF @@ -115582,8 +109911,8 @@ 3252450944,3252450959,CH 3252450960,3252451071,LT 3252451072,3252451327,CH -3252451328,3252451359,SL -3252451360,3252451591,LT +3252451328,3252451363,SL +3252451364,3252451591,LT 3252451592,3252451607,GM 3252451608,3252451631,GW 3252451632,3252451655,GN @@ -115833,7 +110162,9 @@ 3253270528,3253271551,BY 3253271552,3253338111,RU 3253338112,3253338367,PL -3253338368,3253380863,SE +3253338368,3253380351,SE +3253380352,3253380607,AT +3253380608,3253380863,SE 3253380864,3253381119,IT 3253381120,3253383935,SE 3253383936,3253384191,NO @@ -115843,7 +110174,11 @@ 3253388288,3253388799,FR 3253388800,3253389055,CY 3253389056,3253389823,FR -3253389824,3253398271,SE +3253389824,3253395199,SE +3253395200,3253395455,CH +3253395456,3253397503,SE +3253397504,3253397759,ES +3253397760,3253398271,SE 3253398272,3253398783,FR 3253398784,3253399039,SE 3253399040,3253399295,FR @@ -115868,7 +110203,9 @@ 3253412352,3253412607,US 3253412608,3253416447,SE 3253416448,3253416959,GB -3253416960,3253428223,SE +3253416960,3253422335,SE +3253422336,3253422591,SE +3253422592,3253428223,SE 3253428224,3253428479,DE 3253428480,3253429247,SE 3253429248,3253429759,JP @@ -115893,7 +110230,9 @@ 3253453568,3253454079,SE 3253454080,3253454335,GB 3253454336,3253454591,EU -3253454592,3253455615,SE +3253454592,3253454847,SE +3253454848,3253455359,NL +3253455360,3253455615,IT 3253455616,3253455871,US 3253455872,3253456383,SE 3253456384,3253456639,US @@ -116059,7 +110398,24 @@ 3253729792,3253730303,UA 3253730304,3253730815,RO 3253730816,3253731327,UA -3253731328,3253796863,GB +3253731328,3253731583,DE +3253731584,3253734343,GB +3253734344,3253734351,DE +3253734352,3253735135,GB +3253735136,3253735167,NL +3253735168,3253760767,GB +3253760768,3253761023,CH +3253761024,3253761287,GB +3253761288,3253761291,DE +3253761292,3253761295,NL +3253761296,3253761391,GB +3253761392,3253761407,DE +3253761408,3253761471,ES +3253761472,3253761479,GB +3253761480,3253761483,DE +3253761484,3253762687,GB +3253762688,3253762751,IT +3253762752,3253796863,GB 3253796864,3253862399,SE 3253862400,3253862655,GB 3253862656,3253882879,FR @@ -116192,10 +110548,8 @@ 3254485504,3254485799,CI 3254485800,3254485807,FR 3254485808,3254485819,CI -3254485820,3254485820,FR -3254485821,3254485821,CI -3254485822,3254485822,FR -3254485823,3254485855,CI +3254485820,3254485823,FR +3254485824,3254485855,CI 3254485856,3254485859,FR 3254485860,3254485887,CI 3254485888,3254486527,FR @@ -116225,13 +110579,7 @@ 3254488448,3254488831,FR 3254488832,3254489087,DJ 3254489088,3254489343,DZ -3254489344,3254489365,FR -3254489366,3254489367,MR -3254489368,3254489369,FR -3254489370,3254489370,MR -3254489371,3254489373,FR -3254489374,3254489375,MR -3254489376,3254489407,FR +3254489344,3254489407,FR 3254489408,3254489439,MR 3254489440,3254489443,FR 3254489444,3254489455,MR @@ -116286,11 +110634,7 @@ 3254509568,3254509783,DJ 3254509784,3254521855,FR 3254521856,3254522367,GB -3254522368,3254523739,FR -3254523740,3254523740,UG -3254523741,3254523741,CH -3254523742,3254523742,RO -3254523743,3254550527,FR +3254522368,3254550527,FR 3254550528,3254550783,US 3254550784,3254551039,IR 3254551040,3254551295,US @@ -116453,7 +110797,7 @@ 3254819584,3254819839,DK 3254819840,3254820095,GB 3254820096,3254820351,UA -3254820352,3254820863,GB +3254820352,3254820607,GB 3254820864,3254821119,LT 3254821120,3254821375,DK 3254821376,3254821631,RU @@ -116618,9 +110962,7 @@ 3254938000,3254938007,GB 3254938008,3254959623,FR 3254959624,3254959631,A2 -3254959632,3254994734,FR -3254994735,3254994735,BE -3254994736,3255006719,FR +3254959632,3255006719,FR 3255006720,3255006975,A2 3255006976,3255120639,FR 3255120640,3255120895,DE @@ -116727,9 +111069,7 @@ 3255237888,3255238143,ES 3255238144,3255238399,GB 3255238400,3255238655,QA -3255238656,3255243679,BE -3255243680,3255243711,LU -3255243712,3255245567,BE +3255238656,3255245567,BE 3255245568,3255245583,LU 3255245584,3255245599,BE 3255245600,3255245631,LU @@ -116737,9 +111077,7 @@ 3255245688,3255245695,LU 3255245696,3255246591,BE 3255246592,3255246623,LU -3255246624,3255247615,BE -3255247616,3255247631,LU -3255247632,3255247647,BE +3255246624,3255247647,BE 3255247648,3255247663,LU 3255247664,3255248127,BE 3255248128,3255248383,LU @@ -116755,7 +111093,9 @@ 3255252800,3255252863,LU 3255252864,3255254847,BE 3255254848,3255254879,LU -3255254880,3255255751,BE +3255254880,3255254991,BE +3255254992,3255255007,LU +3255255008,3255255751,BE 3255255752,3255255759,DK 3255255760,3255256319,BE 3255256320,3255256575,LU @@ -116913,7 +111253,6 @@ 3255368192,3255368703,FR 3255368704,3255369215,CZ 3255369216,3255369727,GB -3255369728,3255370239,LU 3255370240,3255370751,RU 3255370752,3255371263,DE 3255371264,3255371775,BG @@ -117097,11 +111436,17 @@ 3255666688,3255697407,NL 3255697408,3255698687,SE 3255698688,3255698943,GB -3255698944,3255710719,SE +3255698944,3255704575,SE +3255704576,3255705087,FR +3255705088,3255710719,SE 3255710720,3255710975,ES 3255710976,3255716351,SE 3255716352,3255716863,CH -3255716864,3255724543,SE +3255716864,3255719167,SE +3255719168,3255719423,NO +3255719424,3255719679,SE +3255719680,3255719935,IT +3255719936,3255724543,SE 3255724544,3255725055,US 3255725056,3255725311,ES 3255725312,3255730943,SE @@ -117144,9 +111489,7 @@ 3256076288,3256076799,SE 3256076800,3256082431,DK 3256082432,3256088063,LV -3256088064,3256088095,RU -3256088096,3256088103,LV -3256088104,3256088319,RU +3256088064,3256088319,RU 3256088320,3256090623,LV 3256090624,3256164863,IT 3256164864,3256165375,SE @@ -117539,9 +111882,11 @@ 3257550848,3257551103,HK 3257551104,3257551359,GB 3257551360,3257551871,BE -3257551872,3257552127,GB -3257552128,3257552415,SE -3257552416,3257554687,GB +3257551872,3257552019,GB +3257552020,3257552023,SE +3257552024,3257552127,GB +3257552128,3257552447,SE +3257552448,3257554687,GB 3257554688,3257554943,DE 3257554944,3257555295,CH 3257555296,3257555327,RO @@ -117599,27 +111944,41 @@ 3257731568,3257731575,DE 3257731576,3257731823,NL 3257731824,3257731831,DE -3257731832,3257732023,NL +3257731832,3257731991,NL +3257731992,3257731999,DE +3257732000,3257732023,NL 3257732024,3257732031,DE 3257732032,3257732095,NL 3257732096,3257732607,DE -3257732608,3257732703,NL +3257732608,3257732623,NL +3257732624,3257732631,DE +3257732632,3257732703,NL 3257732704,3257732719,DE 3257732720,3257732727,NL 3257732728,3257732735,DE 3257732736,3257732815,NL 3257732816,3257732823,DE -3257732824,3257732903,NL +3257732824,3257732871,NL +3257732872,3257732879,DE +3257732880,3257732903,NL 3257732904,3257732911,DE 3257732912,3257733303,NL 3257733304,3257733311,DE -3257733312,3257733431,NL +3257733312,3257733327,NL +3257733328,3257733335,DE +3257733336,3257733431,NL 3257733432,3257733439,DE -3257733440,3257733903,NL +3257733440,3257733615,NL +3257733616,3257733623,DE +3257733624,3257733903,NL 3257733904,3257733911,DE -3257733912,3257734135,NL +3257733912,3257734015,NL +3257734016,3257734023,DE +3257734024,3257734135,NL 3257734136,3257736191,DE -3257736192,3257736575,NL +3257736192,3257736543,NL +3257736544,3257736551,DE +3257736552,3257736575,NL 3257736576,3257736583,DE 3257736584,3257736631,NL 3257736632,3257736639,DE @@ -117631,7 +111990,9 @@ 3257736944,3257736951,DE 3257736952,3257736975,NL 3257736976,3257736983,DE -3257736984,3257737023,NL +3257736984,3257736999,NL +3257737000,3257737007,DE +3257737008,3257737023,NL 3257737024,3257737031,DE 3257737032,3257737039,NL 3257737040,3257737047,DE @@ -117639,7 +112000,9 @@ 3257737120,3257737127,DE 3257737128,3257737175,NL 3257737176,3257737183,DE -3257737184,3257737279,NL +3257737184,3257737207,NL +3257737208,3257737215,DE +3257737216,3257737279,NL 3257737280,3257737287,DE 3257737288,3257737295,NL 3257737296,3257737303,DE @@ -117665,29 +112028,39 @@ 3257744176,3257744183,DE 3257744184,3257744247,NL 3257744248,3257744255,DE -3257744256,3257744671,NL +3257744256,3257744335,NL +3257744336,3257744343,DE +3257744344,3257744671,NL 3257744672,3257744679,DE 3257744680,3257744775,NL 3257744776,3257744783,DE -3257744784,3257744871,NL +3257744784,3257744847,NL +3257744848,3257744855,DE +3257744856,3257744871,NL 3257744872,3257744887,DE 3257744888,3257744951,NL 3257744952,3257744959,DE 3257744960,3257744999,NL 3257745000,3257745007,DE -3257745008,3257745119,NL +3257745008,3257745015,NL +3257745016,3257745023,DE +3257745024,3257745119,NL 3257745120,3257745127,DE -3257745128,3257745255,NL +3257745128,3257745199,NL +3257745200,3257745207,DE +3257745208,3257745255,NL 3257745256,3257745263,DE -3257745264,3257745823,NL +3257745264,3257745479,NL +3257745480,3257745487,DE +3257745488,3257745823,NL 3257745824,3257745831,DE 3257745832,3257745879,NL 3257745880,3257745887,DE 3257745888,3257745935,NL 3257745936,3257745943,DE 3257745944,3257746047,NL -3257746048,3257746055,DE -3257746056,3257746079,NL +3257746048,3257746063,DE +3257746064,3257746079,NL 3257746080,3257746087,DE 3257746088,3257746167,NL 3257746168,3257746175,DE @@ -117697,7 +112070,11 @@ 3257746488,3257746495,DE 3257746496,3257746527,NL 3257746528,3257746535,DE -3257746536,3257746647,NL +3257746536,3257746543,NL +3257746544,3257746551,DE +3257746552,3257746623,NL +3257746624,3257746631,DE +3257746632,3257746647,NL 3257746648,3257746655,DE 3257746656,3257746671,NL 3257746672,3257746679,DE @@ -117719,17 +112096,23 @@ 3257747848,3257747855,DE 3257747856,3257747903,NL 3257747904,3257747911,DE -3257747912,3257747991,NL +3257747912,3257747967,NL +3257747968,3257747975,DE +3257747976,3257747991,NL 3257747992,3257747999,DE 3257748000,3257748015,NL 3257748016,3257748023,DE -3257748024,3257748063,NL +3257748024,3257748047,NL +3257748048,3257748055,DE +3257748056,3257748063,NL 3257748064,3257748071,DE 3257748072,3257748119,NL 3257748120,3257748127,DE 3257748128,3257748303,NL -3257748304,3257748311,DE -3257748312,3257748383,NL +3257748304,3257748319,DE +3257748320,3257748367,NL +3257748368,3257748375,DE +3257748376,3257748383,NL 3257748384,3257748391,DE 3257748392,3257748423,NL 3257748424,3257748431,DE @@ -117803,7 +112186,9 @@ 3257751352,3257751359,DE 3257751360,3257751391,NL 3257751392,3257751399,DE -3257751400,3257751519,NL +3257751400,3257751407,NL +3257751408,3257751415,DE +3257751416,3257751519,NL 3257751520,3257751527,DE 3257751528,3257751591,NL 3257751592,3257751599,DE @@ -117817,12 +112202,14 @@ 3257751776,3257751783,DE 3257751784,3257751823,NL 3257751824,3257751831,DE -3257751832,3257751871,NL +3257751832,3257751839,NL +3257751840,3257751847,DE +3257751848,3257751871,NL 3257751872,3257751887,DE 3257751888,3257751903,NL 3257751904,3257751911,DE -3257751912,3257751975,NL -3257751976,3257751983,DE +3257751912,3257751967,NL +3257751968,3257751983,DE 3257751984,3257752007,NL 3257752008,3257752015,DE 3257752016,3257752023,NL @@ -117839,7 +112226,9 @@ 3257752168,3257752183,DE 3257752184,3257752343,NL 3257752344,3257752351,DE -3257752352,3257752399,NL +3257752352,3257752367,NL +3257752368,3257752375,DE +3257752376,3257752399,NL 3257752400,3257752407,DE 3257752408,3257752447,NL 3257752448,3257752455,DE @@ -117852,11 +112241,11 @@ 3257752592,3257752607,NL 3257752608,3257752615,DE 3257752616,3257752623,NL -3257752624,3257752631,DE -3257752632,3257752655,NL +3257752624,3257752639,DE +3257752640,3257752655,NL 3257752656,3257752663,DE -3257752664,3257752727,NL -3257752728,3257752735,DE +3257752664,3257752719,NL +3257752720,3257752735,DE 3257752736,3257752783,NL 3257752784,3257752791,DE 3257752792,3257752799,NL @@ -117867,8 +112256,8 @@ 3257752960,3257752967,DE 3257752968,3257752983,NL 3257752984,3257752991,DE -3257752992,3257753071,NL -3257753072,3257753079,DE +3257752992,3257753063,NL +3257753064,3257753079,DE 3257753080,3257753087,NL 3257753088,3257756671,DE 3257756672,3257756735,NL @@ -117881,7 +112270,9 @@ 3257756888,3257756895,DE 3257756896,3257756919,NL 3257756920,3257756935,DE -3257756936,3257757007,NL +3257756936,3257756943,NL +3257756944,3257756951,DE +3257756952,3257757007,NL 3257757008,3257757015,DE 3257757016,3257757079,NL 3257757080,3257757087,DE @@ -117890,8 +112281,8 @@ 3257757256,3257757263,NL 3257757264,3257757271,DE 3257757272,3257757343,NL -3257757344,3257757351,DE -3257757352,3257757375,NL +3257757344,3257757359,DE +3257757360,3257757375,NL 3257757376,3257757383,DE 3257757384,3257757407,NL 3257757408,3257757423,DE @@ -117901,7 +112292,9 @@ 3257757512,3257757519,DE 3257757520,3257757583,NL 3257757584,3257757591,DE -3257757592,3257757639,NL +3257757592,3257757615,NL +3257757616,3257757623,DE +3257757624,3257757639,NL 3257757640,3257757655,DE 3257757656,3257757703,NL 3257757704,3257757711,DE @@ -117911,11 +112304,15 @@ 3257757800,3257757807,DE 3257757808,3257757815,NL 3257757816,3257757831,DE -3257757832,3257757919,NL +3257757832,3257757895,NL +3257757896,3257757903,DE +3257757904,3257757919,NL 3257757920,3257757943,DE 3257757944,3257758143,NL 3257758144,3257758151,DE -3257758152,3257758239,NL +3257758152,3257758183,NL +3257758184,3257758191,DE +3257758192,3257758239,NL 3257758240,3257758247,DE 3257758248,3257758271,NL 3257758272,3257758279,DE @@ -117924,10 +112321,12 @@ 3257758344,3257758375,NL 3257758376,3257758383,DE 3257758384,3257758423,NL -3257758424,3257758431,DE -3257758432,3257758511,NL +3257758424,3257758439,DE +3257758440,3257758511,NL 3257758512,3257758519,DE -3257758520,3257758567,NL +3257758520,3257758535,NL +3257758536,3257758543,DE +3257758544,3257758567,NL 3257758568,3257758575,DE 3257758576,3257758591,NL 3257758592,3257758599,DE @@ -117959,7 +112358,11 @@ 3257759288,3257759295,DE 3257759296,3257759415,NL 3257759416,3257759431,DE -3257759432,3257759575,NL +3257759432,3257759463,NL +3257759464,3257759471,DE +3257759472,3257759479,NL +3257759480,3257759487,DE +3257759488,3257759575,NL 3257759576,3257759583,DE 3257759584,3257759591,NL 3257759592,3257759599,DE @@ -117993,8 +112396,8 @@ 3257760120,3257760127,DE 3257760128,3257760167,NL 3257760168,3257760175,DE -3257760176,3257760231,NL -3257760232,3257760239,DE +3257760176,3257760223,NL +3257760224,3257760239,DE 3257760240,3257760263,NL 3257760264,3257760271,DE 3257760272,3257760303,NL @@ -118011,7 +112414,9 @@ 3257760560,3257760575,DE 3257760576,3257760655,NL 3257760656,3257760663,DE -3257760664,3257760791,NL +3257760664,3257760751,NL +3257760752,3257760759,DE +3257760760,3257760791,NL 3257760792,3257760799,DE 3257760800,3257760839,NL 3257760840,3257760847,DE @@ -118021,7 +112426,9 @@ 3257760928,3257760935,DE 3257760936,3257760959,NL 3257760960,3257760967,DE -3257760968,3257761055,NL +3257760968,3257761023,NL +3257761024,3257761031,DE +3257761032,3257761055,NL 3257761056,3257761071,DE 3257761072,3257761151,NL 3257761152,3257761159,DE @@ -118039,7 +112446,9 @@ 3257761952,3257761959,DE 3257761960,3257762023,NL 3257762024,3257762031,DE -3257762032,3257762175,NL +3257762032,3257762119,NL +3257762120,3257762127,DE +3257762128,3257762175,NL 3257762176,3257762183,DE 3257762184,3257762215,NL 3257762216,3257762223,DE @@ -118054,8 +112463,8 @@ 3257762696,3257762711,NL 3257762712,3257762719,DE 3257762720,3257762807,NL -3257762808,3257762815,DE -3257762816,3257762863,NL +3257762808,3257762823,DE +3257762824,3257762863,NL 3257762864,3257762871,DE 3257762872,3257762895,NL 3257762896,3257762903,DE @@ -118093,7 +112502,9 @@ 3257764248,3257764255,DE 3257764256,3257764287,NL 3257764288,3257764295,DE -3257764296,3257764487,NL +3257764296,3257764343,NL +3257764344,3257764351,DE +3257764352,3257764487,NL 3257764488,3257764511,DE 3257764512,3257764543,NL 3257764544,3257764551,DE @@ -118133,9 +112544,17 @@ 3257765376,3257768959,DE 3257768960,3257769071,NL 3257769072,3257769079,DE -3257769080,3257769215,NL +3257769080,3257769151,NL +3257769152,3257769159,DE +3257769160,3257769199,NL +3257769200,3257769207,DE +3257769208,3257769215,NL 3257769216,3257769223,DE -3257769224,3257769543,NL +3257769224,3257769479,NL +3257769480,3257769487,DE +3257769488,3257769527,NL +3257769528,3257769535,DE +3257769536,3257769543,NL 3257769544,3257769551,DE 3257769552,3257769567,NL 3257769568,3257769575,DE @@ -118174,12 +112593,16 @@ 3257770632,3257770687,NL 3257770688,3257770695,DE 3257770696,3257770767,NL -3257770768,3257770775,DE -3257770776,3257770823,NL +3257770768,3257770783,DE +3257770784,3257770823,NL 3257770824,3257770831,DE -3257770832,3257770879,NL +3257770832,3257770863,NL +3257770864,3257770871,DE +3257770872,3257770879,NL 3257770880,3257770887,DE -3257770888,3257770911,NL +3257770888,3257770895,NL +3257770896,3257770903,DE +3257770904,3257770911,NL 3257770912,3257770919,DE 3257770920,3257771007,NL 3257771008,3257772551,DE @@ -118205,11 +112628,15 @@ 3257772968,3257772975,DE 3257772976,3257772991,NL 3257772992,3257772999,DE -3257773000,3257773095,NL +3257773000,3257773071,NL +3257773072,3257773079,DE +3257773080,3257773095,NL 3257773096,3257773103,DE 3257773104,3257773199,NL 3257773200,3257773223,DE -3257773224,3257773303,NL +3257773224,3257773271,NL +3257773272,3257773279,DE +3257773280,3257773303,NL 3257773304,3257773311,DE 3257773312,3257773391,NL 3257773392,3257773399,DE @@ -118261,8 +112688,8 @@ 3257774984,3257774999,DE 3257775000,3257775015,NL 3257775016,3257775023,DE -3257775024,3257775047,NL -3257775048,3257775055,DE +3257775024,3257775031,NL +3257775032,3257775055,DE 3257775056,3257775063,NL 3257775064,3257775071,DE 3257775072,3257775103,NL @@ -118307,7 +112734,9 @@ 3257777800,3257777807,DE 3257777808,3257777855,NL 3257777856,3257777863,DE -3257777864,3257777935,NL +3257777864,3257777895,NL +3257777896,3257777903,DE +3257777904,3257777935,NL 3257777936,3257777943,DE 3257777944,3257777975,NL 3257777976,3257777983,DE @@ -118321,9 +112750,13 @@ 3257778072,3257778079,DE 3257778080,3257778087,NL 3257778088,3257778103,DE -3257778104,3257778159,NL +3257778104,3257778119,NL +3257778120,3257778127,DE +3257778128,3257778159,NL 3257778160,3257778167,DE -3257778168,3257778439,NL +3257778168,3257778383,NL +3257778384,3257778391,DE +3257778392,3257778439,NL 3257778440,3257778447,DE 3257778448,3257778479,NL 3257778480,3257778487,DE @@ -118347,8 +112780,8 @@ 3257778960,3257778975,DE 3257778976,3257779055,NL 3257779056,3257779063,DE -3257779064,3257779079,NL -3257779080,3257779087,DE +3257779064,3257779071,NL +3257779072,3257779087,DE 3257779088,3257779095,NL 3257779096,3257779103,DE 3257779104,3257779111,NL @@ -118359,7 +112792,9 @@ 3257780744,3257780751,DE 3257780752,3257780775,NL 3257780776,3257780783,DE -3257780784,3257780967,NL +3257780784,3257780831,NL +3257780832,3257780839,DE +3257780840,3257780967,NL 3257780968,3257780983,DE 3257780984,3257780999,NL 3257781000,3257781007,DE @@ -118379,9 +112814,11 @@ 3257781392,3257781399,DE 3257781400,3257781431,NL 3257781432,3257781439,DE -3257781440,3257781479,NL -3257781480,3257781487,DE -3257781488,3257781567,NL +3257781440,3257781447,NL +3257781448,3257781455,DE +3257781456,3257781479,NL +3257781480,3257781495,DE +3257781496,3257781567,NL 3257781568,3257781575,DE 3257781576,3257781591,NL 3257781592,3257781599,DE @@ -118394,14 +112831,14 @@ 3257781720,3257781791,NL 3257781792,3257781799,DE 3257781800,3257781807,NL -3257781808,3257781815,DE -3257781816,3257781839,NL -3257781840,3257781847,DE -3257781848,3257781863,NL +3257781808,3257781823,DE +3257781824,3257781839,NL +3257781840,3257781855,DE +3257781856,3257781863,NL 3257781864,3257781871,DE -3257781872,3257781895,NL -3257781896,3257781903,DE -3257781904,3257781919,NL +3257781872,3257781887,NL +3257781888,3257781911,DE +3257781912,3257781919,NL 3257781920,3257781927,DE 3257781928,3257781943,NL 3257781944,3257781951,DE @@ -118418,9 +112855,9 @@ 3257782208,3257782239,NL 3257782240,3257782255,DE 3257782256,3257782271,NL -3257782272,3257784831,DE -3257784832,3257784855,NL -3257784856,3257784863,DE +3257782272,3257784839,DE +3257784840,3257784847,NL +3257784848,3257784863,DE 3257784864,3257784871,NL 3257784872,3257784879,DE 3257784880,3257784903,NL @@ -118438,15 +112875,15 @@ 3257785176,3257785183,NL 3257785184,3257785191,DE 3257785192,3257785199,NL -3257785200,3257785215,DE -3257785216,3257785247,NL +3257785200,3257785223,DE +3257785224,3257785247,NL 3257785248,3257785255,DE 3257785256,3257785343,NL 3257785344,3257785359,DE 3257785360,3257785375,NL 3257785376,3257785383,DE -3257785384,3257785415,NL -3257785416,3257785431,DE +3257785384,3257785407,NL +3257785408,3257785431,DE 3257785432,3257785471,NL 3257785472,3257785479,DE 3257785480,3257785623,NL @@ -118485,7 +112922,9 @@ 3257786624,3257786631,DE 3257786632,3257786647,NL 3257786648,3257786655,DE -3257786656,3257786703,NL +3257786656,3257786679,NL +3257786680,3257786687,DE +3257786688,3257786703,NL 3257786704,3257786711,DE 3257786712,3257786719,NL 3257786720,3257786727,DE @@ -118497,7 +112936,9 @@ 3257786864,3257787391,DE 3257787392,3257787503,NL 3257787504,3257787511,DE -3257787512,3257787695,NL +3257787512,3257787543,NL +3257787544,3257787551,DE +3257787552,3257787695,NL 3257787696,3257787703,DE 3257787704,3257787727,NL 3257787728,3257787735,DE @@ -118527,8 +112968,8 @@ 3257788248,3257788255,DE 3257788256,3257788303,NL 3257788304,3257788311,DE -3257788312,3257788415,NL -3257788416,3257789951,DE +3257788312,3257788407,NL +3257788408,3257789951,DE 3257789952,3257789975,NL 3257789976,3257789983,DE 3257789984,3257789999,NL @@ -118537,8 +112978,8 @@ 3257790040,3257790047,DE 3257790048,3257790103,NL 3257790104,3257790111,DE -3257790112,3257790135,NL -3257790136,3257790143,DE +3257790112,3257790127,NL +3257790128,3257790143,DE 3257790144,3257790159,NL 3257790160,3257790167,DE 3257790168,3257790191,NL @@ -118567,7 +113008,9 @@ 3257790880,3257790887,DE 3257790888,3257790903,NL 3257790904,3257790919,DE -3257790920,3257790975,NL +3257790920,3257790927,NL +3257790928,3257790935,DE +3257790936,3257790975,NL 3257790976,3257790991,DE 3257790992,3257790999,NL 3257791000,3257791023,DE @@ -118577,7 +113020,9 @@ 3257791096,3257791103,DE 3257791104,3257791151,NL 3257791152,3257791159,DE -3257791160,3257791223,NL +3257791160,3257791175,NL +3257791176,3257791183,DE +3257791184,3257791223,NL 3257791224,3257791231,DE 3257791232,3257791255,NL 3257791256,3257791263,DE @@ -118633,8 +113078,8 @@ 3257792504,3257792511,DE 3257792512,3257792607,NL 3257792608,3257792615,DE -3257792616,3257792719,NL -3257792720,3257792727,DE +3257792616,3257792711,NL +3257792712,3257792727,DE 3257792728,3257792783,NL 3257792784,3257792791,DE 3257792792,3257792927,NL @@ -118649,18 +113094,18 @@ 3257793216,3257793223,DE 3257793224,3257793231,NL 3257793232,3257793239,DE -3257793240,3257793351,NL +3257793240,3257793271,NL +3257793272,3257793279,DE +3257793280,3257793351,NL 3257793352,3257793359,DE 3257793360,3257793391,NL 3257793392,3257793399,DE 3257793400,3257793415,NL -3257793416,3257793431,DE -3257793432,3257793439,NL -3257793440,3257793447,DE +3257793416,3257793447,DE 3257793448,3257793519,NL 3257793520,3257793527,DE -3257793528,3257793551,NL -3257793552,3257793559,DE +3257793528,3257793543,NL +3257793544,3257793559,DE 3257793560,3257793583,NL 3257793584,3257793591,DE 3257793592,3257793727,NL @@ -118681,7 +113126,9 @@ 3257794328,3257794335,DE 3257794336,3257794351,NL 3257794352,3257794359,DE -3257794360,3257794511,NL +3257794360,3257794471,NL +3257794472,3257794479,DE +3257794480,3257794511,NL 3257794512,3257794519,DE 3257794520,3257794559,NL 3257794560,3257827327,GB @@ -118875,9 +113322,7 @@ 3258121984,3258122239,RU 3258122240,3258128895,FR 3258128896,3258129151,MC -3258129152,3258163967,FR -3258163968,3258164223,BJ -3258164224,3258167551,FR +3258129152,3258167551,FR 3258167552,3258167807,ES 3258167808,3258187775,FR 3258187776,3258231551,SE @@ -119072,9 +113517,13 @@ 3259252480,3259252735,EU 3259252736,3259258623,SE 3259258624,3259258879,ES -3259258880,3259262719,SE +3259258880,3259260927,SE +3259260928,3259261183,DK +3259261184,3259262719,SE 3259262720,3259262975,DK -3259262976,3259266047,SE +3259262976,3259265023,SE +3259265024,3259265535,DE +3259265536,3259266047,SE 3259266048,3259266303,SG 3259266304,3259269375,SE 3259269376,3259269631,FR @@ -119490,7 +113939,9 @@ 3261225504,3261225511,GB 3261225512,3261239237,FR 3261239238,3261239238,EU -3261239239,3261267967,FR +3261239239,3261246655,FR +3261246656,3261246687,GB +3261246688,3261267967,FR 3261267968,3261280512,DE 3261280513,3261280513,EU 3261280514,3261297663,DE @@ -120075,50 +114526,7 @@ 3262473216,3262473323,JP 3262473324,3262473327,KR 3262473328,3262473471,JP -3262473472,3262473473,DE -3262473474,3262473478,US -3262473479,3262473480,CA -3262473481,3262473483,US -3262473484,3262473484,VE -3262473485,3262473485,US -3262473486,3262473486,CA -3262473487,3262473516,US -3262473517,3262473517,CN -3262473518,3262473526,US -3262473527,3262473527,CN -3262473528,3262473538,US -3262473539,3262473539,DE -3262473540,3262473540,US -3262473541,3262473541,DE -3262473542,3262473543,US -3262473544,3262473544,CA -3262473545,3262473548,US -3262473549,3262473549,CA -3262473550,3262473557,US -3262473558,3262473558,DE -3262473559,3262473567,US -3262473568,3262473568,CA -3262473569,3262473570,US -3262473571,3262473571,DE -3262473572,3262473582,US -3262473583,3262473583,CA -3262473584,3262473586,US -3262473587,3262473587,CA -3262473588,3262473658,US -3262473659,3262473659,DE -3262473660,3262473663,US -3262473664,3262473664,CA -3262473665,3262473688,US -3262473689,3262473689,CA -3262473690,3262473691,AR -3262473692,3262473692,CA -3262473693,3262473729,DE -3262473730,3262473735,US -3262473736,3262473736,CA -3262473737,3262473771,US -3262473772,3262473772,DE -3262473773,3262473785,US -3262473786,3262473855,DE +3262473472,3262473855,DE 3262473856,3262473859,US 3262473860,3262473903,DE 3262473904,3262473907,US @@ -120128,185 +114536,7 @@ 3262473964,3262473967,US 3262473968,3262473971,DE 3262473972,3262473983,US -3262473984,3262473985,DE -3262473986,3262473986,TW -3262473987,3262473987,IN -3262473988,3262473988,SG -3262473989,3262473989,IN -3262473990,3262473990,SG -3262473991,3262473991,DE -3262473992,3262473992,SG -3262473993,3262473993,IN -3262473994,3262473995,TW -3262473996,3262473996,MY -3262473997,3262473998,ID -3262473999,3262473999,TW -3262474000,3262474000,SG -3262474001,3262474001,TW -3262474002,3262474002,MY -3262474003,3262474003,TW -3262474004,3262474004,SG -3262474005,3262474005,TW -3262474006,3262474007,SG -3262474008,3262474009,TW -3262474010,3262474010,SG -3262474011,3262474011,ID -3262474012,3262474013,SG -3262474014,3262474014,HK -3262474015,3262474016,SG -3262474017,3262474018,MY -3262474019,3262474026,SG -3262474027,3262474027,CN -3262474028,3262474030,SG -3262474031,3262474031,IN -3262474032,3262474032,MY -3262474033,3262474033,SG -3262474034,3262474034,MY -3262474035,3262474035,SG -3262474036,3262474036,MY -3262474037,3262474037,SG -3262474038,3262474038,MY -3262474039,3262474039,TW -3262474040,3262474041,MY -3262474042,3262474042,CN -3262474043,3262474043,SG -3262474044,3262474044,GB -3262474045,3262474048,SG -3262474049,3262474049,IN -3262474050,3262474061,SG -3262474062,3262474063,CN -3262474064,3262474064,TW -3262474065,3262474065,IN -3262474066,3262474066,SG -3262474067,3262474067,MY -3262474068,3262474068,SG -3262474069,3262474069,MY -3262474070,3262474070,SG -3262474071,3262474071,TW -3262474072,3262474072,IN -3262474073,3262474075,SG -3262474076,3262474076,MY -3262474077,3262474077,SG -3262474078,3262474078,IN -3262474079,3262474079,MY -3262474080,3262474083,SG -3262474084,3262474084,TW -3262474085,3262474087,SG -3262474088,3262474088,MY -3262474089,3262474089,SG -3262474090,3262474091,MY -3262474092,3262474094,SG -3262474095,3262474095,HK -3262474096,3262474097,SG -3262474098,3262474098,MY -3262474099,3262474102,SG -3262474103,3262474103,MY -3262474104,3262474104,CN -3262474105,3262474105,IN -3262474106,3262474106,MY -3262474107,3262474107,CN -3262474108,3262474108,HK -3262474109,3262474110,MY -3262474111,3262474111,TH -3262474112,3262474112,SG -3262474113,3262474113,PH -3262474114,3262474114,IN -3262474115,3262474115,SG -3262474116,3262474116,TW -3262474117,3262474117,IN -3262474118,3262474118,TH -3262474119,3262474119,TW -3262474120,3262474120,BN -3262474121,3262474121,TW -3262474122,3262474122,SG -3262474123,3262474125,MY -3262474126,3262474126,IN -3262474127,3262474128,SG -3262474129,3262474130,MY -3262474131,3262474131,IN -3262474132,3262474133,MY -3262474134,3262474134,CN -3262474135,3262474136,SG -3262474137,3262474137,TW -3262474138,3262474139,CN -3262474140,3262474140,TW -3262474141,3262474142,SG -3262474143,3262474143,PH -3262474144,3262474150,SG -3262474151,3262474151,MY -3262474152,3262474152,SG -3262474153,3262474153,IN -3262474154,3262474154,SG -3262474155,3262474155,MY -3262474156,3262474156,IN -3262474157,3262474157,SG -3262474158,3262474159,MY -3262474160,3262474162,SG -3262474163,3262474163,MY -3262474164,3262474164,IN -3262474165,3262474165,CN -3262474166,3262474166,SG -3262474167,3262474167,HK -3262474168,3262474168,TW -3262474169,3262474169,DE -3262474170,3262474170,SG -3262474171,3262474171,MY -3262474172,3262474172,SG -3262474173,3262474173,CN -3262474174,3262474174,TW -3262474175,3262474175,SG -3262474176,3262474176,MY -3262474177,3262474177,SG -3262474178,3262474178,TW -3262474179,3262474179,CN -3262474180,3262474180,MY -3262474181,3262474181,SG -3262474182,3262474182,MY -3262474183,3262474185,SG -3262474186,3262474186,MY -3262474187,3262474187,SG -3262474188,3262474188,MY -3262474189,3262474189,SG -3262474190,3262474190,CN -3262474191,3262474192,SG -3262474193,3262474193,PH -3262474194,3262474194,SG -3262474195,3262474195,MY -3262474196,3262474196,IN -3262474197,3262474198,SG -3262474199,3262474199,CN -3262474200,3262474200,MY -3262474201,3262474201,SG -3262474202,3262474203,CN -3262474204,3262474204,IN -3262474205,3262474205,SG -3262474206,3262474206,IN -3262474207,3262474207,MY -3262474208,3262474208,SG -3262474209,3262474209,MY -3262474210,3262474210,TW -3262474211,3262474211,SG -3262474212,3262474212,MY -3262474213,3262474213,SG -3262474214,3262474214,CN -3262474215,3262474215,IN -3262474216,3262474216,SG -3262474217,3262474217,MY -3262474218,3262474218,SG -3262474219,3262474219,MY -3262474220,3262474222,IN -3262474223,3262474223,SG -3262474224,3262474224,MY -3262474225,3262474225,SG -3262474226,3262474226,MY -3262474227,3262474227,IN -3262474228,3262474228,SG -3262474229,3262474230,IN -3262474231,3262474231,SG -3262474232,3262474234,IN -3262474235,3262474236,MY -3262474237,3262474238,SG -3262474239,3262474239,DE +3262473984,3262474239,DE 3262474240,3262474255,AU 3262474256,3262474259,NZ 3262474260,3262474263,AU @@ -120326,58 +114556,7 @@ 3262474792,3262474815,JP 3262474816,3262474895,DE 3262474896,3262475007,JP -3262475008,3262475009,DE -3262475010,3262475023,US -3262475024,3262475024,CO -3262475025,3262475025,US -3262475026,3262475027,DE -3262475028,3262475029,US -3262475030,3262475033,DE -3262475034,3262475036,US -3262475037,3262475037,DE -3262475038,3262475042,US -3262475043,3262475043,DE -3262475044,3262475044,US -3262475045,3262475045,BR -3262475046,3262475065,US -3262475066,3262475068,MX -3262475069,3262475072,US -3262475073,3262475075,BR -3262475076,3262475076,US -3262475077,3262475077,BR -3262475078,3262475079,US -3262475080,3262475080,CA -3262475081,3262475081,US -3262475082,3262475082,BR -3262475083,3262475083,US -3262475084,3262475084,MX -3262475085,3262475085,BR -3262475086,3262475087,US -3262475088,3262475088,BR -3262475089,3262475090,US -3262475091,3262475092,DE -3262475093,3262475094,BR -3262475095,3262475095,MX -3262475096,3262475140,US -3262475141,3262475141,BR -3262475142,3262475167,US -3262475168,3262475168,DE -3262475169,3262475174,US -3262475175,3262475175,DE -3262475176,3262475185,US -3262475186,3262475186,DE -3262475187,3262475189,US -3262475190,3262475190,MX -3262475191,3262475191,BR -3262475192,3262475192,MX -3262475193,3262475201,US -3262475202,3262475205,BR -3262475206,3262475209,US -3262475210,3262475210,BR -3262475211,3262475213,US -3262475214,3262475214,DE -3262475215,3262475222,US -3262475223,3262475263,DE +3262475008,3262475263,DE 3262475264,3262475267,MU 3262475268,3262475271,US 3262475272,3262475275,IT @@ -120895,106 +115074,7 @@ 3262478056,3262478063,CH 3262478064,3262478067,DE 3262478068,3262478071,KE -3262478072,3262478081,DE -3262478082,3262478082,ES -3262478083,3262478083,SA -3262478084,3262478084,TR -3262478085,3262478085,FR -3262478086,3262478088,DE -3262478089,3262478089,AT -3262478090,3262478090,DE -3262478091,3262478091,HU -3262478092,3262478092,PT -3262478093,3262478093,SA -3262478094,3262478094,PT -3262478095,3262478095,DE -3262478096,3262478096,PL -3262478097,3262478097,KE -3262478098,3262478098,TR -3262478099,3262478099,DE -3262478100,3262478100,TR -3262478101,3262478101,ZW -3262478102,3262478102,TR -3262478103,3262478103,DE -3262478104,3262478104,TR -3262478105,3262478105,PL -3262478106,3262478106,IT -3262478107,3262478107,TR -3262478108,3262478108,DE -3262478109,3262478109,AE -3262478110,3262478113,DE -3262478114,3262478114,TR -3262478115,3262478115,DE -3262478116,3262478116,NO -3262478117,3262478117,NA -3262478118,3262478118,DE -3262478119,3262478119,SA -3262478120,3262478120,NA -3262478121,3262478121,AO -3262478122,3262478122,NA -3262478123,3262478123,CY -3262478124,3262478124,DE -3262478125,3262478125,PT -3262478126,3262478126,CY -3262478127,3262478127,GR -3262478128,3262478128,CH -3262478129,3262478129,HU -3262478130,3262478130,FR -3262478131,3262478131,SK -3262478132,3262478132,ES -3262478133,3262478133,TR -3262478134,3262478134,ES -3262478135,3262478135,TR -3262478136,3262478137,HU -3262478138,3262478138,TR -3262478139,3262478139,DE -3262478140,3262478140,FR -3262478141,3262478143,TR -3262478144,3262478145,DE -3262478146,3262478146,GR -3262478147,3262478147,FR -3262478148,3262478148,KZ -3262478149,3262478149,UA -3262478150,3262478151,DE -3262478152,3262478152,PL -3262478153,3262478153,TR -3262478154,3262478154,DE -3262478155,3262478155,CU -3262478156,3262478156,TR -3262478157,3262478157,DE -3262478158,3262478158,IT -3262478159,3262478159,IL -3262478160,3262478160,TR -3262478161,3262478161,ZW -3262478162,3262478162,SA -3262478163,3262478163,FR -3262478164,3262478164,ZW -3262478165,3262478165,SK -3262478166,3262478166,TR -3262478167,3262478167,KZ -3262478168,3262478168,ES -3262478169,3262478169,PL -3262478170,3262478171,FR -3262478172,3262478172,GR -3262478173,3262478174,TR -3262478175,3262478175,DE -3262478176,3262478176,TR -3262478177,3262478177,DE -3262478178,3262478178,MZ -3262478179,3262478180,TR -3262478181,3262478181,CN -3262478182,3262478182,ES -3262478183,3262478183,PL -3262478184,3262478184,MZ -3262478185,3262478185,PL -3262478186,3262478186,ES -3262478187,3262478187,PT -3262478188,3262478188,TR -3262478189,3262478189,NA -3262478190,3262478191,DE -3262478192,3262478192,ZA -3262478193,3262478194,NA -3262478195,3262478211,DE +3262478072,3262478211,DE 3262478212,3262478215,NL 3262478216,3262478219,FR 3262478220,3262478223,SE @@ -121020,1260 +115100,11 @@ 3262478324,3262478327,BE 3262478328,3262478331,ES 3262478332,3262478335,GB -3262478336,3262478337,DE -3262478338,3262478338,PL -3262478339,3262478343,DE -3262478344,3262478344,IT -3262478345,3262478345,CH -3262478346,3262478346,PT -3262478347,3262478347,DE -3262478348,3262478348,DK -3262478349,3262478349,BE -3262478350,3262478350,AT -3262478351,3262478351,TR -3262478352,3262478352,CH -3262478353,3262478353,DK -3262478354,3262478355,DE -3262478356,3262478356,FR -3262478357,3262478358,DE -3262478359,3262478360,FR -3262478361,3262478361,DE -3262478362,3262478362,FR -3262478363,3262478363,CH -3262478364,3262478364,PT -3262478365,3262478366,DE -3262478367,3262478367,HU -3262478368,3262478368,DE -3262478369,3262478369,NO -3262478370,3262478370,CH -3262478371,3262478371,DE -3262478372,3262478373,CH -3262478374,3262478374,PT -3262478375,3262478376,FR -3262478377,3262478377,DE -3262478378,3262478378,CH -3262478379,3262478379,DE -3262478380,3262478381,FR -3262478382,3262478382,AE -3262478383,3262478383,DE -3262478384,3262478384,AE -3262478385,3262478385,ZA -3262478386,3262478386,DE -3262478387,3262478387,IT -3262478388,3262478388,DE -3262478389,3262478389,CH -3262478390,3262478390,ES -3262478391,3262478391,HU -3262478392,3262478393,DE -3262478394,3262478394,IT -3262478395,3262478396,DE -3262478397,3262478397,PT -3262478398,3262478398,HU -3262478399,3262478399,DE -3262478400,3262478400,GB -3262478401,3262478401,DE -3262478402,3262478402,IT -3262478403,3262478403,CZ -3262478404,3262478404,FI -3262478405,3262478406,GB -3262478407,3262478412,DE -3262478413,3262478413,ES -3262478414,3262478414,PL -3262478415,3262478415,SE -3262478416,3262478416,SA -3262478417,3262478417,DE -3262478418,3262478418,AT -3262478419,3262478419,FR -3262478420,3262478421,DE -3262478422,3262478422,CH -3262478423,3262478423,SA -3262478424,3262478424,FR -3262478425,3262478425,IT -3262478426,3262478426,NO -3262478427,3262478428,FR -3262478429,3262478429,PT -3262478430,3262478430,CH -3262478431,3262478431,HU -3262478432,3262478432,RE -3262478433,3262478433,AT -3262478434,3262478434,PT -3262478435,3262478435,IT -3262478436,3262478437,DE -3262478438,3262478438,ZA -3262478439,3262478439,DE -3262478440,3262478440,SE -3262478441,3262478441,FR -3262478442,3262478442,IT -3262478443,3262478443,DE -3262478444,3262478444,AT -3262478445,3262478445,PT -3262478446,3262478449,DE -3262478450,3262478450,TR -3262478451,3262478451,FR -3262478452,3262478452,IL -3262478453,3262478453,DE -3262478454,3262478454,SE -3262478455,3262478455,IT -3262478456,3262478456,DE -3262478457,3262478457,GB -3262478458,3262478458,HU -3262478459,3262478459,ES -3262478460,3262478460,CY -3262478461,3262478465,DE -3262478466,3262478466,FR -3262478467,3262478467,HU -3262478468,3262478468,DE -3262478469,3262478469,FR -3262478470,3262478470,DE -3262478471,3262478471,ES -3262478472,3262478472,DE -3262478473,3262478473,FR -3262478474,3262478474,HU -3262478475,3262478476,DE -3262478477,3262478478,CH -3262478479,3262478479,DK -3262478480,3262478480,DE -3262478481,3262478481,DK -3262478482,3262478482,IT -3262478483,3262478483,FR -3262478484,3262478484,DE -3262478485,3262478485,CH -3262478486,3262478487,FR -3262478488,3262478488,HU -3262478489,3262478489,HR -3262478490,3262478490,SE -3262478491,3262478491,DE -3262478492,3262478492,CH -3262478493,3262478493,DE -3262478494,3262478494,FR -3262478495,3262478495,DE -3262478496,3262478496,PT -3262478497,3262478500,DE -3262478501,3262478501,CH -3262478502,3262478502,SE -3262478503,3262478503,ZA -3262478504,3262478504,FR -3262478505,3262478505,IT -3262478506,3262478506,PT -3262478507,3262478507,IT -3262478508,3262478508,PT -3262478509,3262478509,NL -3262478510,3262478513,DE -3262478514,3262478514,SE -3262478515,3262478515,PT -3262478516,3262478519,DE -3262478520,3262478520,CH -3262478521,3262478521,NL -3262478522,3262478522,DE -3262478523,3262478523,FR -3262478524,3262478524,ES -3262478525,3262478526,DE -3262478527,3262478527,ES -3262478528,3262478528,NL -3262478529,3262478529,ES -3262478530,3262478530,DE -3262478531,3262478531,FR -3262478532,3262478536,DE -3262478537,3262478537,HU -3262478538,3262478538,DE -3262478539,3262478539,FI -3262478540,3262478540,HU -3262478541,3262478542,DE -3262478543,3262478543,AT -3262478544,3262478544,NL -3262478545,3262478546,DE -3262478547,3262478547,FR -3262478548,3262478548,ES -3262478549,3262478549,FR -3262478550,3262478550,DE -3262478551,3262478551,PL -3262478552,3262478552,HU -3262478553,3262478553,PL -3262478554,3262478554,SE -3262478555,3262478555,DE -3262478556,3262478556,GB -3262478557,3262478557,DE -3262478558,3262478558,IT -3262478559,3262478560,DE -3262478561,3262478562,FR -3262478563,3262478563,DK -3262478564,3262478564,RU -3262478565,3262478566,FR -3262478567,3262478567,HU -3262478568,3262478568,DE -3262478569,3262478569,TR -3262478570,3262478570,FR -3262478571,3262478594,DE -3262478595,3262478595,CH -3262478596,3262478596,PT -3262478597,3262478597,SE -3262478598,3262478599,DE -3262478600,3262478600,IT -3262478601,3262478601,KW -3262478602,3262478602,FR -3262478603,3262478604,DE -3262478605,3262478605,ES -3262478606,3262478606,FI -3262478607,3262478607,GR -3262478608,3262478608,DE -3262478609,3262478609,IT -3262478610,3262478610,ES -3262478611,3262478611,HU -3262478612,3262478620,DE -3262478621,3262478621,SE -3262478622,3262478622,TR -3262478623,3262478623,ES -3262478624,3262478624,FR -3262478625,3262478625,DE -3262478626,3262478626,HU -3262478627,3262478627,DE -3262478628,3262478628,HU -3262478629,3262478629,DE -3262478630,3262478630,FR -3262478631,3262478631,PL -3262478632,3262478632,CW -3262478633,3262478633,AT -3262478634,3262478634,ES -3262478635,3262478635,SA -3262478636,3262478636,CH -3262478637,3262478637,GB -3262478638,3262478639,DE -3262478640,3262478640,PT -3262478641,3262478641,DE -3262478642,3262478642,CH -3262478643,3262478643,DE -3262478644,3262478644,ES -3262478645,3262478645,DE -3262478646,3262478646,AT -3262478647,3262478647,FR -3262478648,3262478648,PT -3262478649,3262478649,CZ -3262478650,3262478650,ES -3262478651,3262478651,FR -3262478652,3262478653,ES -3262478654,3262478655,DE -3262478656,3262478656,PL -3262478657,3262478657,DE -3262478658,3262478658,ES -3262478659,3262478659,DE -3262478660,3262478660,SK -3262478661,3262478661,BE -3262478662,3262478662,TR -3262478663,3262478663,AT -3262478664,3262478664,ES -3262478665,3262478665,DE -3262478666,3262478666,AT -3262478667,3262478667,DE -3262478668,3262478668,IT -3262478669,3262478670,DE -3262478671,3262478671,FR -3262478672,3262478673,DE -3262478674,3262478674,SK -3262478675,3262478675,PL -3262478676,3262478676,CH -3262478677,3262478677,HU -3262478678,3262478678,IT -3262478679,3262478679,FR -3262478680,3262478680,GB -3262478681,3262478681,ES -3262478682,3262478682,CH -3262478683,3262478683,IT -3262478684,3262478684,BE -3262478685,3262478685,DE -3262478686,3262478686,FR -3262478687,3262478687,ES -3262478688,3262478688,TR -3262478689,3262478689,GB -3262478690,3262478690,AT -3262478691,3262478691,CH -3262478692,3262478692,PL -3262478693,3262478693,TR -3262478694,3262478694,CH -3262478695,3262478695,DE -3262478696,3262478696,LI -3262478697,3262478697,ES -3262478698,3262478698,IT -3262478699,3262478699,ES -3262478700,3262478700,IT -3262478701,3262478701,DE -3262478702,3262478702,CH -3262478703,3262478703,FR -3262478704,3262478704,IT -3262478705,3262478706,PT -3262478707,3262478707,ES -3262478708,3262478721,DE -3262478722,3262478722,FR -3262478723,3262478724,DE -3262478725,3262478725,IT -3262478726,3262478726,FR -3262478727,3262478727,AT -3262478728,3262478728,NL -3262478729,3262478729,SK -3262478730,3262478730,IT -3262478731,3262478731,PT -3262478732,3262478732,PL -3262478733,3262478733,SK -3262478734,3262478735,DE -3262478736,3262478736,HU -3262478737,3262478737,ES -3262478738,3262478738,SK -3262478739,3262478739,SE -3262478740,3262478740,FR -3262478741,3262478741,DK -3262478742,3262478742,CH -3262478743,3262478743,FR -3262478744,3262478744,GR -3262478745,3262478745,IT -3262478746,3262478746,SE -3262478747,3262478748,DE -3262478749,3262478751,FR -3262478752,3262478752,PT -3262478753,3262478753,IE -3262478754,3262478754,DE -3262478755,3262478755,DK -3262478756,3262478756,DE -3262478757,3262478757,AT -3262478758,3262478758,FR -3262478759,3262478759,CH -3262478760,3262478760,TR -3262478761,3262478761,HU -3262478762,3262478762,CY -3262478763,3262478763,ES -3262478764,3262478764,DE -3262478765,3262478766,ES -3262478767,3262478767,PT -3262478768,3262478768,PL -3262478769,3262478769,ES -3262478770,3262478770,IT -3262478771,3262478771,SK -3262478772,3262478772,FR -3262478773,3262478773,CZ -3262478774,3262478774,DE -3262478775,3262478775,CH -3262478776,3262478776,ES -3262478777,3262478778,IT -3262478779,3262478779,ES -3262478780,3262478780,PT -3262478781,3262478781,PL -3262478782,3262478782,MA -3262478783,3262478783,ES -3262478784,3262478785,TR -3262478786,3262478786,DE -3262478787,3262478787,PT -3262478788,3262478788,NO -3262478789,3262478789,GR -3262478790,3262478790,DE -3262478791,3262478791,GB -3262478792,3262478792,PT -3262478793,3262478793,FR -3262478794,3262478794,PT -3262478795,3262478795,PL -3262478796,3262478796,HU -3262478797,3262478797,CY -3262478798,3262478798,IT -3262478799,3262478799,HU -3262478800,3262478800,PL -3262478801,3262478801,DE -3262478802,3262478802,IT -3262478803,3262478803,ES -3262478804,3262478804,DE -3262478805,3262478806,GR -3262478807,3262478807,CH -3262478808,3262478808,HU -3262478809,3262478809,TR -3262478810,3262478810,CH -3262478811,3262478811,FR -3262478812,3262478812,PL -3262478813,3262478813,LB -3262478814,3262478851,DE -3262478852,3262478853,CH -3262478854,3262478855,DE -3262478856,3262478856,FR -3262478857,3262478857,LI -3262478858,3262478860,DE -3262478861,3262478861,FR -3262478862,3262478862,DE -3262478863,3262478863,AT -3262478864,3262478864,NL -3262478865,3262478865,DE -3262478866,3262478866,CH -3262478867,3262478867,GB -3262478868,3262478868,IT -3262478869,3262478870,FR -3262478871,3262478872,DE -3262478873,3262478873,NL -3262478874,3262478874,AT -3262478875,3262478875,DE -3262478876,3262478876,GB -3262478877,3262478877,DE -3262478878,3262478878,AT -3262478879,3262478881,DE -3262478882,3262478882,GR -3262478883,3262478886,DE -3262478887,3262478887,NL -3262478888,3262478888,DK -3262478889,3262478890,FR -3262478891,3262478893,DE -3262478894,3262478894,AT -3262478895,3262478895,DE -3262478896,3262478896,NL -3262478897,3262478897,FR -3262478898,3262478898,GB -3262478899,3262478899,SE -3262478900,3262478900,GB -3262478901,3262478901,DE -3262478902,3262478902,IT -3262478903,3262478904,DE -3262478905,3262478905,SE -3262478906,3262478909,DE -3262478910,3262478910,DK -3262478911,3262478911,BH -3262478912,3262478912,NL -3262478913,3262478913,FR -3262478914,3262478914,DE -3262478915,3262478915,NL -3262478916,3262478920,DE -3262478921,3262478921,AT -3262478922,3262478924,DE -3262478925,3262478925,NL -3262478926,3262478926,AT -3262478927,3262478927,DE -3262478928,3262478928,DK -3262478929,3262478929,GB -3262478930,3262478931,DE -3262478932,3262478932,CH -3262478933,3262478935,DE -3262478936,3262478937,CH -3262478938,3262478938,NL -3262478939,3262478939,GB -3262478940,3262478940,NL -3262478941,3262478941,DE -3262478942,3262478942,BE -3262478943,3262478943,SI -3262478944,3262478945,DE -3262478946,3262478946,IE -3262478947,3262478947,DE -3262478948,3262478948,IT -3262478949,3262478949,SE -3262478950,3262478954,DE -3262478955,3262478955,FR -3262478956,3262478956,DE -3262478957,3262478957,PT -3262478958,3262478958,SE -3262478959,3262478961,NL -3262478962,3262478963,DE -3262478964,3262478964,CH -3262478965,3262478966,DE -3262478967,3262478967,NL -3262478968,3262478968,ES -3262478969,3262478969,DE -3262478970,3262478970,BE -3262478971,3262478971,DE -3262478972,3262478972,NO -3262478973,3262478973,CH -3262478974,3262478974,GB -3262478975,3262478980,DE -3262478981,3262478981,IT -3262478982,3262478982,DE -3262478983,3262478983,NL -3262478984,3262478984,CH -3262478985,3262478985,PT -3262478986,3262478986,DE -3262478987,3262478987,GB -3262478988,3262478988,IE -3262478989,3262478989,NL -3262478990,3262478990,DE -3262478991,3262478992,FR -3262478993,3262478993,NL -3262478994,3262478997,DE -3262478998,3262478998,GB -3262478999,3262478999,AT -3262479000,3262479000,CH -3262479001,3262479001,AT -3262479002,3262479002,DE -3262479003,3262479003,FR -3262479004,3262479007,DE -3262479008,3262479008,NL -3262479009,3262479009,NO -3262479010,3262479011,NL -3262479012,3262479012,DE -3262479013,3262479013,NL -3262479014,3262479014,DE -3262479015,3262479015,CH -3262479016,3262479016,SE -3262479017,3262479017,DK -3262479018,3262479018,IT -3262479019,3262479019,DE -3262479020,3262479022,CH -3262479023,3262479024,DE -3262479025,3262479025,NL -3262479026,3262479027,DE -3262479028,3262479028,CH -3262479029,3262479029,DE -3262479030,3262479030,ES -3262479031,3262479031,AT -3262479032,3262479036,DE -3262479037,3262479037,AT -3262479038,3262479038,DK -3262479039,3262479039,DE -3262479040,3262479040,NL -3262479041,3262479041,CH -3262479042,3262479042,DK -3262479043,3262479043,FR -3262479044,3262479044,DE -3262479045,3262479045,IT -3262479046,3262479046,DE -3262479047,3262479047,AT -3262479048,3262479048,NL -3262479049,3262479050,DE -3262479051,3262479051,GB -3262479052,3262479052,DE -3262479053,3262479053,NL -3262479054,3262479056,DE -3262479057,3262479057,GB -3262479058,3262479058,FR -3262479059,3262479059,IT -3262479060,3262479062,DE -3262479063,3262479063,CH -3262479064,3262479064,FR -3262479065,3262479065,DE -3262479066,3262479066,IT -3262479067,3262479067,DE -3262479068,3262479068,ES -3262479069,3262479069,FR -3262479070,3262479070,ES -3262479071,3262479074,DE -3262479075,3262479075,CH -3262479076,3262479076,BE -3262479077,3262479077,DE -3262479078,3262479078,IT -3262479079,3262479079,ES -3262479080,3262479080,LU -3262479081,3262479081,CH -3262479082,3262479082,IT -3262479083,3262479083,NL -3262479084,3262479084,CH -3262479085,3262479085,IT -3262479086,3262479086,FR -3262479087,3262479088,DE -3262479089,3262479089,CH -3262479090,3262479090,FR -3262479091,3262479091,DE -3262479092,3262479092,IT -3262479093,3262479093,FR -3262479094,3262479095,GB -3262479096,3262479096,ES -3262479097,3262479097,FR -3262479098,3262479098,GB -3262479099,3262479099,DE -3262479100,3262479100,DK -3262479101,3262479101,CH -3262479102,3262479102,IT -3262479103,3262479105,DE -3262479106,3262479106,ES -3262479107,3262479107,IT -3262479108,3262479108,AT -3262479109,3262479109,FR -3262479110,3262479110,DE -3262479111,3262479111,LU -3262479112,3262479115,DE -3262479116,3262479116,IT -3262479117,3262479117,CH -3262479118,3262479118,GR -3262479119,3262479120,DE -3262479121,3262479121,ES -3262479122,3262479122,FR -3262479123,3262479123,DE -3262479124,3262479124,FR -3262479125,3262479125,IL -3262479126,3262479130,DE -3262479131,3262479131,NL -3262479132,3262479132,AT -3262479133,3262479133,NL -3262479134,3262479134,ES -3262479135,3262479139,DE -3262479140,3262479140,NL -3262479141,3262479142,DE -3262479143,3262479143,GB -3262479144,3262479144,CH -3262479145,3262479145,NO -3262479146,3262479146,DE -3262479147,3262479147,IT -3262479148,3262479149,ES -3262479150,3262479151,DE -3262479152,3262479152,NL -3262479153,3262479153,DE -3262479154,3262479154,FR -3262479155,3262479155,NL -3262479156,3262479156,DE -3262479157,3262479157,ES -3262479158,3262479158,DE -3262479159,3262479159,FR -3262479160,3262479160,DE -3262479161,3262479161,FR -3262479162,3262479162,DE -3262479163,3262479163,FR -3262479164,3262479164,DE -3262479165,3262479167,CH -3262479168,3262479168,DE -3262479169,3262479169,IT -3262479170,3262479170,CH -3262479171,3262479171,ES -3262479172,3262479174,DE -3262479175,3262479175,FR -3262479176,3262479178,DE -3262479179,3262479179,AT -3262479180,3262479180,NL -3262479181,3262479181,DE -3262479182,3262479182,LU -3262479183,3262479183,DK -3262479184,3262479184,CH -3262479185,3262479185,IT -3262479186,3262479186,ES -3262479187,3262479187,DE -3262479188,3262479188,CH -3262479189,3262479189,ES -3262479190,3262479191,IT -3262479192,3262479192,FR -3262479193,3262479193,GB -3262479194,3262479194,DE -3262479195,3262479195,BE -3262479196,3262479196,DE -3262479197,3262479197,GB -3262479198,3262479199,DE -3262479200,3262479200,NL -3262479201,3262479201,HU -3262479202,3262479202,FR -3262479203,3262479208,DE -3262479209,3262479209,ES -3262479210,3262479212,DE -3262479213,3262479213,NO -3262479214,3262479214,DE -3262479215,3262479215,IT -3262479216,3262479219,DE -3262479220,3262479220,NL -3262479221,3262479223,DE -3262479224,3262479224,BE -3262479225,3262479225,FR -3262479226,3262479226,DE -3262479227,3262479227,NL -3262479228,3262479228,DK -3262479229,3262479233,DE -3262479234,3262479234,GB -3262479235,3262479236,DE -3262479237,3262479238,NL -3262479239,3262479239,FR -3262479240,3262479240,DE -3262479241,3262479242,FR -3262479243,3262479243,NL -3262479244,3262479244,IT -3262479245,3262479249,DE -3262479250,3262479250,AT -3262479251,3262479252,DE -3262479253,3262479253,NL -3262479254,3262479254,FR -3262479255,3262479255,DE -3262479256,3262479256,IT -3262479257,3262479257,US -3262479258,3262479261,DE -3262479262,3262479262,CH -3262479263,3262479264,DE -3262479265,3262479265,CH -3262479266,3262479266,FR -3262479267,3262479267,DE -3262479268,3262479268,NL -3262479269,3262479269,DE -3262479270,3262479271,DK -3262479272,3262479272,IT -3262479273,3262479273,DE -3262479274,3262479274,ES -3262479275,3262479275,IT -3262479276,3262479276,DE -3262479277,3262479277,NL -3262479278,3262479278,DE -3262479279,3262479279,ES -3262479280,3262479280,DE -3262479281,3262479281,FR -3262479282,3262479282,DE -3262479283,3262479283,IT -3262479284,3262479284,NO -3262479285,3262479289,DE -3262479290,3262479290,BE -3262479291,3262479293,DE -3262479294,3262479294,FR -3262479295,3262479295,DE -3262479296,3262479296,IT -3262479297,3262479300,DE -3262479301,3262479301,ES -3262479302,3262479303,DE -3262479304,3262479304,AT -3262479305,3262479307,DE -3262479308,3262479308,DK -3262479309,3262479309,SE -3262479310,3262479312,DE -3262479313,3262479313,FR -3262479314,3262479318,DE -3262479319,3262479319,DK -3262479320,3262479320,DE -3262479321,3262479321,GR -3262479322,3262479323,CH -3262479324,3262479324,NL -3262479325,3262479325,ES -3262479326,3262479327,DE -3262479328,3262479328,DK -3262479329,3262479329,ES -3262479330,3262479330,NL -3262479331,3262479332,FR -3262479333,3262479333,HU -3262479334,3262479334,NL -3262479335,3262479335,DE -3262479336,3262479336,FR -3262479337,3262479337,ES -3262479338,3262479338,DE -3262479339,3262479339,NL -3262479340,3262479340,CH -3262479341,3262479341,DE -3262479342,3262479342,PT -3262479343,3262479343,NO -3262479344,3262479344,NL -3262479345,3262479345,DE -3262479346,3262479346,DK -3262479347,3262479347,NO -3262479348,3262479350,IT -3262479351,3262479351,DE -3262479352,3262479352,IT -3262479353,3262479353,CH -3262479354,3262479355,DE -3262479356,3262479356,CH -3262479357,3262479357,FR -3262479358,3262479361,DE -3262479362,3262479362,PT -3262479363,3262479366,DE -3262479367,3262479367,CH -3262479368,3262479368,DE -3262479369,3262479369,FR -3262479370,3262479370,CH -3262479371,3262479371,GB -3262479372,3262479372,DE -3262479373,3262479373,IT -3262479374,3262479374,DE -3262479375,3262479375,NL -3262479376,3262479377,FR -3262479378,3262479378,DE -3262479379,3262479379,CH -3262479380,3262479380,AT -3262479381,3262479381,FR -3262479382,3262479385,DE -3262479386,3262479386,NL -3262479387,3262479387,DK -3262479388,3262479389,DE -3262479390,3262479390,DK -3262479391,3262479391,NO -3262479392,3262479393,DE -3262479394,3262479394,FR -3262479395,3262479395,NL -3262479396,3262479396,CH -3262479397,3262479397,IT -3262479398,3262479399,DE -3262479400,3262479400,NL -3262479401,3262479402,DE -3262479403,3262479403,GB -3262479404,3262479404,DE -3262479405,3262479405,IE -3262479406,3262479406,GB -3262479407,3262479410,DE -3262479411,3262479411,ES -3262479412,3262479413,DE -3262479414,3262479414,CH -3262479415,3262479415,DE -3262479416,3262479416,DK -3262479417,3262479419,DE -3262479420,3262479420,ES -3262479421,3262479421,DE -3262479422,3262479422,SE -3262479423,3262479426,DE -3262479427,3262479427,IT -3262479428,3262479429,FR -3262479430,3262479430,GB -3262479431,3262479433,DE -3262479434,3262479434,IT -3262479435,3262479437,DE -3262479438,3262479438,IT -3262479439,3262479439,DE -3262479440,3262479440,AT -3262479441,3262479441,DK -3262479442,3262479442,IT -3262479443,3262479443,GR -3262479444,3262479444,ES -3262479445,3262479445,DE -3262479446,3262479446,IT -3262479447,3262479448,DE -3262479449,3262479449,GB -3262479450,3262479452,DE -3262479453,3262479453,CH -3262479454,3262479455,DE -3262479456,3262479456,IT -3262479457,3262479462,DE -3262479463,3262479463,IT -3262479464,3262479464,NL -3262479465,3262479465,DE -3262479466,3262479466,GB -3262479467,3262479467,CH -3262479468,3262479469,DE -3262479470,3262479471,GB -3262479472,3262479472,DE -3262479473,3262479473,CH -3262479474,3262479474,BE -3262479475,3262479475,CH -3262479476,3262479476,GB -3262479477,3262479477,BE -3262479478,3262479478,IT -3262479479,3262479480,DE -3262479481,3262479481,LI -3262479482,3262479482,IT -3262479483,3262479483,DE -3262479484,3262479484,AT -3262479485,3262479489,DE -3262479490,3262479490,IT -3262479491,3262479492,DE -3262479493,3262479493,CH -3262479494,3262479494,DE -3262479495,3262479495,BE -3262479496,3262479498,DE -3262479499,3262479499,ES -3262479500,3262479502,IT -3262479503,3262479503,DE -3262479504,3262479504,GB -3262479505,3262479507,DE -3262479508,3262479508,HU -3262479509,3262479509,FR -3262479510,3262479513,DE -3262479514,3262479514,FR -3262479515,3262479515,ES -3262479516,3262479517,DE -3262479518,3262479518,GB -3262479519,3262479519,GR -3262479520,3262479521,DE -3262479522,3262479522,CH -3262479523,3262479526,DE -3262479527,3262479528,NL -3262479529,3262479529,DE -3262479530,3262479530,BE -3262479531,3262479535,DE -3262479536,3262479536,GB -3262479537,3262479538,DE -3262479539,3262479539,IT -3262479540,3262479540,DE -3262479541,3262479541,CH -3262479542,3262479543,DE -3262479544,3262479544,IT -3262479545,3262479545,BE -3262479546,3262479546,GB -3262479547,3262479547,AT -3262479548,3262479548,CH -3262479549,3262479549,IT -3262479550,3262479552,DE -3262479553,3262479553,IL -3262479554,3262479554,DK -3262479555,3262479555,FR -3262479556,3262479556,IE -3262479557,3262479558,DE -3262479559,3262479559,SE -3262479560,3262479560,DE -3262479561,3262479561,BE -3262479562,3262479562,GB -3262479563,3262479563,DE -3262479564,3262479564,GB -3262479565,3262479565,SE -3262479566,3262479566,NL -3262479567,3262479567,CH -3262479568,3262479568,NO -3262479569,3262479573,DE -3262479574,3262479574,CH -3262479575,3262479575,DE -3262479576,3262479576,NL -3262479577,3262479577,FR -3262479578,3262479578,DE -3262479579,3262479579,ZA -3262479580,3262479580,DE -3262479581,3262479581,IT -3262479582,3262479583,DE -3262479584,3262479584,NL -3262479585,3262479585,DE -3262479586,3262479586,GR -3262479587,3262479588,DE -3262479589,3262479589,IT -3262479590,3262479590,GB -3262479591,3262479591,NL -3262479592,3262479592,DE -3262479593,3262479593,FR -3262479594,3262479594,DE -3262479595,3262479596,FR -3262479597,3262479598,DE -3262479599,3262479600,IT -3262479601,3262479601,DE -3262479602,3262479602,GB -3262479603,3262479604,DE -3262479605,3262479605,SE -3262479606,3262479606,FR -3262479607,3262479607,NL -3262479608,3262479609,DE -3262479610,3262479610,SI -3262479611,3262479611,DE -3262479612,3262479612,ES -3262479613,3262479613,NL -3262479614,3262479617,DE -3262479618,3262479618,NO -3262479619,3262479619,ES -3262479620,3262479620,GB -3262479621,3262479622,DE -3262479623,3262479623,CH -3262479624,3262479624,ES -3262479625,3262479625,NL -3262479626,3262479626,AT -3262479627,3262479628,DE -3262479629,3262479629,SI -3262479630,3262479630,NL -3262479631,3262479631,HU -3262479632,3262479632,DE -3262479633,3262479633,LU -3262479634,3262479634,DE -3262479635,3262479636,GB -3262479637,3262479637,ES -3262479638,3262479638,DE -3262479639,3262479639,AT -3262479640,3262479640,FR -3262479641,3262479641,IT -3262479642,3262479642,GB -3262479643,3262479643,DE -3262479644,3262479644,NL -3262479645,3262479645,DE -3262479646,3262479646,GB -3262479647,3262479647,DE -3262479648,3262479648,NO -3262479649,3262479653,DE -3262479654,3262479654,ES -3262479655,3262479655,NL -3262479656,3262479656,CH -3262479657,3262479657,NL -3262479658,3262479658,DE -3262479659,3262479659,NL -3262479660,3262479660,PT -3262479661,3262479662,FR -3262479663,3262479664,DE -3262479665,3262479665,DK -3262479666,3262479667,DE -3262479668,3262479668,NL -3262479669,3262479669,IT -3262479670,3262479670,DK -3262479671,3262479671,IT -3262479672,3262479673,DE -3262479674,3262479674,BE -3262479675,3262479676,DE -3262479677,3262479677,ES -3262479678,3262479678,IT -3262479679,3262479679,AT -3262479680,3262479680,IT -3262479681,3262479681,DE -3262479682,3262479682,IT -3262479683,3262479683,HU -3262479684,3262479685,DE -3262479686,3262479687,FR -3262479688,3262479688,DE -3262479689,3262479689,NL -3262479690,3262479690,LU -3262479691,3262479691,DE -3262479692,3262479692,LU -3262479693,3262479693,DE -3262479694,3262479694,CH -3262479695,3262479695,ES -3262479696,3262479696,CH -3262479697,3262479697,GB -3262479698,3262479698,FR -3262479699,3262479699,NL -3262479700,3262479700,DE -3262479701,3262479701,NL -3262479702,3262479702,AT -3262479703,3262479703,FR -3262479704,3262479707,DE -3262479708,3262479708,CH -3262479709,3262479709,NL -3262479710,3262479711,DE -3262479712,3262479712,GB -3262479713,3262479713,DE -3262479714,3262479714,AT -3262479715,3262479715,ES -3262479716,3262479716,DE -3262479717,3262479717,BE -3262479718,3262479720,DE -3262479721,3262479721,AT -3262479722,3262479724,DE -3262479725,3262479725,AT -3262479726,3262479727,DE -3262479728,3262479728,BE -3262479729,3262479730,ES -3262479731,3262479731,CH -3262479732,3262479732,IT -3262479733,3262479734,DE -3262479735,3262479736,CH -3262479737,3262479737,DE -3262479738,3262479738,AT -3262479739,3262479739,DK -3262479740,3262479740,DE -3262479741,3262479741,NL -3262479742,3262479742,FR -3262479743,3262479745,DE -3262479746,3262479746,GB -3262479747,3262479747,CH -3262479748,3262479748,DE -3262479749,3262479749,FR -3262479750,3262479750,AT -3262479751,3262479751,DE -3262479752,3262479752,CH -3262479753,3262479753,DE -3262479754,3262479754,FR -3262479755,3262479755,NL -3262479756,3262479756,FR -3262479757,3262479757,SE -3262479758,3262479762,DE -3262479763,3262479763,NO -3262479764,3262479764,FR -3262479765,3262479765,DE -3262479766,3262479766,CH -3262479767,3262479770,DE -3262479771,3262479771,IT -3262479772,3262479775,DE -3262479776,3262479776,IT -3262479777,3262479777,BE -3262479778,3262479778,NL -3262479779,3262479782,DE -3262479783,3262479783,GB -3262479784,3262479784,AT -3262479785,3262479785,FR -3262479786,3262479786,CH -3262479787,3262479788,DE -3262479789,3262479789,IT -3262479790,3262479790,DE -3262479791,3262479792,IT -3262479793,3262479793,DE -3262479794,3262479794,FR -3262479795,3262479795,CH -3262479796,3262479797,AT -3262479798,3262479799,GB -3262479800,3262479808,DE -3262479809,3262479809,FR -3262479810,3262479810,NL -3262479811,3262479811,ES -3262479812,3262479816,DE -3262479817,3262479817,HU -3262479818,3262479818,DE -3262479819,3262479819,NL -3262479820,3262479820,DE -3262479821,3262479822,NL -3262479823,3262479823,ES -3262479824,3262479824,GB -3262479825,3262479825,DE -3262479826,3262479826,BE -3262479827,3262479827,DE -3262479828,3262479829,CH -3262479830,3262479830,GB -3262479831,3262479832,DE -3262479833,3262479833,ES -3262479834,3262479834,DE -3262479835,3262479835,AT -3262479836,3262479836,NL -3262479837,3262479837,HU -3262479838,3262479838,CH -3262479839,3262479839,NL -3262479840,3262479840,DE -3262479841,3262479841,FR -3262479842,3262479842,DK -3262479843,3262479843,GB -3262479844,3262479844,DE -3262479845,3262479845,CH -3262479846,3262479846,DE -3262479847,3262479847,LU -3262479848,3262479852,DE -3262479853,3262479853,IS -3262479854,3262479855,DE -3262479856,3262479856,CH -3262479857,3262479859,DE -3262479860,3262479860,NL -3262479861,3262479861,NO -3262479862,3262479862,BE -3262479863,3262479863,NL -3262479864,3262479864,DE -3262479865,3262479865,FR -3262479866,3262479866,DE -3262479867,3262479867,SE -3262479868,3262479868,DE -3262479869,3262479869,GB -3262479870,3262479871,DE +3262478336,3262479871,DE 3262479872,3262479881,EU 3262479882,3262479882,DE 3262479883,3262480127,EU -3262480128,3262480133,DE -3262480134,3262480134,AT -3262480135,3262480135,NL -3262480136,3262480136,FR -3262480137,3262480139,DE -3262480140,3262480140,FR -3262480141,3262480141,AT -3262480142,3262480146,DE -3262480147,3262480147,IT -3262480148,3262480148,GB -3262480149,3262480150,DE -3262480151,3262480151,GB -3262480152,3262480154,DE -3262480155,3262480155,ES -3262480156,3262480158,DE -3262480159,3262480159,IT -3262480160,3262480161,DE -3262480162,3262480162,NO -3262480163,3262480164,DE -3262480165,3262480165,FR -3262480166,3262480172,DE -3262480173,3262480173,NL -3262480174,3262480174,DE -3262480175,3262480175,NL -3262480176,3262480176,DE -3262480177,3262480177,CH -3262480178,3262480178,IT -3262480179,3262480179,DE -3262480180,3262480180,FR -3262480181,3262480181,ES -3262480182,3262480184,DE -3262480185,3262480185,FR -3262480186,3262480186,PT -3262480187,3262480187,DE -3262480188,3262480188,FI -3262480189,3262480189,CH -3262480190,3262480190,DE -3262480191,3262480191,NO -3262480192,3262480193,DE -3262480194,3262480194,NL -3262480195,3262480195,GB -3262480196,3262480197,DE -3262480198,3262480198,NL -3262480199,3262480199,GB -3262480200,3262480201,DE -3262480202,3262480202,GB -3262480203,3262480205,DE -3262480206,3262480206,CH -3262480207,3262480212,DE -3262480213,3262480213,FR -3262480214,3262480215,DE -3262480216,3262480216,HU -3262480217,3262480218,DE -3262480219,3262480219,ES -3262480220,3262480220,NL -3262480221,3262480221,BE -3262480222,3262480226,DE -3262480227,3262480227,IE -3262480228,3262480229,DE -3262480230,3262480230,SE -3262480231,3262480232,DE -3262480233,3262480233,SE -3262480234,3262480234,DE -3262480235,3262480235,HU -3262480236,3262480236,DE -3262480237,3262480237,PL -3262480238,3262480238,DE -3262480239,3262480239,NL -3262480240,3262480243,DE -3262480244,3262480244,CH -3262480245,3262480246,DE -3262480247,3262480247,NL -3262480248,3262480248,DE -3262480249,3262480249,NL -3262480250,3262480250,DE -3262480251,3262480251,NL -3262480252,3262480253,DE -3262480254,3262480254,CH -3262480255,3262480260,DE -3262480261,3262480261,BE -3262480262,3262480264,DE -3262480265,3262480265,GB -3262480266,3262480267,DE -3262480268,3262480268,FR -3262480269,3262480269,NL -3262480270,3262480270,DE -3262480271,3262480271,CH -3262480272,3262480272,DK -3262480273,3262480273,DE -3262480274,3262480274,IT -3262480275,3262480275,BE -3262480276,3262480276,ES -3262480277,3262480277,DE -3262480278,3262480278,CH -3262480279,3262480282,DE -3262480283,3262480283,GB -3262480284,3262480293,DE -3262480294,3262480294,FR -3262480295,3262480295,CH -3262480296,3262480296,NO -3262480297,3262480302,DE -3262480303,3262480304,IT -3262480305,3262480305,DE -3262480306,3262480306,AT -3262480307,3262480311,DE -3262480312,3262480312,NL -3262480313,3262480313,FR -3262480314,3262480314,NL -3262480315,3262480315,DE -3262480316,3262480316,IT -3262480317,3262480317,NL -3262480318,3262480318,IT -3262480319,3262480319,AT -3262480320,3262480320,DK -3262480321,3262480321,DE -3262480322,3262480322,GB -3262480323,3262480324,DE -3262480325,3262480325,ES -3262480326,3262480329,DE -3262480330,3262480330,FR -3262480331,3262480331,IT -3262480332,3262480332,DE -3262480333,3262480333,CH -3262480334,3262480334,DE -3262480335,3262480335,GB -3262480336,3262480336,DE -3262480337,3262480337,NL -3262480338,3262480340,DE -3262480341,3262480341,CH -3262480342,3262480342,DE -3262480343,3262480343,DK -3262480344,3262480344,DE -3262480345,3262480345,CH -3262480346,3262480346,DE -3262480347,3262480347,NL -3262480348,3262480348,IS -3262480349,3262480349,AT -3262480350,3262480352,DE -3262480353,3262480353,CH -3262480354,3262480354,DE -3262480355,3262480355,GB -3262480356,3262480356,DE -3262480357,3262480357,GB -3262480358,3262480359,CH -3262480360,3262480365,DE -3262480366,3262480366,AT -3262480367,3262480367,DE -3262480368,3262480368,GB -3262480369,3262480369,FR -3262480370,3262480370,ES -3262480371,3262480371,GB -3262480372,3262480372,DE -3262480373,3262480373,AT -3262480374,3262480374,ES -3262480375,3262480375,NL -3262480376,3262480376,DE -3262480377,3262480378,IT -3262480379,3262480379,CH -3262480380,3262480380,GB -3262480381,3262480381,IT -3262480382,3262480382,ES -3262480383,3262480383,DE +3262480128,3262480383,DE 3262480384,3262488575,GB 3262488576,3262496767,SE 3262496768,3262504959,FR @@ -122392,9 +115223,7 @@ 3262808832,3262809087,DE 3262809088,3262832639,NL 3262832640,3262840319,DE -3262840320,3262842624,NL -3262842625,3262842625,DE -3262842626,3262872063,NL +3262840320,3262872063,NL 3262872064,3262872127,DE 3262872128,3262872159,NL 3262872160,3262872191,DE @@ -122402,15 +115231,11 @@ 3262872256,3262872271,DE 3262872272,3262872275,NL 3262872276,3262872279,DE -3262872280,3262872307,NL -3262872308,3262872308,DE -3262872309,3262872309,NL -3262872310,3262872313,DE -3262872314,3262882815,NL +3262872280,3262882815,NL 3262882816,3262883071,DE 3262883072,3262906367,NL 3262906368,3262964991,CH -3262964992,3262965247,DE +3262964992,3262965247,CH 3262965248,3262971903,CH 3262971904,3263029247,IE 3263029248,3263030271,UA @@ -122880,7 +115705,8 @@ 3264411648,3264413695,PL 3264413696,3264431103,CH 3264431104,3264431615,LI -3264431616,3264441343,CH +3264431616,3264431871,CH +3264432128,3264441343,CH 3264441344,3264441599,PL 3264441600,3264446207,CH 3264446208,3264446463,FR @@ -122905,7 +115731,7 @@ 3264564224,3264565247,IE 3264565248,3264567295,NL 3264567296,3264567551,PL -3264567552,3264567807,GB +3264567552,3264567807,US 3264567808,3264568063,RU 3264568320,3264568575,UA 3264568832,3264569087,FR @@ -122955,7 +115781,9 @@ 3264617984,3264618239,GB 3264618240,3264618495,US 3264618496,3264619007,PL -3264619008,3264619311,BE +3264619008,3264619263,BE +3264619264,3264619279,GB +3264619280,3264619311,BE 3264619312,3264619327,GB 3264619328,3264619359,BE 3264619360,3264619391,GB @@ -123043,9 +115871,9 @@ 3264674304,3264674815,PL 3264674816,3264675327,GB 3264675328,3264675839,RU -3264675840,3264695039,NL -3264695040,3264695295,EU -3264695296,3264697924,NL +3264675840,3264695233,NL +3264695234,3264695234,EU +3264695235,3264697924,NL 3264697925,3264697925,EU 3264697926,3264741375,NL 3264741376,3264749567,SI @@ -123179,24 +116007,29 @@ 3265069056,3265134591,FI 3265134592,3265134863,BE 3265134864,3265135615,CH -3265135616,3265136127,FR -3265136128,3265136639,CH +3265135616,3265136383,FR +3265136384,3265136639,CH 3265136640,3265136895,NL 3265136896,3265136927,CH 3265136928,3265136975,NL 3265136976,3265136991,CH 3265136992,3265137150,NL 3265137151,3265137407,CH -3265137408,3265137663,NL -3265137664,3265139711,CH -3265139712,3265139967,BE -3265139968,3265140735,CH +3265137408,3265137727,NL +3265137728,3265137919,ES +3265137920,3265137951,CH +3265137952,3265137983,NL +3265137984,3265139711,CH +3265139712,3265139999,BE +3265140000,3265140735,CH 3265140736,3265141043,GB 3265141044,3265141055,CH 3265141056,3265141151,GB 3265141152,3265141167,CH -3265141168,3265141759,GB -3265141760,3265142783,CH +3265141168,3265141775,GB +3265141776,3265141791,CH +3265141792,3265141823,GB +3265141824,3265142783,CH 3265142784,3265150975,MT 3265150976,3265159167,AD 3265159168,3265167359,FR @@ -123857,7 +116690,9 @@ 3267660720,3267660791,ES 3267660792,3267661311,EU 3267661312,3267661567,SK -3267661568,3267661679,GB +3267661568,3267661631,GB +3267661632,3267661663,EU +3267661664,3267661679,GB 3267661680,3267661687,EU 3267661688,3267661823,GB 3267661824,3267661851,ES @@ -123917,8 +116752,8 @@ 3267673088,3267673487,DE 3267673488,3267673495,EU 3267673496,3267673543,DE -3267673544,3267673599,EU -3267673600,3267673759,DE +3267673544,3267673567,EU +3267673568,3267673759,DE 3267673760,3267673807,EU 3267673808,3267673855,DE 3267673856,3267674111,EU @@ -124143,9 +116978,7 @@ 3268237856,3268237887,GB 3268237888,3268238335,EU 3268238336,3268238847,GB -3268238848,3268239103,EU -3268239104,3268239359,GB -3268239360,3268239583,EU +3268238848,3268239583,EU 3268239584,3268240127,GB 3268240128,3268240159,EU 3268240160,3268240191,GB @@ -125201,9 +118034,7 @@ 3271933184,3271933439,GB 3271933440,3271933695,SE 3271933696,3271933951,DE -3271933952,3271977533,FR -3271977534,3271977534,US -3271977535,3272015871,FR +3271933952,3272015871,FR 3272015872,3272019967,RO 3272019968,3272020991,IT 3272020992,3272024063,DK @@ -125222,7 +118053,9 @@ 3272070144,3272070175,NL 3272070176,3272070239,GB 3272070240,3272070255,NL -3272070256,3272081407,GB +3272070256,3272073727,GB +3272073728,3272073855,IE +3272073856,3272081407,GB 3272081408,3272081919,PT 3272081920,3272082687,CV 3272082688,3272082943,AO @@ -125329,12 +118162,7 @@ 3272213696,3272213735,IT 3272213736,3272213751,EU 3272213752,3272213759,IT -3272213760,3272213823,NL -3272213824,3272213831,DE -3272213832,3272213839,NL -3272213840,3272213855,RU -3272213856,3272213887,NL -3272213888,3272214015,GB +3272213760,3272214015,NL 3272214016,3272214271,ES 3272214272,3272214527,GB 3272214528,3272215039,FR @@ -125384,7 +118212,8 @@ 3272217216,3272217279,BE 3272217280,3272217303,DE 3272217304,3272217311,BE -3272217312,3272217599,EU +3272217312,3272217343,EU +3272217344,3272217599,GB 3272217600,3272217631,CH 3272217632,3272217855,EU 3272217856,3272217875,ES @@ -125417,7 +118246,7 @@ 3272221952,3272222207,GB 3272222208,3272222463,ES 3272222464,3272222719,NL -3272222720,3272222975,DE +3272222720,3272222975,EU 3272222976,3272223015,GB 3272223016,3272223023,EU 3272223024,3272223039,GB @@ -125615,8 +118444,7 @@ 3272403024,3272403039,EU 3272403040,3272403055,DE 3272403056,3272403071,NL -3272403072,3272403199,EU -3272403200,3272403455,SE +3272403072,3272403455,EU 3272403456,3272404991,FR 3272404992,3272406015,DE 3272406016,3272407039,NL @@ -125624,7 +118452,8 @@ 3272409088,3272417279,BE 3272417280,3272418687,FR 3272418688,3272419327,PL -3272419328,3272420863,DE +3272419328,3272420351,DE +3272420608,3272420863,DE 3272420864,3272420991,PL 3272420992,3272421119,DK 3272421120,3272421375,UA @@ -125635,7 +118464,8 @@ 3272422912,3272423423,SE 3272423424,3272423935,BE 3272423936,3272424447,FR -3272424448,3272426655,GB +3272424448,3272425471,GB +3272425472,3272426655,GB 3272426656,3272426671,IL 3272426672,3272441855,GB 3272441856,3272474623,LV @@ -125714,9 +118544,7 @@ 3272626176,3272627199,DE 3272627200,3272628223,NL 3272628224,3272629247,UA -3272629248,3272633983,RU -3272633984,3272634047,KZ -3272634048,3272638463,RU +3272629248,3272638463,RU 3272638464,3272646655,ES 3272646656,3272646784,DE 3272646785,3272646911,GB @@ -126241,7 +119069,8 @@ 3273439232,3273439743,RO 3273439744,3273440255,DE 3273440256,3273440767,RO -3273440768,3273441279,AT +3273440768,3273441023,AT +3273441024,3273441279,PL 3273441280,3273445375,FR 3273445376,3273447423,GB 3273447424,3273449471,FR @@ -126534,7 +119363,7 @@ 3274410496,3274410751,NL 3274410752,3274411007,AT 3274411008,3274411263,CH -3274411264,3274411519,LI +3274411264,3274411519,DE 3274411520,3274412031,PL 3274412032,3274412287,RU 3274412288,3274412543,NO @@ -127083,8 +119912,8 @@ 3275432960,3275433983,EU 3275433984,3275436543,GB 3275436544,3275436799,EU -3275436800,3275441407,GB -3275441408,3275442175,EU +3275436800,3275441443,GB +3275441444,3275442175,EU 3275442176,3275442723,GB 3275442724,3275443199,EU 3275443200,3275443727,GB @@ -127099,7 +119928,11 @@ 3275447152,3275448319,EU 3275448320,3275449927,GB 3275449928,3275449935,EU -3275449936,3275450879,GB +3275449936,3275449951,GB +3275449952,3275450015,EU +3275450016,3275450207,GB +3275450208,3275450223,EU +3275450224,3275450879,GB 3275450880,3275451231,EU 3275451232,3275451263,GB 3275451264,3275451391,EU @@ -127126,7 +119959,9 @@ 3275475048,3275475327,GB 3275475328,3275475359,EU 3275475360,3275475839,GB -3275475840,3275475967,EU +3275475840,3275475855,EU +3275475856,3275475863,GB +3275475864,3275475967,EU 3275475968,3275476223,GB 3275476224,3275476991,EU 3275476992,3275477567,GB @@ -127515,7 +120350,7 @@ 3275907840,3275908095,DE 3275908096,3275908351,SA 3275908352,3275908607,SE -3275908608,3275908863,US +3275908608,3275908863,DE 3275908864,3275909119,PL 3275909120,3275909375,RU 3275909376,3275909631,UA @@ -127638,7 +120473,11 @@ 3276019960,3276019967,GB 3276019968,3276020503,FR 3276020504,3276020511,GB -3276020512,3276020623,FR +3276020512,3276020575,FR +3276020576,3276020591,GB +3276020592,3276020599,FR +3276020600,3276020607,GB +3276020608,3276020623,FR 3276020624,3276020631,GB 3276020632,3276020679,FR 3276020680,3276020687,GB @@ -127660,7 +120499,9 @@ 3276023088,3276023167,GB 3276023168,3276023207,FR 3276023208,3276023215,BE -3276023216,3276023743,FR +3276023216,3276023255,FR +3276023256,3276023263,GB +3276023264,3276023743,FR 3276023744,3276023767,GB 3276023768,3276023847,FR 3276023848,3276023855,GB @@ -127702,8 +120543,8 @@ 3276027672,3276027679,GB 3276027680,3276027695,FR 3276027696,3276027743,GB -3276027744,3276027791,FR -3276027792,3276027807,GB +3276027744,3276027775,FR +3276027776,3276027807,GB 3276027808,3276027855,FR 3276027856,3276027871,GB 3276027872,3276027951,FR @@ -127818,9 +120659,7 @@ 3276036384,3276036415,GB 3276036416,3276036671,FR 3276036672,3276036863,GB -3276036864,3276037703,FR -3276037704,3276037759,GB -3276037760,3276037887,FR +3276036864,3276037887,FR 3276037888,3276037903,GB 3276037904,3276037959,FR 3276037960,3276037983,GB @@ -127882,8 +120721,8 @@ 3276041920,3276041951,GB 3276041952,3276041967,FR 3276041968,3276041983,GB -3276041984,3276042223,FR -3276042224,3276042239,GB +3276041984,3276042231,FR +3276042232,3276042239,GB 3276042240,3276044351,FR 3276044352,3276044359,GB 3276044360,3276044367,FR @@ -127918,8 +120757,8 @@ 3276045544,3276045551,GB 3276045552,3276045567,FR 3276045568,3276045575,GB -3276045576,3276045583,FR -3276045584,3276045607,GB +3276045576,3276045591,FR +3276045592,3276045607,GB 3276045608,3276045631,FR 3276045632,3276045647,GB 3276045648,3276045767,FR @@ -128117,8 +120956,8 @@ 3276475008,3276475023,IT 3276475024,3276475039,FR 3276475040,3276475055,EU -3276475056,3276475071,IT -3276475072,3276475903,EU +3276475056,3276475079,IT +3276475080,3276475903,EU 3276475904,3276476111,IT 3276476112,3276476119,GB 3276476120,3276476159,IT @@ -128127,8 +120966,8 @@ 3276476672,3276477439,EU 3276477440,3276477999,CH 3276478000,3276478015,EU -3276478016,3276478039,CH -3276478040,3276478319,EU +3276478016,3276478047,CH +3276478048,3276478319,EU 3276478320,3276478335,CH 3276478336,3276478463,EU 3276478464,3276479279,FR @@ -128185,18 +121024,26 @@ 3276492152,3276492159,EU 3276492160,3276492191,GB 3276492192,3276492287,EU -3276492288,3276492831,GB +3276492288,3276492543,GB +3276492544,3276492544,EU +3276492545,3276492574,GB +3276492575,3276492767,EU +3276492768,3276492775,GB +3276492776,3276492776,EU +3276492777,3276492782,GB +3276492783,3276492799,EU +3276492800,3276492831,GB 3276492832,3276492839,EU 3276492840,3276493135,GB 3276493136,3276493151,EU -3276493152,3276493215,GB -3276493216,3276493247,EU +3276493152,3276493183,GB +3276493184,3276493247,EU 3276493248,3276495543,GB 3276495544,3276495551,EU 3276495552,3276495763,GB 3276495764,3276495767,EU -3276495768,3276495831,GB -3276495832,3276495839,EU +3276495768,3276495823,GB +3276495824,3276495839,EU 3276495840,3276496639,GB 3276496640,3276496895,EU 3276496896,3276497279,DE @@ -128988,7 +121835,7 @@ 3276874384,3276874423,ES 3276874424,3276874431,GB 3276874432,3276874447,ES -3276874448,3276874463,GB +3276874448,3276874463,NL 3276874464,3276874559,ES 3276874560,3276874751,GB 3276874752,3276875007,NL @@ -129010,8 +121857,8 @@ 3276878336,3276878399,GB 3276878400,3276878431,FR 3276878432,3276878463,ES -3276878464,3276878575,FR -3276878576,3276878591,GB +3276878464,3276878583,FR +3276878584,3276878591,GB 3276878592,3276878847,FR 3276878848,3276879359,ES 3276879360,3276879431,TR @@ -129079,10 +121926,9 @@ 3276904000,3276904079,SE 3276904080,3276904095,GB 3276904096,3276904143,SE -3276904144,3276904191,GB -3276904192,3276904447,SE -3276904448,3276905311,GB -3276905312,3276905319,ES +3276904144,3276904159,GB +3276904160,3276904447,SE +3276904448,3276905319,GB 3276905320,3276905327,BE 3276905328,3276905335,NL 3276905336,3276905471,GB @@ -129102,7 +121948,9 @@ 3276906456,3276906471,GB 3276906472,3276906487,SE 3276906488,3276906495,GB -3276906496,3276906623,NL +3276906496,3276906583,NL +3276906584,3276906591,GB +3276906592,3276906623,NL 3276906624,3276906751,GB 3276906752,3276906823,NL 3276906824,3276906831,CH @@ -129125,8 +121973,8 @@ 3276911616,3276912607,IT 3276912608,3276912623,GB 3276912624,3276912799,IT -3276912800,3276912831,GB -3276912832,3276912863,IT +3276912800,3276912815,GB +3276912816,3276912863,IT 3276912864,3276912895,GB 3276912896,3276913279,IT 3276913280,3276913295,GB @@ -129150,8 +121998,7 @@ 3276916168,3276916183,GB 3276916184,3276917151,ES 3276917152,3276917167,GI -3276917168,3276917183,GB -3276917184,3276917231,ES +3276917168,3276917231,ES 3276917232,3276917247,FR 3276917248,3276917279,ES 3276917280,3276917295,GB @@ -129283,7 +122130,7 @@ 3277337088,3277337599,PL 3277337600,3277338111,UA 3277338112,3277338623,NO -3277338624,3277339647,RU +3277339136,3277339647,RU 3277339648,3277340159,DE 3277340160,3277340671,RU 3277340672,3277341183,RO @@ -130136,8 +122983,7 @@ 3278940400,3278940403,DE 3278940404,3278940407,FR 3278940408,3278940411,IT -3278940412,3278940412,CH -3278940413,3278940415,DE +3278940412,3278940415,DE 3278940416,3278940419,BE 3278940420,3278940423,DE 3278940424,3278940427,CH @@ -130492,1376 +123338,7 @@ 3278942700,3278942703,TW 3278942704,3278942707,MY 3278942708,3278942719,SG -3278942720,3278942721,DE -3278942722,3278942722,GB -3278942723,3278942724,DE -3278942725,3278942725,GB -3278942726,3278942726,IT -3278942727,3278942727,DE -3278942728,3278942728,CH -3278942729,3278942730,BE -3278942731,3278942731,DE -3278942732,3278942732,ES -3278942733,3278942733,LU -3278942734,3278942734,GB -3278942735,3278942735,DE -3278942736,3278942736,IT -3278942737,3278942737,GB -3278942738,3278942739,DE -3278942740,3278942740,NL -3278942741,3278942741,GB -3278942742,3278942742,DE -3278942743,3278942743,ES -3278942744,3278942748,DE -3278942749,3278942749,GB -3278942750,3278942750,IT -3278942751,3278942751,FR -3278942752,3278942753,CH -3278942754,3278942754,DE -3278942755,3278942755,GB -3278942756,3278942756,DE -3278942757,3278942757,GB -3278942758,3278942759,IT -3278942760,3278942761,DE -3278942762,3278942762,GB -3278942763,3278942763,NL -3278942764,3278942764,FR -3278942765,3278942765,CH -3278942766,3278942766,PL -3278942767,3278942767,FR -3278942768,3278942768,NO -3278942769,3278942769,GB -3278942770,3278942771,DE -3278942772,3278942772,BE -3278942773,3278942773,DE -3278942774,3278942774,CH -3278942775,3278942775,FR -3278942776,3278942776,DE -3278942777,3278942778,GB -3278942779,3278942779,SE -3278942780,3278942781,DE -3278942782,3278942782,ES -3278942783,3278942784,DE -3278942785,3278942785,GR -3278942786,3278942786,SI -3278942787,3278942787,IT -3278942788,3278942789,DE -3278942790,3278942790,ES -3278942791,3278942791,IT -3278942792,3278942792,US -3278942793,3278942793,CH -3278942794,3278942794,DE -3278942795,3278942795,GB -3278942796,3278942796,IT -3278942797,3278942797,GB -3278942798,3278942798,DE -3278942799,3278942799,IT -3278942800,3278942800,FR -3278942801,3278942801,GB -3278942802,3278942803,DE -3278942804,3278942804,IT -3278942805,3278942805,DE -3278942806,3278942806,BE -3278942807,3278942807,AT -3278942808,3278942809,DE -3278942810,3278942810,ES -3278942811,3278942811,NL -3278942812,3278942813,DE -3278942814,3278942814,CH -3278942815,3278942815,DE -3278942816,3278942816,AT -3278942817,3278942817,FR -3278942818,3278942818,DK -3278942819,3278942819,DE -3278942820,3278942820,IT -3278942821,3278942821,NL -3278942822,3278942824,DE -3278942825,3278942825,NL -3278942826,3278942826,RU -3278942827,3278942827,FR -3278942828,3278942828,ES -3278942829,3278942829,NL -3278942830,3278942830,IT -3278942831,3278942831,CH -3278942832,3278942832,IT -3278942833,3278942833,DE -3278942834,3278942834,NL -3278942835,3278942835,AT -3278942836,3278942837,DE -3278942838,3278942838,ES -3278942839,3278942839,FR -3278942840,3278942843,DE -3278942844,3278942844,ES -3278942845,3278942850,DE -3278942851,3278942851,HU -3278942852,3278942852,DE -3278942853,3278942853,ES -3278942854,3278942854,GB -3278942855,3278942855,DE -3278942856,3278942856,NO -3278942857,3278942857,DE -3278942858,3278942858,IT -3278942859,3278942859,DE -3278942860,3278942860,IT -3278942861,3278942861,FR -3278942862,3278942863,DE -3278942864,3278942864,ES -3278942865,3278942865,GB -3278942866,3278942867,NL -3278942868,3278942868,DE -3278942869,3278942869,IT -3278942870,3278942870,CH -3278942871,3278942871,IS -3278942872,3278942872,ES -3278942873,3278942873,IT -3278942874,3278942875,DE -3278942876,3278942876,PL -3278942877,3278942877,DE -3278942878,3278942878,NL -3278942879,3278942879,DK -3278942880,3278942881,DE -3278942882,3278942882,CH -3278942883,3278942883,GB -3278942884,3278942884,DE -3278942885,3278942885,NL -3278942886,3278942886,DE -3278942887,3278942887,IT -3278942888,3278942889,DE -3278942890,3278942890,ES -3278942891,3278942894,DE -3278942895,3278942895,NL -3278942896,3278942896,GB -3278942897,3278942897,CH -3278942898,3278942899,NL -3278942900,3278942903,DE -3278942904,3278942904,BE -3278942905,3278942905,IE -3278942906,3278942907,DE -3278942908,3278942908,GB -3278942909,3278942910,DE -3278942911,3278942911,IT -3278942912,3278942913,DE -3278942914,3278942914,CH -3278942915,3278942915,DE -3278942916,3278942916,CH -3278942917,3278942922,DE -3278942923,3278942923,NL -3278942924,3278942924,DE -3278942925,3278942925,GB -3278942926,3278942930,DE -3278942931,3278942931,CH -3278942932,3278942932,NL -3278942933,3278942933,BE -3278942934,3278942934,IT -3278942935,3278942936,NL -3278942937,3278942937,DE -3278942938,3278942938,CH -3278942939,3278942939,ES -3278942940,3278942940,DE -3278942941,3278942941,IT -3278942942,3278942942,DE -3278942943,3278942944,NL -3278942945,3278942946,DE -3278942947,3278942947,BE -3278942948,3278942948,AT -3278942949,3278942949,CH -3278942950,3278942950,DE -3278942951,3278942951,IT -3278942952,3278942953,DE -3278942954,3278942954,AT -3278942955,3278942955,DE -3278942956,3278942956,IT -3278942957,3278942957,DE -3278942958,3278942958,CH -3278942959,3278942959,DE -3278942960,3278942960,FR -3278942961,3278942961,PT -3278942962,3278942963,NL -3278942964,3278942966,DE -3278942967,3278942967,NO -3278942968,3278942968,NL -3278942969,3278942969,AT -3278942970,3278942970,ES -3278942971,3278942972,IT -3278942973,3278942977,DE -3278942978,3278942978,BE -3278942979,3278942979,FR -3278942980,3278942980,IT -3278942981,3278942983,DE -3278942984,3278942984,IT -3278942985,3278942985,ES -3278942986,3278942986,CH -3278942987,3278942987,BE -3278942988,3278942990,CH -3278942991,3278942991,GB -3278942992,3278942992,DE -3278942993,3278942993,GB -3278942994,3278942994,CH -3278942995,3278942997,DE -3278942998,3278942998,CH -3278942999,3278942999,GB -3278943000,3278943002,DE -3278943003,3278943003,CH -3278943004,3278943005,DE -3278943006,3278943006,FR -3278943007,3278943007,DE -3278943008,3278943008,IT -3278943009,3278943009,DE -3278943010,3278943010,NL -3278943011,3278943011,DE -3278943012,3278943012,CZ -3278943013,3278943013,IT -3278943014,3278943014,DE -3278943015,3278943016,ES -3278943017,3278943017,FR -3278943018,3278943018,CH -3278943019,3278943019,DE -3278943020,3278943020,CH -3278943021,3278943021,BE -3278943022,3278943022,ES -3278943023,3278943023,BE -3278943024,3278943024,FR -3278943025,3278943025,DE -3278943026,3278943026,DK -3278943027,3278943027,DE -3278943028,3278943029,GB -3278943030,3278943030,ES -3278943031,3278943031,NL -3278943032,3278943032,FR -3278943033,3278943033,IT -3278943034,3278943034,DE -3278943035,3278943035,ES -3278943036,3278943036,DE -3278943037,3278943037,FR -3278943038,3278943038,DE -3278943039,3278943039,CH -3278943040,3278943040,IT -3278943041,3278943041,DE -3278943042,3278943042,BE -3278943043,3278943043,SI -3278943044,3278943044,FR -3278943045,3278943048,DE -3278943049,3278943049,GB -3278943050,3278943050,IT -3278943051,3278943052,DE -3278943053,3278943053,IT -3278943054,3278943056,DE -3278943057,3278943057,CH -3278943058,3278943058,FR -3278943059,3278943059,CH -3278943060,3278943065,DE -3278943066,3278943066,GB -3278943067,3278943069,DE -3278943070,3278943070,PL -3278943071,3278943072,DE -3278943073,3278943073,AT -3278943074,3278943074,ES -3278943075,3278943076,FR -3278943077,3278943077,DE -3278943078,3278943079,CH -3278943080,3278943080,BE -3278943081,3278943081,FR -3278943082,3278943082,CH -3278943083,3278943084,DE -3278943085,3278943085,NL -3278943086,3278943087,DE -3278943088,3278943088,NL -3278943089,3278943090,DE -3278943091,3278943091,IT -3278943092,3278943092,ES -3278943093,3278943096,DE -3278943097,3278943097,BE -3278943098,3278943098,DE -3278943099,3278943099,AT -3278943100,3278943100,SE -3278943101,3278943101,AT -3278943102,3278943102,ZA -3278943103,3278943105,DE -3278943106,3278943106,FR -3278943107,3278943107,DE -3278943108,3278943108,FR -3278943109,3278943109,IT -3278943110,3278943110,DK -3278943111,3278943111,GB -3278943112,3278943112,PT -3278943113,3278943113,ES -3278943114,3278943114,CH -3278943115,3278943115,PT -3278943116,3278943116,CH -3278943117,3278943117,DE -3278943118,3278943119,IT -3278943120,3278943120,FR -3278943121,3278943121,AT -3278943122,3278943122,GB -3278943123,3278943123,FR -3278943124,3278943124,BE -3278943125,3278943125,CH -3278943126,3278943126,IT -3278943127,3278943127,DE -3278943128,3278943128,GB -3278943129,3278943130,DE -3278943131,3278943131,BE -3278943132,3278943132,FR -3278943133,3278943133,IT -3278943134,3278943135,NL -3278943136,3278943136,FR -3278943137,3278943137,CH -3278943138,3278943138,BE -3278943139,3278943139,IT -3278943140,3278943140,ES -3278943141,3278943141,NL -3278943142,3278943142,FR -3278943143,3278943143,ES -3278943144,3278943145,DE -3278943146,3278943146,CH -3278943147,3278943147,NL -3278943148,3278943148,FR -3278943149,3278943149,BE -3278943150,3278943150,DE -3278943151,3278943151,NL -3278943152,3278943153,DE -3278943154,3278943154,SE -3278943155,3278943159,DE -3278943160,3278943160,ES -3278943161,3278943161,BE -3278943162,3278943162,ES -3278943163,3278943163,DE -3278943164,3278943164,NL -3278943165,3278943165,SE -3278943166,3278943168,DE -3278943169,3278943169,BE -3278943170,3278943172,FR -3278943173,3278943173,NL -3278943174,3278943174,DE -3278943175,3278943177,ES -3278943178,3278943178,DE -3278943179,3278943179,CH -3278943180,3278943181,DE -3278943182,3278943182,SE -3278943183,3278943183,FR -3278943184,3278943184,DE -3278943185,3278943185,BE -3278943186,3278943186,NL -3278943187,3278943187,DE -3278943188,3278943188,GB -3278943189,3278943191,DE -3278943192,3278943192,LU -3278943193,3278943193,DE -3278943194,3278943194,IT -3278943195,3278943195,DE -3278943196,3278943196,CH -3278943197,3278943197,NL -3278943198,3278943198,GR -3278943199,3278943199,GB -3278943200,3278943200,DE -3278943201,3278943202,CH -3278943203,3278943203,SE -3278943204,3278943206,DE -3278943207,3278943207,IT -3278943208,3278943208,DE -3278943209,3278943209,ES -3278943210,3278943212,IT -3278943213,3278943213,DE -3278943214,3278943214,IT -3278943215,3278943215,GB -3278943216,3278943216,CH -3278943217,3278943217,GB -3278943218,3278943218,IT -3278943219,3278943220,DE -3278943221,3278943221,CH -3278943222,3278943222,DE -3278943223,3278943223,NL -3278943224,3278943225,DE -3278943226,3278943226,FR -3278943227,3278943227,GB -3278943228,3278943228,ES -3278943229,3278943235,DE -3278943236,3278943236,ES -3278943237,3278943237,FR -3278943238,3278943239,DE -3278943240,3278943240,NL -3278943241,3278943242,DE -3278943243,3278943243,ES -3278943244,3278943244,FR -3278943245,3278943245,DE -3278943246,3278943246,NL -3278943247,3278943247,CH -3278943248,3278943248,DE -3278943249,3278943249,ES -3278943250,3278943251,FR -3278943252,3278943252,IT -3278943253,3278943253,DE -3278943254,3278943254,DK -3278943255,3278943255,DE -3278943256,3278943256,FR -3278943257,3278943257,IT -3278943258,3278943260,DE -3278943261,3278943261,ES -3278943262,3278943262,NL -3278943263,3278943263,FR -3278943264,3278943265,DE -3278943266,3278943266,FR -3278943267,3278943267,NL -3278943268,3278943268,DE -3278943269,3278943270,CH -3278943271,3278943271,ES -3278943272,3278943274,DE -3278943275,3278943275,IT -3278943276,3278943277,DE -3278943278,3278943278,GB -3278943279,3278943279,DE -3278943280,3278943280,FR -3278943281,3278943281,IT -3278943282,3278943283,DE -3278943284,3278943284,IT -3278943285,3278943287,DE -3278943288,3278943288,FR -3278943289,3278943289,DE -3278943290,3278943290,IT -3278943291,3278943292,DE -3278943293,3278943293,GB -3278943294,3278943294,IT -3278943295,3278943296,ES -3278943297,3278943297,IT -3278943298,3278943298,PT -3278943299,3278943299,DK -3278943300,3278943300,GB -3278943301,3278943301,CH -3278943302,3278943302,BE -3278943303,3278943303,DK -3278943304,3278943304,FR -3278943305,3278943305,LU -3278943306,3278943306,AT -3278943307,3278943308,DE -3278943309,3278943309,PT -3278943310,3278943310,ES -3278943311,3278943311,BE -3278943312,3278943314,DE -3278943315,3278943316,FR -3278943317,3278943318,DE -3278943319,3278943319,NL -3278943320,3278943320,BE -3278943321,3278943321,DE -3278943322,3278943322,NL -3278943323,3278943323,FR -3278943324,3278943324,GB -3278943325,3278943326,DE -3278943327,3278943328,IT -3278943329,3278943329,DE -3278943330,3278943330,ES -3278943331,3278943331,PL -3278943332,3278943333,DE -3278943334,3278943334,FR -3278943335,3278943335,AT -3278943336,3278943337,IT -3278943338,3278943338,DE -3278943339,3278943339,PT -3278943340,3278943340,ES -3278943341,3278943341,CH -3278943342,3278943343,DE -3278943344,3278943344,GB -3278943345,3278943345,DE -3278943346,3278943346,FR -3278943347,3278943347,DE -3278943348,3278943349,GB -3278943350,3278943351,DE -3278943352,3278943352,NL -3278943353,3278943353,DE -3278943354,3278943355,ES -3278943356,3278943356,FR -3278943357,3278943357,ES -3278943358,3278943358,FR -3278943359,3278943359,ES -3278943360,3278943360,CH -3278943361,3278943361,DE -3278943362,3278943362,IT -3278943363,3278943363,DE -3278943364,3278943364,IT -3278943365,3278943366,DE -3278943367,3278943367,FR -3278943368,3278943369,DE -3278943370,3278943370,FR -3278943371,3278943371,DE -3278943372,3278943372,CH -3278943373,3278943374,GR -3278943375,3278943375,ES -3278943376,3278943376,NO -3278943377,3278943377,IT -3278943378,3278943378,DE -3278943379,3278943379,CH -3278943380,3278943380,ES -3278943381,3278943381,GB -3278943382,3278943382,ES -3278943383,3278943383,PL -3278943384,3278943384,IT -3278943385,3278943385,DE -3278943386,3278943387,FR -3278943388,3278943388,ES -3278943389,3278943389,BE -3278943390,3278943390,ES -3278943391,3278943391,DE -3278943392,3278943392,PL -3278943393,3278943393,CH -3278943394,3278943394,FR -3278943395,3278943395,IT -3278943396,3278943396,NL -3278943397,3278943399,DE -3278943400,3278943400,FR -3278943401,3278943401,DE -3278943402,3278943402,FR -3278943403,3278943403,GB -3278943404,3278943404,DE -3278943405,3278943405,GB -3278943406,3278943406,AT -3278943407,3278943407,DE -3278943408,3278943408,FR -3278943409,3278943409,IT -3278943410,3278943410,NL -3278943411,3278943411,ES -3278943412,3278943412,GB -3278943413,3278943413,NL -3278943414,3278943414,ES -3278943415,3278943415,UA -3278943416,3278943416,NL -3278943417,3278943417,DE -3278943418,3278943418,GB -3278943419,3278943419,ES -3278943420,3278943420,BE -3278943421,3278943422,DE -3278943423,3278943423,IT -3278943424,3278943424,DE -3278943425,3278943425,GB -3278943426,3278943426,DE -3278943427,3278943427,AT -3278943428,3278943428,DE -3278943429,3278943430,IT -3278943431,3278943431,CH -3278943432,3278943432,DE -3278943433,3278943433,GB -3278943434,3278943435,DE -3278943436,3278943436,ES -3278943437,3278943437,FR -3278943438,3278943438,DE -3278943439,3278943439,SE -3278943440,3278943440,DK -3278943441,3278943441,IT -3278943442,3278943442,FR -3278943443,3278943445,DE -3278943446,3278943446,CH -3278943447,3278943447,DE -3278943448,3278943448,FR -3278943449,3278943449,DE -3278943450,3278943450,CH -3278943451,3278943451,AT -3278943452,3278943452,DE -3278943453,3278943453,PT -3278943454,3278943455,DE -3278943456,3278943456,IT -3278943457,3278943457,GB -3278943458,3278943459,DE -3278943460,3278943460,FR -3278943461,3278943464,DE -3278943465,3278943465,ES -3278943466,3278943466,DE -3278943467,3278943467,ES -3278943468,3278943468,DE -3278943469,3278943469,NL -3278943470,3278943471,ES -3278943472,3278943472,BE -3278943473,3278943473,DE -3278943474,3278943474,BE -3278943475,3278943477,DE -3278943478,3278943478,NL -3278943479,3278943481,DE -3278943482,3278943482,IT -3278943483,3278943489,DE -3278943490,3278943490,BE -3278943491,3278943491,DE -3278943492,3278943492,CH -3278943493,3278943494,DE -3278943495,3278943495,FR -3278943496,3278943496,GB -3278943497,3278943497,AT -3278943498,3278943499,DE -3278943500,3278943500,IT -3278943501,3278943501,FR -3278943502,3278943504,DE -3278943505,3278943505,LI -3278943506,3278943506,AT -3278943507,3278943507,FR -3278943508,3278943509,IT -3278943510,3278943510,DE -3278943511,3278943512,IT -3278943513,3278943513,ES -3278943514,3278943514,BE -3278943515,3278943515,DE -3278943516,3278943517,ES -3278943518,3278943518,FR -3278943519,3278943519,HU -3278943520,3278943520,AT -3278943521,3278943521,ES -3278943522,3278943523,DE -3278943524,3278943524,AT -3278943525,3278943525,BE -3278943526,3278943526,FR -3278943527,3278943527,DE -3278943528,3278943528,CH -3278943529,3278943529,DE -3278943530,3278943530,AT -3278943531,3278943531,DE -3278943532,3278943532,NL -3278943533,3278943533,ES -3278943534,3278943534,GB -3278943535,3278943535,BR -3278943536,3278943537,ES -3278943538,3278943538,RE -3278943539,3278943539,IT -3278943540,3278943540,ES -3278943541,3278943542,DE -3278943543,3278943543,IT -3278943544,3278943545,DE -3278943546,3278943546,NL -3278943547,3278943547,CH -3278943548,3278943548,GB -3278943549,3278943549,IL -3278943550,3278943550,IT -3278943551,3278943551,DE -3278943552,3278943552,IT -3278943553,3278943553,DE -3278943554,3278943554,FR -3278943555,3278943555,DE -3278943556,3278943556,FR -3278943557,3278943557,DE -3278943558,3278943558,AT -3278943559,3278943560,DE -3278943561,3278943561,FR -3278943562,3278943564,DE -3278943565,3278943565,GB -3278943566,3278943566,BE -3278943567,3278943567,AE -3278943568,3278943568,NL -3278943569,3278943569,ES -3278943570,3278943570,DE -3278943571,3278943571,BE -3278943572,3278943572,GB -3278943573,3278943573,DE -3278943574,3278943574,DK -3278943575,3278943575,BE -3278943576,3278943576,NL -3278943577,3278943577,FR -3278943578,3278943578,DE -3278943579,3278943579,BE -3278943580,3278943580,IT -3278943581,3278943581,CH -3278943582,3278943582,DE -3278943583,3278943583,NL -3278943584,3278943585,DE -3278943586,3278943586,NL -3278943587,3278943587,ES -3278943588,3278943588,DE -3278943589,3278943589,IT -3278943590,3278943590,DE -3278943591,3278943591,NL -3278943592,3278943592,DE -3278943593,3278943593,PL -3278943594,3278943594,ES -3278943595,3278943595,GB -3278943596,3278943596,GR -3278943597,3278943598,DE -3278943599,3278943599,ES -3278943600,3278943601,DE -3278943602,3278943602,PL -3278943603,3278943603,FR -3278943604,3278943604,ES -3278943605,3278943605,DE -3278943606,3278943606,AT -3278943607,3278943607,DE -3278943608,3278943608,ES -3278943609,3278943609,DE -3278943610,3278943610,BE -3278943611,3278943611,NL -3278943612,3278943613,DE -3278943614,3278943614,IT -3278943615,3278943615,CH -3278943616,3278943616,DE -3278943617,3278943617,ES -3278943618,3278943619,DE -3278943620,3278943620,IT -3278943621,3278943621,CH -3278943622,3278943622,DE -3278943623,3278943623,DK -3278943624,3278943624,DE -3278943625,3278943625,FR -3278943626,3278943628,DE -3278943629,3278943630,FR -3278943631,3278943632,DE -3278943633,3278943633,GB -3278943634,3278943634,DE -3278943635,3278943635,IT -3278943636,3278943636,CH -3278943637,3278943638,IT -3278943639,3278943639,HU -3278943640,3278943641,DE -3278943642,3278943642,FR -3278943643,3278943643,NL -3278943644,3278943645,FR -3278943646,3278943646,IT -3278943647,3278943647,DE -3278943648,3278943648,DK -3278943649,3278943649,DE -3278943650,3278943650,ES -3278943651,3278943651,FR -3278943652,3278943653,IT -3278943654,3278943654,BE -3278943655,3278943655,FR -3278943656,3278943656,AT -3278943657,3278943658,DE -3278943659,3278943659,NL -3278943660,3278943660,CY -3278943661,3278943661,DE -3278943662,3278943662,ES -3278943663,3278943663,CH -3278943664,3278943666,ES -3278943667,3278943667,IT -3278943668,3278943669,DE -3278943670,3278943670,IT -3278943671,3278943672,DE -3278943673,3278943673,ES -3278943674,3278943676,DE -3278943677,3278943677,IT -3278943678,3278943678,BE -3278943679,3278943679,FR -3278943680,3278943680,GB -3278943681,3278943681,CH -3278943682,3278943682,DE -3278943683,3278943683,PT -3278943684,3278943684,AD -3278943685,3278943686,DE -3278943687,3278943687,CH -3278943688,3278943689,IT -3278943690,3278943690,ES -3278943691,3278943692,DE -3278943693,3278943693,PL -3278943694,3278943694,GB -3278943695,3278943695,DE -3278943696,3278943696,GB -3278943697,3278943697,DE -3278943698,3278943698,IT -3278943699,3278943699,FR -3278943700,3278943700,CH -3278943701,3278943701,AT -3278943702,3278943702,FR -3278943703,3278943703,PL -3278943704,3278943705,DE -3278943706,3278943706,ES -3278943707,3278943707,CH -3278943708,3278943710,DE -3278943711,3278943711,IT -3278943712,3278943713,DE -3278943714,3278943714,ES -3278943715,3278943715,DE -3278943716,3278943716,ES -3278943717,3278943719,DE -3278943720,3278943720,CH -3278943721,3278943726,DE -3278943727,3278943727,PL -3278943728,3278943729,DE -3278943730,3278943730,FR -3278943731,3278943731,DK -3278943732,3278943733,CH -3278943734,3278943734,DE -3278943735,3278943735,AD -3278943736,3278943736,DE -3278943737,3278943737,ES -3278943738,3278943740,DE -3278943741,3278943741,PT -3278943742,3278943742,IL -3278943743,3278943745,DE -3278943746,3278943746,CH -3278943747,3278943747,DE -3278943748,3278943749,ES -3278943750,3278943751,DE -3278943752,3278943752,GR -3278943753,3278943753,DE -3278943754,3278943754,FR -3278943755,3278943755,SL -3278943756,3278943756,DE -3278943757,3278943757,FR -3278943758,3278943758,DE -3278943759,3278943759,NL -3278943760,3278943761,DE -3278943762,3278943762,CY -3278943763,3278943763,DE -3278943764,3278943764,FR -3278943765,3278943765,CH -3278943766,3278943766,BE -3278943767,3278943767,ES -3278943768,3278943768,DE -3278943769,3278943769,CZ -3278943770,3278943770,FR -3278943771,3278943771,CH -3278943772,3278943772,ES -3278943773,3278943773,IT -3278943774,3278943774,DE -3278943775,3278943776,PT -3278943777,3278943777,FR -3278943778,3278943778,CH -3278943779,3278943780,DE -3278943781,3278943781,GB -3278943782,3278943782,IT -3278943783,3278943786,DE -3278943787,3278943787,IT -3278943788,3278943788,DE -3278943789,3278943789,ES -3278943790,3278943790,DE -3278943791,3278943791,IT -3278943792,3278943792,FR -3278943793,3278943793,IT -3278943794,3278943794,HU -3278943795,3278943796,DE -3278943797,3278943797,ES -3278943798,3278943798,DE -3278943799,3278943799,IE -3278943800,3278943800,DE -3278943801,3278943801,LU -3278943802,3278943802,DE -3278943803,3278943803,GB -3278943804,3278943804,DE -3278943805,3278943805,DK -3278943806,3278943806,ES -3278943807,3278943807,DE -3278943808,3278943808,IT -3278943809,3278943809,FR -3278943810,3278943810,DE -3278943811,3278943811,GR -3278943812,3278943812,IT -3278943813,3278943813,IN -3278943814,3278943814,ES -3278943815,3278943815,MA -3278943816,3278943816,GB -3278943817,3278943817,FR -3278943818,3278943818,DE -3278943819,3278943819,AT -3278943820,3278943820,DE -3278943821,3278943821,SM -3278943822,3278943822,PL -3278943823,3278943823,DE -3278943824,3278943824,CH -3278943825,3278943826,DE -3278943827,3278943827,AT -3278943828,3278943828,ES -3278943829,3278943829,CH -3278943830,3278943830,ES -3278943831,3278943831,US -3278943832,3278943832,BE -3278943833,3278943833,IT -3278943834,3278943835,GB -3278943836,3278943836,DE -3278943837,3278943837,ES -3278943838,3278943838,DE -3278943839,3278943839,IT -3278943840,3278943845,DE -3278943846,3278943846,GB -3278943847,3278943847,FR -3278943848,3278943848,IT -3278943849,3278943849,DE -3278943850,3278943851,FR -3278943852,3278943852,BE -3278943853,3278943853,GB -3278943854,3278943854,ES -3278943855,3278943855,BE -3278943856,3278943856,DE -3278943857,3278943857,PL -3278943858,3278943858,NL -3278943859,3278943859,DE -3278943860,3278943860,FR -3278943861,3278943862,DE -3278943863,3278943863,IT -3278943864,3278943864,DK -3278943865,3278943865,GB -3278943866,3278943866,IT -3278943867,3278943867,ES -3278943868,3278943868,IT -3278943869,3278943869,IE -3278943870,3278943870,NL -3278943871,3278943871,FR -3278943872,3278943872,DE -3278943873,3278943873,IT -3278943874,3278943874,CH -3278943875,3278943875,IL -3278943876,3278943881,DE -3278943882,3278943882,PL -3278943883,3278943883,CH -3278943884,3278943884,DE -3278943885,3278943885,IT -3278943886,3278943888,DE -3278943889,3278943889,BE -3278943890,3278943890,NL -3278943891,3278943891,ES -3278943892,3278943893,DE -3278943894,3278943894,IT -3278943895,3278943895,DE -3278943896,3278943896,PL -3278943897,3278943897,ES -3278943898,3278943898,IT -3278943899,3278943899,GB -3278943900,3278943900,ES -3278943901,3278943901,DE -3278943902,3278943902,GB -3278943903,3278943903,IT -3278943904,3278943904,DE -3278943905,3278943905,FR -3278943906,3278943907,IT -3278943908,3278943908,GB -3278943909,3278943909,HU -3278943910,3278943910,FR -3278943911,3278943911,DE -3278943912,3278943913,IT -3278943914,3278943914,DE -3278943915,3278943915,PL -3278943916,3278943916,DE -3278943917,3278943917,FR -3278943918,3278943918,ES -3278943919,3278943920,FR -3278943921,3278943921,DE -3278943922,3278943922,ES -3278943923,3278943923,DE -3278943924,3278943924,IT -3278943925,3278943926,ES -3278943927,3278943927,GB -3278943928,3278943928,DE -3278943929,3278943929,PT -3278943930,3278943930,IT -3278943931,3278943932,DE -3278943933,3278943933,ES -3278943934,3278943934,DE -3278943935,3278943935,GR -3278943936,3278943939,DE -3278943940,3278943940,DK -3278943941,3278943941,GB -3278943942,3278943942,NL -3278943943,3278943943,AT -3278943944,3278943944,IT -3278943945,3278943945,NL -3278943946,3278943946,LU -3278943947,3278943947,DE -3278943948,3278943948,ES -3278943949,3278943949,DE -3278943950,3278943950,BE -3278943951,3278943951,LU -3278943952,3278943953,DE -3278943954,3278943954,FR -3278943955,3278943956,DE -3278943957,3278943957,GB -3278943958,3278943958,DK -3278943959,3278943959,DE -3278943960,3278943960,FR -3278943961,3278943964,DE -3278943965,3278943965,CH -3278943966,3278943967,DE -3278943968,3278943968,ES -3278943969,3278943969,PL -3278943970,3278943970,ES -3278943971,3278943971,BE -3278943972,3278943972,IT -3278943973,3278943973,DE -3278943974,3278943974,GR -3278943975,3278943975,CH -3278943976,3278943976,DE -3278943977,3278943977,DK -3278943978,3278943978,DE -3278943979,3278943979,ES -3278943980,3278943980,GB -3278943981,3278943981,DE -3278943982,3278943982,ES -3278943983,3278943983,DE -3278943984,3278943984,AT -3278943985,3278943985,NL -3278943986,3278943987,IT -3278943988,3278943988,ES -3278943989,3278943990,DE -3278943991,3278943991,NL -3278943992,3278943992,IT -3278943993,3278943993,AT -3278943994,3278943995,DE -3278943996,3278943997,CH -3278943998,3278943998,FR -3278943999,3278944001,DE -3278944002,3278944002,GB -3278944003,3278944003,LU -3278944004,3278944006,DE -3278944007,3278944007,NL -3278944008,3278944008,IT -3278944009,3278944009,CH -3278944010,3278944010,NL -3278944011,3278944012,DE -3278944013,3278944013,DK -3278944014,3278944014,IT -3278944015,3278944015,IS -3278944016,3278944016,PL -3278944017,3278944017,DE -3278944018,3278944018,BE -3278944019,3278944020,DE -3278944021,3278944021,IT -3278944022,3278944022,FR -3278944023,3278944023,AT -3278944024,3278944025,CH -3278944026,3278944027,FR -3278944028,3278944028,DE -3278944029,3278944029,IT -3278944030,3278944030,DE -3278944031,3278944031,FR -3278944032,3278944033,DE -3278944034,3278944034,GR -3278944035,3278944035,FR -3278944036,3278944036,US -3278944037,3278944037,FR -3278944038,3278944038,GB -3278944039,3278944039,DE -3278944040,3278944040,FR -3278944041,3278944041,DE -3278944042,3278944042,FR -3278944043,3278944043,DE -3278944044,3278944045,FR -3278944046,3278944046,NL -3278944047,3278944047,GB -3278944048,3278944048,BE -3278944049,3278944049,IT -3278944050,3278944050,DE -3278944051,3278944051,BE -3278944052,3278944052,AT -3278944053,3278944053,IT -3278944054,3278944054,DE -3278944055,3278944055,IT -3278944056,3278944058,DE -3278944059,3278944059,ES -3278944060,3278944060,BE -3278944061,3278944061,FR -3278944062,3278944063,DE -3278944064,3278944064,FR -3278944065,3278944065,IT -3278944066,3278944066,GB -3278944067,3278944067,DE -3278944068,3278944068,ES -3278944069,3278944069,PL -3278944070,3278944070,DE -3278944071,3278944071,DK -3278944072,3278944072,AT -3278944073,3278944073,FR -3278944074,3278944075,ES -3278944076,3278944076,DE -3278944077,3278944077,GB -3278944078,3278944078,DE -3278944079,3278944079,GB -3278944080,3278944080,DE -3278944081,3278944081,GB -3278944082,3278944082,IT -3278944083,3278944084,ES -3278944085,3278944085,PT -3278944086,3278944086,NL -3278944087,3278944087,CH -3278944088,3278944088,IT -3278944089,3278944089,DE -3278944090,3278944090,IT -3278944091,3278944091,MA -3278944092,3278944092,GR -3278944093,3278944094,DE -3278944095,3278944095,AT -3278944096,3278944096,GB -3278944097,3278944097,DE -3278944098,3278944098,SE -3278944099,3278944099,GB -3278944100,3278944102,DE -3278944103,3278944104,IT -3278944105,3278944105,FR -3278944106,3278944106,AT -3278944107,3278944108,DE -3278944109,3278944109,ES -3278944110,3278944111,DE -3278944112,3278944112,NL -3278944113,3278944113,DE -3278944114,3278944114,IT -3278944115,3278944116,ES -3278944117,3278944118,IT -3278944119,3278944119,ES -3278944120,3278944121,DE -3278944122,3278944122,FR -3278944123,3278944123,IT -3278944124,3278944124,DE -3278944125,3278944125,SE -3278944126,3278944126,ES -3278944127,3278944127,IT -3278944128,3278944128,PT -3278944129,3278944129,BE -3278944130,3278944130,DE -3278944131,3278944131,FR -3278944132,3278944132,IE -3278944133,3278944133,IT -3278944134,3278944134,ES -3278944135,3278944135,NL -3278944136,3278944137,DE -3278944138,3278944138,GB -3278944139,3278944139,FR -3278944140,3278944140,PT -3278944141,3278944141,FR -3278944142,3278944142,GB -3278944143,3278944143,AT -3278944144,3278944144,DE -3278944145,3278944145,SE -3278944146,3278944147,DE -3278944148,3278944148,ES -3278944149,3278944149,DE -3278944150,3278944150,IE -3278944151,3278944151,IT -3278944152,3278944152,IS -3278944153,3278944158,DE -3278944159,3278944159,CH -3278944160,3278944160,FR -3278944161,3278944161,DE -3278944162,3278944162,GB -3278944163,3278944163,HU -3278944164,3278944164,IT -3278944165,3278944166,DE -3278944167,3278944167,IT -3278944168,3278944168,CH -3278944169,3278944169,DE -3278944170,3278944171,CH -3278944172,3278944172,DE -3278944173,3278944173,FR -3278944174,3278944174,GB -3278944175,3278944175,DE -3278944176,3278944176,ES -3278944177,3278944177,LU -3278944178,3278944179,DE -3278944180,3278944180,GB -3278944181,3278944181,IT -3278944182,3278944182,FR -3278944183,3278944184,ES -3278944185,3278944185,NL -3278944186,3278944192,DE -3278944193,3278944193,FR -3278944194,3278944194,GB -3278944195,3278944195,IT -3278944196,3278944197,DE -3278944198,3278944198,IT -3278944199,3278944199,AT -3278944200,3278944200,DE -3278944201,3278944201,SE -3278944202,3278944202,NO -3278944203,3278944203,NL -3278944204,3278944207,DE -3278944208,3278944208,NL -3278944209,3278944209,PL -3278944210,3278944210,AT -3278944211,3278944211,DE -3278944212,3278944212,FR -3278944213,3278944213,DK -3278944214,3278944214,GB -3278944215,3278944215,IT -3278944216,3278944216,DE -3278944217,3278944217,IT -3278944218,3278944219,DE -3278944220,3278944220,GB -3278944221,3278944221,GR -3278944222,3278944222,IT -3278944223,3278944224,DE -3278944225,3278944225,NL -3278944226,3278944226,RU -3278944227,3278944227,IT -3278944228,3278944230,DE -3278944231,3278944231,CH -3278944232,3278944232,NL -3278944233,3278944233,GB -3278944234,3278944234,AT -3278944235,3278944235,DE -3278944236,3278944236,IT -3278944237,3278944238,DE -3278944239,3278944239,SE -3278944240,3278944240,FR -3278944241,3278944241,IT -3278944242,3278944242,ES -3278944243,3278944243,DE -3278944244,3278944244,ES -3278944245,3278944245,BE -3278944246,3278944246,NL -3278944247,3278944247,ES -3278944248,3278944248,NL -3278944249,3278944249,ES -3278944250,3278944250,IT -3278944251,3278944251,AT -3278944252,3278944252,IT -3278944253,3278944254,GB -3278944255,3278944256,DE -3278944257,3278944272,US -3278944273,3278944273,CA -3278944274,3278944274,US -3278944275,3278944275,CA -3278944276,3278944277,US -3278944278,3278944278,VE -3278944279,3278944279,DE -3278944280,3278944284,US -3278944285,3278944285,DE -3278944286,3278944286,US -3278944287,3278944288,CA -3278944289,3278944293,US -3278944294,3278944294,CA -3278944295,3278944346,US -3278944347,3278944347,AR -3278944348,3278944360,US -3278944361,3278944361,AR -3278944362,3278944365,US -3278944366,3278944366,MX -3278944367,3278944367,US -3278944368,3278944368,CA -3278944369,3278944379,US -3278944380,3278944380,DE -3278944381,3278944385,US -3278944386,3278944386,DE -3278944387,3278944388,US -3278944389,3278944389,CA -3278944390,3278944390,AR -3278944391,3278944391,CA -3278944392,3278944395,US -3278944396,3278944396,CA -3278944397,3278944399,US -3278944400,3278944400,BR -3278944401,3278944401,US -3278944402,3278944402,CA -3278944403,3278944412,US -3278944413,3278944413,CA -3278944414,3278944418,US -3278944419,3278944419,DE -3278944420,3278944420,CA -3278944421,3278944421,DE -3278944422,3278944432,US -3278944433,3278944433,DE -3278944434,3278944444,US -3278944445,3278944449,DE -3278944450,3278944451,CA -3278944452,3278944460,DE -3278944461,3278944461,US -3278944462,3278944470,DE -3278944471,3278944471,US -3278944472,3278944513,DE -3278944514,3278944517,US -3278944518,3278944518,DE -3278944519,3278944520,US -3278944521,3278944521,CA -3278944522,3278944522,US -3278944523,3278944523,CA -3278944524,3278944524,US -3278944525,3278944525,CL -3278944526,3278944526,US -3278944527,3278944527,CA -3278944528,3278944528,US -3278944529,3278944529,CA -3278944530,3278944537,US -3278944538,3278944538,AR -3278944539,3278944544,US -3278944545,3278944545,CA -3278944546,3278944555,US -3278944556,3278944556,CL -3278944557,3278944559,US -3278944560,3278944560,AR -3278944561,3278944561,US -3278944562,3278944562,CA -3278944563,3278944563,US -3278944564,3278944564,CA -3278944565,3278944569,US -3278944570,3278944570,DE -3278944571,3278944572,US -3278944573,3278944573,DE -3278944574,3278944574,US -3278944575,3278944575,DE -3278944576,3278944578,US -3278944579,3278944579,DE -3278944580,3278944580,AR -3278944581,3278944581,US -3278944582,3278944583,DE -3278944584,3278944588,US -3278944589,3278944589,DE -3278944590,3278944599,US -3278944600,3278944600,SA -3278944601,3278944606,US -3278944607,3278944608,DE -3278944609,3278944611,US -3278944612,3278944612,DE -3278944613,3278944626,US -3278944627,3278944627,DE -3278944628,3278944633,US -3278944634,3278944634,DE -3278944635,3278944638,US -3278944639,3278944640,DE -3278944641,3278944642,US -3278944643,3278944643,CL -3278944644,3278944650,US -3278944651,3278944651,DE -3278944652,3278944654,US -3278944655,3278944657,AR -3278944658,3278944659,US -3278944660,3278944660,AR -3278944661,3278944661,US -3278944662,3278944663,DE -3278944664,3278944665,AR -3278944666,3278944667,US -3278944668,3278944668,AR -3278944669,3278944670,US -3278944671,3278944671,CL -3278944672,3278944672,DE -3278944673,3278944673,PE -3278944674,3278944674,DE -3278944675,3278944677,US -3278944678,3278944678,CA -3278944679,3278944679,US -3278944680,3278944680,CA -3278944681,3278944683,US -3278944684,3278944686,DE -3278944687,3278944687,US -3278944688,3278944688,AR -3278944689,3278944693,US -3278944694,3278944695,DE -3278944696,3278944696,US -3278944697,3278944697,CA -3278944698,3278944706,US -3278944707,3278944707,DE -3278944708,3278944708,PE -3278944709,3278944709,US -3278944710,3278944710,DE -3278944711,3278944712,CL -3278944713,3278944713,DE -3278944714,3278944714,JM -3278944715,3278944715,CA -3278944716,3278944716,DE -3278944717,3278944718,US -3278944719,3278944719,CA -3278944720,3278944720,US -3278944721,3278944721,CA -3278944722,3278944727,US -3278944728,3278944728,DE -3278944729,3278944730,US -3278944731,3278944731,DE -3278944732,3278944734,US -3278944735,3278944735,DE -3278944736,3278944736,AR -3278944737,3278944739,US -3278944740,3278944740,CA -3278944741,3278944741,DE -3278944742,3278944743,US -3278944744,3278944745,DE -3278944746,3278944749,US -3278944750,3278944750,DE -3278944751,3278944751,US -3278944752,3278944752,DE -3278944753,3278944753,US -3278944754,3278944754,BR -3278944755,3278944755,AR -3278944756,3278944758,US -3278944759,3278944760,DE -3278944761,3278944761,UY -3278944762,3278944763,DE -3278944764,3278944764,AR -3278944765,3278944765,US -3278944766,3278944767,DE +3278942720,3278944767,DE 3278944768,3278944771,DO 3278944772,3278944819,US 3278944820,3278944823,AR @@ -131981,124 +123458,7 @@ 3278945772,3278945779,US 3278945780,3278945783,PE 3278945784,3278945791,US -3278945792,3278945794,DE -3278945795,3278945795,CH -3278945796,3278945796,DE -3278945797,3278945797,BE -3278945798,3278945798,NL -3278945799,3278945799,LU -3278945800,3278945800,DE -3278945801,3278945801,NL -3278945802,3278945802,PT -3278945803,3278945803,GB -3278945804,3278945804,DE -3278945805,3278945805,DK -3278945806,3278945806,FR -3278945807,3278945807,DE -3278945808,3278945808,RU -3278945809,3278945809,DE -3278945810,3278945810,CH -3278945811,3278945815,DE -3278945816,3278945816,GB -3278945817,3278945821,DE -3278945822,3278945822,GR -3278945823,3278945823,CH -3278945824,3278945826,DE -3278945827,3278945827,DK -3278945828,3278945828,FR -3278945829,3278945829,DE -3278945830,3278945831,NL -3278945832,3278945832,DE -3278945833,3278945833,GB -3278945834,3278945834,NL -3278945835,3278945835,CH -3278945836,3278945840,DE -3278945841,3278945841,CH -3278945842,3278945844,DE -3278945845,3278945845,ES -3278945846,3278945846,CH -3278945847,3278945847,DE -3278945848,3278945848,GB -3278945849,3278945849,DE -3278945850,3278945850,NL -3278945851,3278945852,DE -3278945853,3278945853,CH -3278945854,3278945854,FR -3278945855,3278945855,DE -3278945856,3278945856,DK -3278945857,3278945858,DE -3278945859,3278945859,GB -3278945860,3278945860,FR -3278945861,3278945861,IT -3278945862,3278945862,BE -3278945863,3278945863,ES -3278945864,3278945864,IE -3278945865,3278945866,DE -3278945867,3278945867,FR -3278945868,3278945868,NO -3278945869,3278945870,DE -3278945871,3278945871,IT -3278945872,3278945872,FR -3278945873,3278945873,DE -3278945874,3278945874,IT -3278945875,3278945875,ES -3278945876,3278945876,NL -3278945877,3278945877,SE -3278945878,3278945878,FR -3278945879,3278945880,DE -3278945881,3278945881,BE -3278945882,3278945886,DE -3278945887,3278945888,IT -3278945889,3278945890,DE -3278945891,3278945891,CH -3278945892,3278945892,BE -3278945893,3278945893,DE -3278945894,3278945894,AT -3278945895,3278945895,ES -3278945896,3278945896,GB -3278945897,3278945897,IT -3278945898,3278945898,ES -3278945899,3278945899,DE -3278945900,3278945900,FR -3278945901,3278945904,DE -3278945905,3278945905,PT -3278945906,3278945906,FR -3278945907,3278945907,GB -3278945908,3278945908,DE -3278945909,3278945909,FR -3278945910,3278945910,DE -3278945911,3278945911,NL -3278945912,3278945917,DE -3278945918,3278945918,IT -3278945919,3278946049,DE -3278946050,3278946054,US -3278946055,3278946055,CA -3278946056,3278946059,US -3278946060,3278946060,CN -3278946061,3278946061,US -3278946062,3278946062,DE -3278946063,3278946067,US -3278946068,3278946068,DE -3278946069,3278946084,US -3278946085,3278946085,DE -3278946086,3278946091,US -3278946092,3278946092,DE -3278946093,3278946108,US -3278946109,3278946109,GB -3278946110,3278946142,US -3278946143,3278946143,DE -3278946144,3278946166,US -3278946167,3278946167,DE -3278946168,3278946208,US -3278946209,3278946213,DE -3278946214,3278946214,US -3278946215,3278946221,DE -3278946222,3278946222,US -3278946223,3278946224,DE -3278946225,3278946225,US -3278946226,3278946229,DE -3278946230,3278946231,US -3278946232,3278946239,DE +3278945792,3278946239,DE 3278946240,3278946263,US 3278946264,3278946267,DE 3278946268,3278946271,US @@ -132404,7 +123764,7 @@ 3279952896,3279953919,PL 3279953920,3279955967,TR 3279955968,3279958015,DE -3279958016,3279972351,RU +3279958016,3279970303,RU 3279972352,3279974399,AT 3279974400,3279976447,PL 3279976448,3279978495,RU @@ -132437,7 +123797,6 @@ 3279985664,3279985919,DE 3279985920,3279986687,RU 3279986688,3279987199,NL -3279987200,3279987711,RU 3279987712,3279988223,RO 3279988224,3279988735,AM 3279988736,3279989247,RO @@ -132719,7 +124078,9 @@ 3280663296,3280663327,AR 3280663328,3280663391,DE 3280663392,3280663407,HK -3280663408,3280664575,DE +3280663408,3280663807,DE +3280663808,3280663935,IN +3280663936,3280664575,DE 3280664576,3280664703,GB 3280664704,3280664831,IN 3280664832,3280665087,JO @@ -132906,13 +124267,9 @@ 3280979168,3280979183,DE 3280979184,3280979555,GB 3280979556,3280979559,DE -3280979560,3280979576,GB -3280979577,3280979577,DE -3280979578,3280979839,GB +3280979560,3280979839,GB 3280979840,3280979975,DE -3280979976,3280980080,GB -3280980081,3280980081,DE -3280980082,3280980351,GB +3280979976,3280980351,GB 3280980352,3280980367,DE 3280980368,3280980423,GB 3280980424,3280980431,DE @@ -132940,9 +124297,7 @@ 3280982656,3280982671,DE 3280982672,3280982951,GB 3280982952,3280982959,DE -3280982960,3280983112,GB -3280983113,3280983113,DE -3280983114,3280983119,GB +3280982960,3280983119,GB 3280983120,3280983167,DE 3280983168,3280983359,GB 3280983360,3280983375,DE @@ -132987,9 +124342,7 @@ 3280989536,3280989551,DE 3280989552,3280989631,GB 3280989632,3280989647,DE -3280989648,3280989820,GB -3280989821,3280989821,DE -3280989822,3280990047,GB +3280989648,3280990047,GB 3280990048,3280990063,DE 3280990064,3280990191,GB 3280990192,3280990223,DE @@ -133280,8 +124633,8 @@ 3282223104,3282231295,BE 3282231296,3282239487,DE 3282239488,3282284559,SE -3282284560,3282284579,FI -3282284580,3282284591,SE +3282284560,3282284583,FI +3282284584,3282284591,SE 3282284592,3282284595,FI 3282284596,3282284599,SE 3282284600,3282284603,FI @@ -133568,7 +124921,6 @@ 3283535360,3283535871,RO 3283535872,3283536383,GI 3283536384,3283536895,UA -3283536896,3283537407,DK 3283537408,3283537919,PL 3283537920,3283538431,RO 3283538432,3283538943,IT @@ -133772,8 +125124,8 @@ 3283586408,3283586415,EU 3283586416,3283586503,ES 3283586504,3283586511,EU -3283586512,3283586519,ES -3283586520,3283586559,EU +3283586512,3283586527,ES +3283586528,3283586559,EU 3283586560,3283586815,FR 3283586816,3283587071,DE 3283587072,3283587199,EU @@ -134289,7 +125641,6 @@ 3284124672,3284125183,DE 3284125696,3284126207,UA 3284126208,3284127231,CZ -3284127232,3284127743,HK 3284127744,3284128255,RU 3284128256,3284128767,GB 3284128768,3284129279,SE @@ -134400,7 +125751,10 @@ 3284795392,3284803583,FR 3284803584,3284811775,DE 3284811776,3284819967,KE -3284819968,3284828159,GB +3284819968,3284824831,GB +3284824832,3284825087,CH +3284825088,3284825343,CZ +3284825344,3284828159,GB 3284828160,3284844543,AT 3284844544,3284860927,CH 3284860928,3284863743,DE @@ -134547,9 +125901,7 @@ 3285453056,3285453119,EU 3285453120,3285454847,GB 3285454848,3285455103,EU -3285455104,3285455743,DE -3285455744,3285455871,EU -3285455872,3285455887,DE +3285455104,3285455887,DE 3285455888,3285455895,EU 3285455896,3285455903,GB 3285455904,3285455935,EU @@ -134565,9 +125917,7 @@ 3285456832,3285456871,DK 3285456872,3285456879,EU 3285456880,3285456895,DK -3285456896,3285456959,GB -3285456960,3285456975,EU -3285456976,3285457151,GB +3285456896,3285457151,GB 3285457152,3285457167,EU 3285457168,3285457183,SE 3285457184,3285457231,EU @@ -134681,8 +126031,8 @@ 3285466624,3285466879,AT 3285466880,3285466895,BG 3285466896,3285466911,EU -3285466912,3285466959,BG -3285466960,3285466975,EU +3285466912,3285466967,BG +3285466968,3285466975,EU 3285466976,3285467007,BG 3285467008,3285467015,EU 3285467016,3285467023,BG @@ -134722,9 +126072,7 @@ 3285472224,3285472255,EU 3285472256,3285472511,US 3285472512,3285473315,EU -3285473316,3285473411,DE -3285473412,3285473415,EU -3285473416,3285473423,DE +3285473316,3285473423,DE 3285473424,3285473439,EU 3285473440,3285473583,DE 3285473584,3285473591,GB @@ -134736,8 +126084,8 @@ 3285474048,3285474095,EU 3285474096,3285474111,DE 3285474112,3285474175,EU -3285474176,3285474271,DE -3285474272,3285474303,EU +3285474176,3285474287,DE +3285474288,3285474303,EU 3285474304,3285474319,DE 3285474320,3285474335,EU 3285474336,3285474367,DE @@ -134784,7 +126132,9 @@ 3285479392,3285479399,EU 3285479400,3285479407,GB 3285479408,3285479423,FR -3285479424,3285479807,CH +3285479424,3285479679,CH +3285479680,3285479743,EU +3285479744,3285479807,CH 3285479808,3285480447,EU 3285480448,3285480575,CH 3285480576,3285480719,EU @@ -134826,8 +126176,8 @@ 3285486592,3285487103,IT 3285487104,3285487359,HU 3285487360,3285487375,NL -3285487376,3285487423,EU -3285487424,3285487487,GB +3285487376,3285487407,EU +3285487408,3285487487,GB 3285487488,3285487615,EU 3285487616,3285487679,NL 3285487680,3285487743,EU @@ -135956,8 +127306,7 @@ 3285939128,3285939135,EU 3285939136,3285939175,GB 3285939176,3285939183,EU -3285939184,3285939191,GB -3285939192,3285939199,EU +3285939184,3285939199,GB 3285939200,3285939711,ES 3285939712,3285939775,GB 3285939776,3285939839,EU @@ -136390,7 +127739,6 @@ 3286928128,3286928383,DE 3286928640,3286928895,PL 3286928896,3286929151,FI -3286929152,3286929407,DE 3286929408,3286929663,LV 3286929664,3286929919,BE 3286929920,3286930175,SE @@ -137081,8 +128429,20 @@ 3288758272,3288758527,EG 3288758528,3288772607,ZA 3288774656,3288774911,ZA +3288774912,3288775167,EG 3288775168,3288775679,NG -3288776704,3289063423,ZA +3288778240,3288778495,ZA +3288778496,3288778751,MU +3288778752,3288779007,EG +3288779008,3288779263,ZA +3288779264,3288779775,KE +3288781824,3288782591,ZA +3288782592,3288782847,KE +3288783872,3288784127,KE +3288784128,3288784895,ZA +3288787968,3288788223,EG +3288788224,3288788479,ZA +3288788992,3289063423,ZA 3289069568,3289070335,ZA 3289070336,3289070591,ZW 3289070592,3289070847,NA @@ -137228,6 +128588,7 @@ 3290955776,3290980351,CR 3290980352,3290984447,ZA 3290988544,3290992639,KE +3290992640,3290996735,GH 3291004928,3291021311,NG 3291021312,3291029503,ZA 3291029504,3291033343,TZ @@ -137363,21 +128724,190 @@ 3291432192,3291432447,NA 3291432448,3291432703,ZA 3291432704,3291432959,NA -3291432960,3291433471,ZA -3291433472,3291433727,NA +3291432960,3291433215,ZA +3291433216,3291433727,NA 3291433728,3291434239,ZA 3291434240,3291434751,A2 3291434752,3291435007,ZA 3291435008,3291439103,A2 3291447296,3291463679,CI -3291480064,3291545599,SC -3291742208,3292004351,ZA -3292004352,3292266495,SC +3291480064,3291486463,SC +3291486464,3291486719,US +3291486720,3291488255,SC +3291488256,3291488511,US +3291488512,3291492351,SC +3291492352,3291492607,US +3291492608,3291506431,SC +3291506432,3291506687,US +3291506688,3291510015,SC +3291510016,3291510527,US +3291510528,3291522559,SC +3291522560,3291522815,US +3291522816,3291535359,SC +3291535360,3291535615,US +3291535616,3291536639,SC +3291536640,3291536895,US +3291536896,3291539711,SC +3291539712,3291539967,US +3291539968,3291540479,SC +3291540480,3291540735,US +3291540736,3291545599,SC +3291742208,3292004351,US +3292004352,3292018431,SC +3292018432,3292018943,US +3292018944,3292023039,SC +3292023040,3292023295,US +3292023296,3292024063,SC +3292024064,3292024319,US +3292024320,3292025855,SC +3292025856,3292026367,US +3292026368,3292027135,SC +3292027136,3292027391,US +3292027392,3292031487,SC +3292031488,3292031743,US +3292031744,3292037375,SC +3292037376,3292037631,US +3292037632,3292043007,SC +3292043008,3292043263,US +3292043264,3292047871,SC +3292047872,3292048127,US +3292048128,3292048383,SC +3292048384,3292048639,US +3292048640,3292066303,SC +3292066304,3292066559,US +3292066560,3292068095,SC +3292068096,3292068351,US +3292068352,3292079103,SC +3292079104,3292079359,US +3292079360,3292088063,SC +3292088064,3292088319,US +3292088320,3292090367,SC +3292090368,3292090623,US +3292090624,3292094719,SC +3292094720,3292094975,US +3292094976,3292097535,SC +3292097536,3292097791,US +3292097792,3292105215,SC +3292105216,3292105471,US +3292105472,3292112639,SC +3292112640,3292112895,US +3292112896,3292114687,SC +3292114688,3292114943,US +3292114944,3292122623,SC +3292122624,3292122879,US +3292122880,3292128511,SC +3292128512,3292128767,US +3292128768,3292134143,SC +3292134144,3292134399,US +3292134400,3292151551,SC +3292151552,3292151807,US +3292151808,3292162559,SC +3292162560,3292162815,US +3292162816,3292163583,SC +3292163584,3292163839,US +3292163840,3292166143,SC +3292166144,3292166399,US +3292166400,3292169471,SC +3292169472,3292169727,US +3292169728,3292172031,SC +3292172032,3292172287,US +3292172288,3292180479,SC +3292180480,3292180735,US +3292180736,3292187135,SC +3292187136,3292187391,US +3292187392,3292190207,SC +3292190208,3292190463,US +3292190464,3292193279,SC +3292193280,3292193791,US +3292193792,3292196863,SC +3292196864,3292197119,US +3292197120,3292205311,SC +3292205312,3292205567,US +3292205568,3292209407,SC +3292209408,3292209663,US +3292209664,3292213503,SC +3292213504,3292213759,US +3292213760,3292216831,SC +3292216832,3292217087,US +3292217088,3292220671,SC +3292220672,3292220927,US +3292220928,3292221695,SC +3292221696,3292221951,US +3292221952,3292236543,SC +3292236544,3292236799,US +3292236800,3292239103,SC +3292239104,3292239359,US +3292239360,3292242175,SC +3292242176,3292242431,US +3292242432,3292243967,SC +3292243968,3292244223,US +3292244224,3292248063,SC +3292248064,3292248319,US +3292248320,3292260095,SC +3292260096,3292260351,US +3292260352,3292261375,SC +3292261376,3292261631,US +3292261632,3292265983,SC +3292265984,3292266239,DE +3292266240,3292266495,SC 3300917248,3300921343,MU 3300925440,3300929535,MG 3300933632,3300950015,MU -3300982784,3301179391,ZA -3301179392,3301441535,SC +3300982784,3301175295,ZA +3301175296,3301179391,AF +3301179392,3301183743,SC +3301183744,3301183999,US +3301184000,3301188351,SC +3301188352,3301188607,US +3301188608,3301193727,SC +3301193728,3301193983,US +3301193984,3301197567,SC +3301197568,3301197823,US +3301197824,3301219327,SC +3301219328,3301219583,US +3301219584,3301224959,SC +3301224960,3301225215,US +3301225216,3301228543,SC +3301228544,3301228799,US +3301228800,3301230591,SC +3301230592,3301230847,US +3301230848,3301236991,SC +3301236992,3301237247,US +3301237248,3301241343,SC +3301241344,3301241599,US +3301241600,3301311487,SC +3301311488,3301312511,SA +3301312512,3301326847,SC +3301326848,3301330943,SA +3301330944,3301387007,SC +3301387008,3301387263,US +3301387264,3301393407,SC +3301393408,3301393663,US +3301393664,3301393919,SC +3301393920,3301394175,US +3301394176,3301394431,SC +3301394432,3301394687,US +3301394688,3301403135,SC +3301403136,3301403391,US +3301403392,3301407743,SC +3301407744,3301407999,US +3301408000,3301408511,SC +3301408512,3301408767,US +3301408768,3301410047,SC +3301410048,3301410303,US +3301410304,3301412351,SC +3301412352,3301412607,US +3301412608,3301423103,SC +3301423104,3301423359,US +3301423360,3301426943,SC +3301426944,3301427199,US +3301427200,3301428223,SC +3301428224,3301428479,US +3301428480,3301433855,SC +3301433856,3301434367,US +3301434368,3301435647,SC +3301435648,3301435903,US +3301435904,3301441535,SC 3301441536,3301441567,ZA 3301441568,3301441575,NG 3301441576,3301441655,ZA @@ -137424,7 +128954,9 @@ 3301444416,3301444431,NG 3301444432,3301444599,ZA 3301444600,3301444607,NG -3301444608,3301445047,ZA +3301444608,3301444791,ZA +3301444792,3301444799,NG +3301444800,3301445047,ZA 3301445048,3301445055,NG 3301445056,3301445063,ZA 3301445064,3301445071,NG @@ -137580,9 +129112,7 @@ 3302956032,3302956287,CD 3302956544,3302957055,ZA 3302957056,3302957311,CG -3304062976,3304456191,SC -3304456192,3304521727,ZA -3304521728,3304587263,SC +3304062976,3304587263,SC 3304587264,3305111551,ZA 3305111552,3307208703,TN 3307208704,3309305855,EG @@ -137681,6 +129211,7 @@ 3317694464,3318218751,EG 3318218752,3318743039,DZ 3318743040,3318874111,SD +3318874112,3318939647,NG 3318939648,3318947839,KE 3318947840,3318956031,NG 3318956032,3318964223,ZA @@ -137693,11 +129224,15 @@ 3319156736,3319160831,GW 3319160832,3319164927,NG 3319164928,3319166975,ZA +3319166976,3319169023,ZW 3319169024,3319201791,CG 3319201792,3319234559,SL 3319234560,3319242751,LY 3319242752,3319250943,ZA 3319250944,3319255039,MG +3319255040,3319257087,ZA +3319257088,3319258111,LR +3319258112,3319259135,CD 3319267328,3319398399,AO 3319398400,3319529471,MZ 3319529472,3319537663,ZM @@ -137717,7 +129252,10 @@ 3319660544,3319791615,EG 3319791616,3320053759,MU 3320053760,3320184831,ZA +3320184832,3320250367,MA 3320250368,3320258559,MR +3320258560,3320266751,LS +3320266752,3320283135,GA 3320283136,3320285183,GM 3320285184,3320287231,GA 3320287232,3320289279,ZA @@ -137729,7 +129267,8 @@ 3320300544,3320301567,ZA 3320301568,3320302591,SO 3320302592,3320303615,GM -3320303616,3320304639,SC +3320303616,3320304127,SC +3320304128,3320304639,GH 3320304640,3320305663,ZW 3320305664,3320306687,MZ 3320306688,3320307711,LR @@ -137739,6 +129278,8 @@ 3320310784,3320311807,SD 3320311808,3320312831,BJ 3320312832,3320313855,ZM +3320313856,3320314879,BI +3320314880,3320315903,CD 3320381440,3320446975,NA 3320479744,3320500223,ZA 3320500224,3320502271,BW @@ -137749,6 +129290,8 @@ 3320507392,3320508415,KE 3320508416,3320509439,SC 3320509440,3320510463,RW +3320510464,3320511487,LY +3320511488,3320512511,ZA 3320512512,3320578047,MZ 3320578048,3320643583,ZA 3320643584,3320709119,KE @@ -137793,9 +129336,12 @@ 3321806848,3321823231,SD 3321823232,3321839615,NG 3321839616,3321843711,GH -3321843712,3321853695,MU +3321843712,3321847807,MU +3321847808,3321848831,GH +3321848832,3321853695,MU 3321853696,3321853951,GH -3321853952,3321855999,MU +3321853952,3321854975,MU +3321854976,3321855999,GH 3321856000,3321860095,CV 3321860096,3321864191,ZA 3321864192,3321868287,NG @@ -137841,9 +129387,7 @@ 3322362368,3322362431,DE 3322362432,3322363039,US 3322363040,3322363071,BR -3322363072,3322363327,US -3322363328,3322363359,GB -3322363360,3322609663,US +3322363072,3322609663,US 3322609664,3322610687,SA 3322610688,3322642431,US 3322675200,3322683391,US @@ -137962,15 +129506,14 @@ 3323038720,3323038975,CA 3323038976,3323048959,US 3323048960,3323049727,NL -3323049728,3323061247,US -3323061504,3323062015,US -3323062016,3323062527,BR +3323049728,3323062271,US +3323062272,3323062527,BR 3323062784,3323068415,US 3323199488,3323201535,US 3323201536,3323203583,CA 3323203584,3323207679,US 3323207680,3323215871,CA -3323215872,3323232255,US +3323215872,3323240447,US 3323267072,3323270420,US 3323270421,3323270421,CH 3323270422,3323330559,US @@ -138226,18 +129769,18 @@ 3324843800,3324843801,AP 3324843802,3324844543,US 3324844544,3324844799,EU -3324844800,3324936191,US -3324968960,3324980223,US +3324844800,3324980223,US 3324980224,3324981247,CA -3324981248,3325001727,US +3324981248,3325034495,US 3325034496,3325035519,NZ 3325035520,3325067263,US +3325067264,3325100031,CA 3325100032,3325128703,US 3325128704,3325129215,TH 3325129216,3325131775,US 3325131776,3325132031,AU 3325132032,3325132799,US -3325132800,3325134335,BR +3325132800,3325133823,BR 3325134336,3325134591,US 3325134848,3325135359,US 3325136128,3325136383,CA @@ -138249,13 +129792,18 @@ 3325145088,3325169663,US 3325169664,3325171711,BR 3325171712,3325190143,US -3325190144,3325198335,CA +3325190144,3325202047,CA +3325202048,3325202079,US +3325202080,3325204479,CA +3325204480,3325205503,US +3325205504,3325231103,CA 3325231104,3325232127,US 3325233152,3325234175,US 3325234176,3325234431,SA 3325234432,3325249279,US 3325249280,3325249535,CO -3325249536,3325257727,US +3325249536,3325256703,US +3325257216,3325257727,US 3325257728,3325258751,CA 3325258752,3325259775,US 3325259776,3325261311,CA @@ -138279,7 +129827,7 @@ 3325313024,3325323687,US 3325323688,3325323695,GB 3325323696,3325329407,US -3325362176,3325427711,CA +3325329408,3325427711,CA 3325427712,3325450239,ZA 3325451008,3325451263,ZA 3325451264,3325452287,US @@ -138300,15 +129848,21 @@ 3325460000,3325460079,US 3325460080,3325460095,CA 3325460096,3325460479,US +3325462528,3325463551,US 3325463808,3325464063,ZA 3325464064,3325465087,NA -3325465088,3325493247,ZA +3325465088,3325481983,ZA +3325481984,3325483007,CA +3325483008,3325488127,ZA +3325488128,3325490175,US +3325490944,3325493247,ZA 3325493248,3325497343,US -3325497344,3325501439,PR -3325501440,3325505535,US +3325497344,3325499903,PR +3325500416,3325505535,US 3325505536,3325509631,CA -3325509632,3325591551,US -3325624320,3325640703,US +3325509632,3325551615,US +3325551616,3325552639,CA +3325554688,3325640703,US 3325640704,3325644799,CA 3325644800,3325689855,US 3325689856,3325690367,JM @@ -138357,6 +129911,7 @@ 3326623744,3326631935,US 3326631936,3326640127,CA 3326640128,3326676991,US +3326679040,3326680063,US 3326680832,3326682623,CA 3326682624,3326682879,US 3326682880,3326713343,CA @@ -138403,7 +129958,7 @@ 3327725568,3327803647,US 3327803648,3327803903,AP 3327803904,3327805695,US -3327807488,3327811583,CA +3327806464,3327811583,CA 3327811584,3327885311,US 3327885312,3327918079,CA 3327918080,3327995903,US @@ -138423,7 +129978,11 @@ 3328241664,3328242943,US 3328242944,3328243199,GB 3328243200,3328245759,CA -3328245760,3328393727,US +3328245760,3328300031,US +3328300032,3328301055,CA +3328303104,3328383487,US +3328384000,3328385023,CA +3328385024,3328393727,US 3328393728,3328393983,GB 3328393984,3328394239,US 3328394240,3328394495,GB @@ -138440,7 +129999,9 @@ 3328475136,3328477183,CA 3328477184,3328479231,US 3328479232,3328481279,CA -3328481280,3328617983,US +3328481280,3328514559,US +3328515072,3328516095,DM +3328516096,3328617983,US 3328617984,3328618239,CA 3328618240,3328629503,US 3328629504,3328629759,EU @@ -138450,8 +130011,7 @@ 3328638976,3328704511,CA 3328704512,3328774399,US 3328774400,3328775935,CA -3328775936,3328776703,US -3328778240,3328788479,US +3328775936,3328788479,US 3328788480,3328789503,FR 3328789504,3328790015,AP 3328790016,3328794623,US @@ -138566,7 +130126,9 @@ 3331527168,3331527679,GB 3331527680,3331563519,US 3331563520,3331563775,CH -3331563776,3331617855,US +3331563776,3331575807,US +3331575808,3331576831,KY +3331577344,3331617855,US 3331617856,3331617919,GB 3331617920,3331620079,US 3331620080,3331620095,GB @@ -138584,7 +130146,11 @@ 3331853824,3331854079,AP 3331854080,3331868161,US 3331868162,3331868162,EU -3331868163,3332002303,US +3331868163,3331934719,US +3331935232,3331936255,CA +3331936256,3331987967,US +3331988480,3331989503,CA +3331989504,3332002303,US 3332002304,3332002304,CA 3332002305,3332002558,US 3332002559,3332002559,CA @@ -138645,7 +130211,7 @@ 3332005504,3332005632,CA 3332005633,3332005886,US 3332005887,3332005887,CA -3332005888,3332026879,US +3332005888,3332028415,US 3332028416,3332030463,CA 3332030464,3332083967,US 3332083968,3332084223,AP @@ -138674,10 +130240,15 @@ 3332579328,3332581375,US 3332581376,3332590079,CA 3332590080,3332590591,US -3332590592,3332616191,CA +3332590592,3332594687,CA +3332594944,3332595455,CA +3332595456,3332595711,US +3332595712,3332610559,CA +3332610560,3332611071,US +3332611072,3332616191,CA 3332616192,3332616959,US 3332616960,3332617471,CA -3332618240,3332624383,US +3332617728,3332624383,US 3332624384,3332724735,CA 3332724736,3332726783,PM 3332726784,3332737023,CA @@ -138687,16 +130258,22 @@ 3332745216,3332752127,CA 3332752128,3332752383,PM 3332752384,3332866303,CA -3332867072,3332874239,US +3332866560,3332874239,US 3332874240,3332876287,CA 3332878336,3332882431,US 3332882432,3332890623,KN 3332890624,3332894719,US -3332896768,3332906495,CA +3332896768,3332897279,US +3332897280,3332906495,CA 3332906496,3332906751,US -3332907008,3332925695,CA -3332926464,3332927487,US -3332927488,3332947967,CA +3332909056,3332909567,US +3332909568,3332922879,CA +3332922880,3332923391,US +3332923392,3332925695,CA +3332925952,3332929023,US +3332929024,3332930047,CA +3332930048,3332930559,US +3332931328,3332947967,CA 3332947968,3332948223,US 3332948224,3332966143,CA 3332966144,3332966399,US @@ -138706,8 +130283,8 @@ 3333012480,3333012991,US 3333012992,3333023743,CA 3333023744,3333024767,US -3333025280,3333029887,CA -3333029888,3333212415,US +3333025280,3333029631,CA +3333029632,3333212415,US 3333212416,3333212927,US 3333212928,3333213055,US 3333213056,3333213439,US @@ -138723,8 +130300,7 @@ 3333427968,3333428007,GB 3333428008,3333428008,EU 3333428009,3333428223,GB -3333428224,3333429759,US -3333431296,3333480191,US +3333428224,3333480191,US 3333480192,3333481471,DE 3333481472,3333502975,US 3333502976,3333503135,CN @@ -138738,7 +130314,9 @@ 3333504128,3333504431,CN 3333504432,3333504447,US 3333504448,3333505023,CN -3333505024,3333593855,US +3333505024,3333583359,US +3333583872,3333584895,CA +3333584896,3333593855,US 3333593856,3333594111,CA 3333594112,3333603327,US 3333603328,3333603328,GB @@ -138746,7 +130324,11 @@ 3333603330,3333603583,GB 3333603584,3333609733,US 3333609734,3333609734,AU -3333609735,3333701887,US +3333609735,3333624319,US +3333624320,3333624575,CA +3333624576,3333675775,US +3333675776,3333676031,CA +3333676032,3333701887,US 3333701888,3333702143,GB 3333702144,3333702399,US 3333702400,3333702655,CH @@ -138797,10 +130379,10 @@ 3334932224,3334932479,CA 3334932480,3334934015,US 3334934016,3334934527,CA -3334934528,3334946815,US -3334963200,3334995967,US +3334934528,3334995967,US 3334995968,3334998527,PH 3334998528,3335012351,US +3335012352,3335028735,CA 3335028736,3335057919,US 3335057920,3335058175,CA 3335058176,3335160319,US @@ -138872,9 +130454,7 @@ 3337341952,3337342463,US 3337342464,3337355007,CA 3337355008,3337650175,US -3337650176,3337650250,GB -3337650251,3337650251,EU -3337650252,3337650687,GB +3337650176,3337650687,GB 3337650688,3337651199,US 3337651200,3337651455,CH 3337651456,3337651711,SG @@ -138907,8 +130487,8 @@ 3337949184,3337957375,US 3337957376,3337958399,CA 3337958400,3337960447,US -3337960448,3337961471,CA -3337961472,3337969663,US +3337960448,3337965567,CA +3337965568,3337969663,US 3337969664,3337973759,PR 3337973760,3337977855,CA 3337977856,3337980671,US @@ -139217,13 +130797,7 @@ 3339939447,3339939473,US 3339939474,3339939534,GB 3339939535,3339939582,TR -3339939583,3339941650,US -3339941651,3339941651,BR -3339941652,3339941664,US -3339941665,3339941665,BR -3339941666,3339941790,US -3339941791,3339941791,BR -3339941792,3339952127,US +3339939583,3339952127,US 3339952128,3339956223,CA 3339956224,3339965439,US 3339965440,3339968511,CA @@ -139523,9 +131097,7 @@ 3341778944,3341796863,US 3341796864,3341797375,JP 3341797376,3341807615,US -3341807616,3341807652,CA -3341807653,3341807653,US -3341807654,3341807706,CA +3341807616,3341807706,CA 3341807707,3341807815,US 3341807816,3341807822,CA 3341807823,3341807844,US @@ -139567,9 +131139,7 @@ 3342489216,3342489279,GB 3342489280,3342489301,US 3342489302,3342489311,AR -3342489312,3342489376,US -3342489377,3342489391,HK -3342489392,3342489450,US +3342489312,3342489450,US 3342489451,3342489463,IL 3342489464,3342489474,US 3342489475,3342489482,GB @@ -139703,9 +131273,7 @@ 3343923136,3343923199,HK 3343923200,3344116223,US 3344116224,3344116735,CA -3344116736,3344118527,US -3344118528,3344118783,HK -3344118784,3344126975,US +3344116736,3344126975,US 3344126976,3344127999,CA 3344128000,3344138751,US 3344138752,3344139007,GB @@ -139821,11 +131389,7 @@ 3345310208,3345310231,CA 3345310232,3345310287,US 3345310288,3345310295,AR -3345310296,3345310319,US -3345310320,3345310321,IN -3345310322,3345310323,US -3345310324,3345310335,IN -3345310336,3345310351,US +3345310296,3345310351,US 3345310352,3345310367,BR 3345310368,3345310383,ID 3345310384,3345310399,BR @@ -139902,8 +131466,7 @@ 3345408006,3345408009,CZ 3345408010,3345408017,US 3345408018,3345408021,GB -3345408022,3345408092,US -3345408093,3345408094,GB +3345408022,3345408094,US 3345408095,3345408098,VE 3345408099,3345408110,US 3345408111,3345408114,AU @@ -139913,8 +131476,7 @@ 3345408190,3345408193,AR 3345408194,3345408197,US 3345408198,3345408225,IN -3345408226,3345408227,GB -3345408228,3345408235,US +3345408226,3345408235,US 3345408236,3345408239,CN 3345408240,3345408319,US 3345408320,3345408323,GB @@ -140160,15 +131722,7 @@ 3346522348,3346522350,BD 3346522351,3346522401,US 3346522402,3346522404,IN -3346522405,3346522411,US -3346522412,3346522413,AE -3346522414,3346522523,US -3346522524,3346522525,BD -3346522526,3346522787,US -3346522788,3346522788,FR -3346522789,3346522840,US -3346522841,3346522841,FR -3346522842,3346523113,US +3346522405,3346523113,US 3346523114,3346523121,TH 3346523122,3346523135,US 3346523136,3346523391,BO @@ -140233,9 +131787,7 @@ 3349609216,3349610239,CA 3349610240,3349614591,US 3349614592,3349617663,CA -3349617664,3349621243,US -3349621244,3349621245,IN -3349621246,3349637119,US +3349617664,3349637119,US 3349637120,3349639167,CA 3349639168,3349640191,US 3349640192,3349641215,CA @@ -140312,11 +131864,7 @@ 3350491648,3350491903,PL 3350491904,3350492961,US 3350492962,3350492990,GB -3350492991,3350496532,US -3350496533,3350496533,IN -3350496534,3350496721,US -3350496722,3350496723,IN -3350496724,3350514639,US +3350492991,3350514639,US 3350514640,3350514655,GB 3350514656,3350514879,US 3350514880,3350514911,GB @@ -140457,54 +132005,9 @@ 3351045632,3351045695,TW 3351045696,3351071743,US 3351071744,3351072767,CA -3351072768,3351074217,US -3351074218,3351074218,AR -3351074219,3351074221,US -3351074222,3351074231,IN -3351074232,3351074688,US -3351074689,3351074689,AR -3351074690,3351074690,DE -3351074691,3351074692,US -3351074693,3351074693,UY -3351074694,3351074696,US -3351074697,3351074697,BR -3351074698,3351074698,US -3351074699,3351074701,GB -3351074702,3351074703,US -3351074704,3351074704,MX -3351074705,3351074705,US -3351074706,3351074706,AF -3351074707,3351074707,US -3351074708,3351074709,MX -3351074710,3351074710,AF -3351074711,3351074711,DE -3351074712,3351074712,BR -3351074713,3351074718,US -3351074719,3351074719,UA -3351074720,3351074720,MX -3351074721,3351074724,US -3351074725,3351074725,PK -3351074726,3351074726,EE -3351074727,3351074727,US -3351074728,3351074729,CA -3351074730,3351074730,US -3351074731,3351074731,IL -3351074732,3351074732,BR -3351074733,3351074733,EG -3351074734,3351074734,US -3351074735,3351074735,BR -3351074736,3351074736,PE -3351074737,3351074738,CA -3351074739,3351074740,US -3351074741,3351074741,CA -3351074742,3351074742,US -3351074743,3351074743,AU -3351074744,3351074745,LK -3351074746,3351074746,AU -3351074747,3351074750,US -3351074751,3351074751,BR +3351072768,3351074751,US 3351074752,3351074783,DE -3351074784,3351074815,BR +3351074784,3351074815,US 3351074816,3351076863,CA 3351076864,3351080959,US 3351080960,3351081983,AG @@ -140785,119 +132288,39 @@ 3352591616,3352615423,CA 3352615424,3352616959,US 3352616960,3352887295,CA -3352887296,3352916479,US -3352916480,3352916486,BR -3352916487,3352916512,US -3352916513,3352916516,BM -3352916517,3352916524,US -3352916525,3352916532,BM -3352916533,3352916533,IN -3352916534,3352916544,US -3352916545,3352916552,BR -3352916553,3352916553,US -3352916554,3352916558,BR -3352916559,3352916565,US -3352916566,3352916567,AT -3352916568,3352916568,BR -3352916569,3352916569,US -3352916570,3352916570,AR -3352916571,3352916583,US -3352916584,3352916584,AR -3352916585,3352916648,US -3352916649,3352916649,BR -3352916650,3352916657,US -3352916658,3352916668,BR -3352916669,3352916669,US -3352916670,3352916718,BR -3352916719,3352916728,US -3352916729,3352916735,BR -3352916736,3352918015,US +3352887296,3352918015,US 3352918016,3352919039,CA -3352919040,3353335303,US -3353335304,3353335309,NL -3353335310,3353335311,US -3353335312,3353335313,NL -3353335314,3353335315,US -3353335316,3353335323,NL -3353335324,3353335325,US -3353335326,3353335333,NL -3353335334,3353335335,US -3353335336,3353335339,NL -3353335340,3353335341,US -3353335342,3353335349,NL -3353335350,3353335353,IN -3353335354,3353335359,NL -3353335360,3353335361,US -3353335362,3353335363,NL -3353335364,3353335366,US -3353335367,3353335376,NL -3353335377,3353335378,US -3353335379,3353335380,NL -3353335381,3353335382,US -3353335383,3353335390,NL -3353335391,3353335392,US -3353335393,3353335406,NL -3353335407,3353335407,US -3353335408,3353335411,NL -3353335412,3353335412,US -3353335413,3353335420,NL -3353335421,3353335422,US -3353335423,3353335435,NL -3353335436,3353335437,US -3353335438,3353335457,NL -3353335458,3353335458,US -3353335459,3353335460,NL -3353335461,3353335462,US -3353335463,3353335468,NL -3353335469,3353335471,US -3353335472,3353335473,NL -3353335474,3353335474,US -3353335475,3353335476,NL -3353335477,3353335481,US -3353335482,3353335483,NL -3353335484,3353335485,US -3353335486,3353335487,NL -3353335488,3353335489,US -3353335490,3353335493,NL -3353335494,3353335505,US -3353335506,3353335507,NL -3353335508,3353335508,US -3353335509,3353335510,NL -3353335511,3353335513,US -3353335514,3353335515,NL -3353335516,3353335517,US -3353335518,3353335519,NL -3353335520,3353335521,US -3353335522,3353335529,NL -3353335530,3353335559,US -3353335560,3353335594,NL -3353335595,3353335596,US -3353335597,3353335598,NL -3353335599,3353335600,US -3353335601,3353335606,NL -3353335607,3353335608,US -3353335609,3353335616,NL -3353335617,3353335619,US -3353335620,3353335655,NL -3353335656,3353335658,US -3353335659,3353335664,NL -3353335665,3353335666,US -3353335667,3353335668,NL -3353335669,3353335670,US -3353335671,3353335676,NL -3353335677,3353335681,US -3353335682,3353335685,NL -3353335686,3353335686,US -3353335687,3353335688,NL -3353335689,3353335690,US -3353335691,3353335706,NL -3353335707,3353335708,US -3353335709,3353335743,NL -3353335744,3353335767,US -3353335768,3353335791,NL -3353335792,3353335792,US -3353335793,3353335794,NL -3353335795,3353652735,US +3352919040,3353335315,US +3353335316,3353335319,NL +3353335320,3353335350,US +3353335351,3353335353,IN +3353335354,3353335368,US +3353335369,3353335372,NL +3353335373,3353335430,US +3353335431,3353335435,NL +3353335436,3353335439,US +3353335440,3353335443,NL +3353335444,3353335559,US +3353335560,3353335589,NL +3353335590,3353335591,US +3353335592,3353335594,NL +3353335595,3353335602,US +3353335603,3353335606,NL +3353335607,3353335619,US +3353335620,3353335631,NL +3353335632,3353335645,US +3353335646,3353335651,NL +3353335652,3353335690,US +3353335691,3353335698,NL +3353335699,3353335722,US +3353335723,3353335726,NL +3353335727,3353335732,US +3353335733,3353335737,NL +3353335738,3353335769,US +3353335770,3353335776,NL +3353335777,3353335782,US +3353335783,3353335789,NL +3353335790,3353652735,US 3353652736,3353652863,DE 3353652864,3353653503,US 3353653504,3353653759,GB @@ -140926,37 +132349,17 @@ 3353752586,3353752589,BE 3353752590,3353752677,US 3353752678,3353752681,ES -3353752682,3353752829,US -3353752830,3353752830,GB -3353752831,3353752916,US -3353752917,3353752917,GB -3353752918,3353752969,US -3353752970,3353752970,GB -3353752971,3353752987,US +3353752682,3353752987,US 3353752988,3353752991,GB 3353752992,3353753055,US 3353753056,3353753059,BR -3353753060,3353753097,US -3353753098,3353753098,GB -3353753099,3353780223,US +3353753060,3353780223,US 3353780224,3353780479,GB 3353780480,3353821183,US 3353821184,3353821199,CN 3353821200,3353821215,US 3353821216,3353821279,CN -3353821280,3353821284,US -3353821285,3353821286,CN -3353821287,3353821287,US -3353821288,3353821295,CN -3353821296,3353821296,US -3353821297,3353821300,CN -3353821301,3353821301,US -3353821302,3353821302,CN -3353821303,3353821303,US -3353821304,3353821306,CN -3353821307,3353821308,US -3353821309,3353821309,CN -3353821310,3353821311,US +3353821280,3353821311,US 3353821312,3353821375,CN 3353821376,3353821439,US 3353821440,3353821663,CN @@ -141155,8 +132558,7 @@ 3354731020,3354731263,BE 3354731264,3354731519,US 3354731520,3354731775,AP -3354731776,3354737663,US -3354737664,3354737919,HK +3354731776,3354737919,US 3354737920,3354738175,CN 3354738176,3354770687,US 3354770688,3354770943,CA @@ -141231,31 +132633,31 @@ 3355448832,3355449343,SX 3355449344,3355450367,CU 3355450368,3355451391,EC -3355451392,3355459071,BR +3355451392,3355455487,BR +3355457536,3355459071,BR 3355459328,3355459583,EC 3355459584,3355459839,PA 3355459840,3355460095,VE 3355460096,3355460351,CL -3355460352,3355461887,BR -3355461888,3355463423,EC +3355460608,3355461631,BR +3355461632,3355463423,EC 3355463424,3355463935,AR 3355463936,3355464191,BR 3355464192,3355464447,CL 3355464448,3355464959,MX 3355464960,3355465727,BR 3355465728,3355465983,UY -3355465984,3355467263,BR +3355466752,3355467007,BR 3355467264,3355467519,US 3355467520,3355467775,MX 3355467776,3355468799,AR -3355468800,3355469567,BR +3355469312,3355469567,BR 3355469568,3355470591,MX 3355470592,3355470847,PE 3355470848,3355471103,CL 3355471104,3355471359,MX 3355471360,3355471615,PE 3355471616,3355472383,MX -3355472384,3355472639,BR 3355472640,3355473407,CL 3355473408,3355473919,PE 3355473920,3355475199,CL @@ -141379,7 +132781,8 @@ 3355843584,3355844863,EC 3355844864,3355845119,CL 3355845120,3355845375,EC -3355845376,3355848959,BR +3355845376,3355845631,BR +3355846144,3355848703,BR 3355849216,3355849727,AR 3355849728,3355849983,PA 3355849984,3355850495,CL @@ -141389,7 +132792,7 @@ 3355856640,3355856895,PA 3355856896,3355858943,EC 3355860992,3355869183,CL -3355869184,3355870719,BR +3355870208,3355870719,BR 3355870720,3355871231,CR 3355873280,3355875327,BQ 3355875328,3355877375,VE @@ -141397,7 +132800,7 @@ 3355885568,3355901951,GT 3355901952,3355902975,BR 3355902976,3355903999,CL -3355904000,3355905535,BR +3355904000,3355905023,BR 3355905536,3355905791,PY 3355905792,3355906047,AR 3355906048,3355910143,CL @@ -141413,19 +132816,20 @@ 3355949056,3355951103,CW 3355951104,3355967487,EC 3355967488,3356033023,VE -3356033024,3356033791,BR +3356033280,3356033791,BR 3356033792,3356034047,CL 3356034048,3356035071,PY 3356035072,3356037119,MX 3356037120,3356041215,CO 3356041216,3356049407,CR 3356049408,3356049663,CL -3356049664,3356051455,BR +3356049664,3356050175,BR +3356050432,3356050687,BR 3356051456,3356051711,CO 3356051712,3356051967,CL 3356051968,3356052223,GT 3356052224,3356052479,AR -3356052480,3356052991,BR +3356052480,3356052735,BR 3356053248,3356054015,CL 3356054016,3356054527,US 3356054528,3356057599,BR @@ -141435,33 +132839,35 @@ 3356060672,3356061695,CL 3356061696,3356062463,BR 3356062464,3356062719,JM -3356062720,3356064255,BR +3356062720,3356063743,BR +3356064000,3356064255,BR 3356064256,3356064511,CL -3356064512,3356065791,BR +3356064768,3356065791,BR 3356065792,3356066047,CL -3356066048,3356069119,BR +3356066048,3356067071,BR +3356068352,3356069119,BR 3356069120,3356069631,CL -3356069632,3356070143,BR +3356069888,3356070143,BR 3356070144,3356070655,CL 3356070656,3356070911,AR 3356070912,3356071423,BR 3356071424,3356072447,CL 3356073216,3356073471,AR -3356073472,3356075263,BR -3356075264,3356076287,BO +3356073472,3356073983,BR +3356075008,3356076287,BO 3356076288,3356078079,BR 3356078080,3356078335,EC 3356078336,3356079359,CL -3356079360,3356080895,BR +3356080128,3356080383,BR 3356080896,3356082431,NI 3356082432,3356082687,CL 3356082688,3356082943,AR 3356082944,3356083967,CL -3356083968,3356084479,BR +3356083968,3356084223,BR 3356084480,3356084735,CL 3356084736,3356085247,BR 3356085248,3356085759,CL -3356085760,3356086271,BR +3356085760,3356086015,BR 3356086272,3356086527,AR 3356086528,3356087295,CR 3356087296,3356087807,AR @@ -141486,7 +132892,6 @@ 3356097792,3356098303,AR 3356098304,3356098559,GT 3356098560,3356099583,CL -3356099584,3356100607,BR 3356100608,3356102399,CL 3356102400,3356102655,PA 3356102656,3356105727,CL @@ -141496,9 +132901,8 @@ 3356114944,3356123135,PE 3356123136,3356131839,AR 3356131840,3356132351,PE -3356132352,3356134143,BR +3356133376,3356134143,BR 3356134144,3356134655,AR -3356134656,3356134911,BR 3356134912,3356135167,DO 3356135168,3356135423,MX 3356135424,3356135679,BR @@ -141512,12 +132916,11 @@ 3356139520,3356139775,US 3356139776,3356140031,AR 3356140032,3356140287,DO -3356140288,3356140799,BR 3356140800,3356141311,BM 3356141312,3356142847,CL -3356142848,3356145151,BR +3356143104,3356143615,BR +3356144128,3356145151,BR 3356145152,3356145407,CL -3356145408,3356145663,BR 3356145664,3356145919,CL 3356145920,3356146175,BR 3356146176,3356146431,AR @@ -141552,9 +132955,7 @@ 3356160000,3356160255,MX 3356160256,3356160511,GT 3356160512,3356160767,CL -3356160768,3356161279,MX -3356161280,3356161535,BR -3356161536,3356162559,MX +3356160768,3356162559,MX 3356162560,3356162815,PE 3356162816,3356163583,CL 3356163584,3356163839,VE @@ -141577,7 +132978,6 @@ 3356237824,3356246015,GT 3356246016,3356262655,MX 3356262656,3356263167,CL -3356263168,3356263423,BR 3356263424,3356263679,CL 3356263680,3356265215,AR 3356265216,3356265471,BR @@ -141587,7 +132987,6 @@ 3356268800,3356269055,PA 3356269056,3356269311,AR 3356269312,3356269823,UY -3356269824,3356270079,BR 3356270080,3356272383,MX 3356272384,3356272639,CR 3356272640,3356272895,US @@ -141660,8 +133059,8 @@ 3356364800,3356368895,MX 3356368896,3356369407,BR 3356369408,3356369663,EC -3356369664,3356370175,BR -3356370176,3356370943,AR +3356369664,3356369919,BR +3356369920,3356370943,AR 3356370944,3356372991,CO 3356372992,3356375039,CU 3356377088,3356379647,CL @@ -141678,7 +133077,9 @@ 3356390400,3356390655,AR 3356390656,3356391167,CL 3356391168,3356391423,PA -3356393472,3356426239,CL +3356393472,3356425471,CL +3356425472,3356425599,CO +3356425600,3356426239,CL 3356426240,3356427263,BR 3356427264,3356491775,US 3356491776,3356493823,PE @@ -142228,13 +133629,25 @@ 3361054720,3361058815,NI 3361058816,3361062911,AR 3361062912,3361071103,CL -3361071104,3361078527,CO +3361071104,3361071455,VE +3361071456,3361071471,CO +3361071472,3361071631,VE +3361071632,3361071635,CO +3361071636,3361072767,VE +3361072768,3361072895,CO +3361072896,3361074431,VE +3361074432,3361074687,CO +3361074688,3361075199,VE +3361075200,3361078527,CO 3361078528,3361078655,VE 3361078656,3361079295,CO 3361079296,3361144831,CL 3361144832,3361210367,BO 3361210368,3361275903,DO -3361275904,3361281279,PE +3361275904,3361278463,VE +3361278464,3361278847,PE +3361278848,3361279999,VE +3361280000,3361281279,PE 3361281280,3361281791,VE 3361281792,3361282047,PE 3361282048,3361284095,VE @@ -142344,9 +133757,9 @@ 3362695168,3362697215,CO 3362697216,3362711551,AR 3362711552,3362713599,EC -3362713600,3362714623,GT +3362713600,3362714623,VE 3362714624,3362714879,HN -3362714880,3362717695,GT +3362714880,3362717695,VE 3362717696,3362815999,CL 3362816000,3362832383,AR 3362836480,3362838527,CO @@ -142396,7 +133809,9 @@ 3363554048,3363554175,US 3363554176,3363556095,AR 3363556096,3363556223,US -3363556224,3363557375,AR +3363556224,3363556351,AR +3363556352,3363556607,US +3363556608,3363557375,AR 3363557376,3363559423,BZ 3363559424,3363561471,AR 3363565568,3363569663,AR @@ -142443,8 +133858,8 @@ 3384688640,3384705023,CO 3384705024,3384705535,US 3384705536,3384706047,PA -3384706048,3384706559,US -3384706560,3384721407,PA +3384706048,3384707071,US +3384707072,3384721407,PA 3384721408,3384725503,US 3384725504,3384737791,PA 3384737792,3385851903,CR @@ -142477,16 +133892,21 @@ 3386613760,3386621951,AR 3386621952,3386630143,CO 3386630144,3386632191,UY -3386638336,3386640895,CW +3386638336,3386640895,SX 3386640896,3386641151,US -3386641152,3386642175,CW +3386641152,3386642175,SX 3386642176,3386642431,CA 3386642432,3386644735,AR 3386644736,3386644991,PY +3386644992,3386645247,CR +3386645248,3386645503,CL +3386645504,3386645759,AR 3386646528,3386647551,CO 3386647552,3386647679,VE 3386647680,3386647743,CO -3386647744,3386649599,VE +3386647744,3386648063,VE +3386648064,3386648575,CO +3386648576,3386649599,VE 3386649600,3386649855,CO 3386649856,3386650111,VE 3386650112,3386650623,CO @@ -142515,6 +133935,7 @@ 3386777600,3386781695,CW 3386781696,3386783743,PY 3386783744,3386784767,AR +3386784768,3386785791,GT 3386785792,3386802175,BO 3386802176,3386900479,CL 3386900480,3387162623,PA @@ -142532,9 +133953,9 @@ 3387574016,3387574143,CO 3387574144,3387575807,AR 3387575808,3387576063,CO -3387576064,3387577599,AR -3387577600,3387577855,EC -3387577856,3387584511,AR +3387576064,3387576319,AR +3387576320,3387578367,EC +3387578368,3387584511,AR 3387584512,3387588607,PE 3387588608,3387600895,AR 3387600896,3387604991,CO @@ -143615,7 +135036,7 @@ 3393167360,3393175551,CN 3393175552,3393183743,PK 3393183744,3393183999,ID -3393184000,3393184255,AP +3393184000,3393184255,US 3393184256,3393184767,PK 3393184768,3393187839,SG 3393187840,3393189887,NP @@ -143762,7 +135183,9 @@ 3393863680,3393865727,AU 3393865728,3393867775,ID 3393867776,3393871871,CN -3393871872,3393878015,HK +3393871872,3393874943,HK +3393874944,3393875967,AU +3393875968,3393878015,HK 3393878016,3393878271,IN 3393878272,3393880063,HK 3393880064,3393896447,AU @@ -144877,11 +136300,7 @@ 3404630016,3404633087,US 3404633088,3404693503,JP 3404693504,3404697599,US -3404697600,3404857954,JP -3404857955,3404857955,ID -3404857956,3404857966,JP -3404857967,3404857967,IN -3404857968,3405774847,JP +3404697600,3405774847,JP 3405774848,3405775871,AU 3405775872,3405776895,CN 3405776896,3405777407,AU @@ -146533,7 +137952,9 @@ 3411058688,3411062783,AU 3411062784,3411064831,HK 3411064832,3411065087,BD -3411065088,3411083263,HK +3411065088,3411066111,HK +3411066112,3411066367,A2 +3411066368,3411083263,HK 3411083264,3411085311,CN 3411085312,3411086335,KR 3411086336,3411087359,JP @@ -146936,7 +138357,9 @@ 3414040064,3414040319,AP 3414040320,3414067199,SG 3414067200,3414067455,AP -3414067456,3414163455,SG +3414067456,3414155519,SG +3414155520,3414155775,PH +3414155776,3414163455,SG 3414163456,3414171647,PK 3414171648,3414179839,CN 3414179840,3414188031,ID @@ -147218,8 +138641,7 @@ 3417014272,3417022463,JP 3417022464,3417030655,KR 3417030656,3417034751,AU -3417034752,3417035007,NZ -3417035008,3417035775,IN +3417034752,3417035775,IN 3417035776,3417036799,JP 3417036800,3417037823,ID 3417037824,3417038079,AU @@ -147391,7 +138813,7 @@ 3418292992,3418293503,HK 3418293760,3418294015,AU 3418294272,3418296319,VN -3418296320,3418300415,CN +3418296320,3418300415,HK 3418300416,3418300927,BD 3418300928,3418301439,IN 3418301440,3418302463,AU @@ -148054,7 +139476,9 @@ 3423480988,3423480988,US 3423480989,3423481343,NG 3423481344,3423481855,A2 -3423481856,3423493631,US +3423481856,3423487999,US +3423488000,3423490047,US +3423490048,3423493631,US 3423493632,3423493887,RU 3423493888,3423493903,ID 3423493904,3423493911,US @@ -148889,7 +140313,9 @@ 3432662532,3432663039,DE 3432663040,3432689151,US 3432689152,3432689663,CA -3432689664,3432807423,US +3432689664,3432749055,US +3432749056,3432749311,US +3432749312,3432807423,US 3432807424,3432808447,CA 3432808448,3433090582,US 3433090583,3433090583,CA @@ -148942,9 +140368,7 @@ 3434584064,3434807551,US 3434807552,3434810111,CA 3434810112,3434810367,US -3434810368,3434810670,CA -3434810671,3434810673,US -3434810674,3434810879,CA +3434810368,3434810879,CA 3434810880,3434810895,GB 3434810896,3434810911,US 3434810912,3434810943,CA @@ -149335,9 +140759,7 @@ 3448838400,3448983807,US 3448983808,3448983871,GB 3448983872,3448985599,US -3448987648,3449001245,US -3449001246,3449001246,MC -3449001247,3449159679,US +3448987648,3449159679,US 3449159680,3449160703,CA 3449160704,3449161471,US 3449161472,3449163519,CA @@ -149547,7 +140969,11 @@ 3449994240,3449994495,MX 3449994496,3450078463,US 3450078464,3450079487,US -3450079488,3450213887,US +3450079488,3450085375,US +3450085376,3450085631,US +3450085632,3450085887,US +3450085888,3450086143,US +3450086144,3450213887,US 3450213888,3450214143,CA 3450214144,3450217215,US 3450217216,3450217471,LC @@ -151309,7 +142735,9 @@ 3464343424,3464343431,SG 3464343432,3464382463,US 3464384512,3464388607,CA -3464388608,3464394751,US +3464388608,3464391935,US +3464391936,3464392191,CA +3464392192,3464394751,US 3464394752,3464396799,LC 3464396800,3464548367,US 3464548368,3464548375,AG @@ -152077,35 +143505,21 @@ 3470184477,3470184480,CN 3470184481,3470184492,US 3470184493,3470184496,ID -3470184497,3470184544,US -3470184545,3470184545,MY -3470184546,3470184549,US -3470184550,3470184550,SI -3470184551,3470184552,US -3470184553,3470184553,SI +3470184497,3470184549,US +3470184550,3470184553,SI 3470184554,3470184557,IN -3470184558,3470184574,US -3470184575,3470184575,BE -3470184576,3470184577,CA +3470184558,3470184577,US 3470184578,3470184581,MX 3470184582,3470184593,US 3470184594,3470184597,JP -3470184598,3470184617,US -3470184618,3470184619,NZ -3470184620,3470184639,US +3470184598,3470184639,US 3470184640,3470184643,TW 3470184644,3470184671,US 3470184672,3470184675,MY 3470184676,3470184683,US 3470184684,3470184687,BR 3470184688,3470184691,CA -3470184692,3470184699,US -3470184700,3470184701,AU -3470184702,3470184722,US -3470184723,3470184723,MY -3470184724,3470184731,US -3470184732,3470184733,NZ -3470184734,3470184737,US +3470184692,3470184737,US 3470184738,3470184741,SG 3470184742,3470184746,US 3470184747,3470184750,MY @@ -152133,24 +143547,15 @@ 3470184870,3470184873,HK 3470184874,3470184881,US 3470184882,3470184884,AU -3470184885,3470184905,US -3470184906,3470184907,SG -3470184908,3470184919,US +3470184885,3470184919,US 3470184920,3470184923,MX 3470184924,3470184929,US 3470184930,3470184933,AU -3470184934,3470184957,US -3470184958,3470184958,LK -3470184959,3470184975,US -3470184976,3470184976,MY -3470184977,3470184990,US +3470184934,3470184990,US 3470184991,3470184994,NZ 3470184995,3470185010,US 3470185011,3470185014,GB -3470185015,3470185016,AU -3470185017,3470185020,US -3470185021,3470185021,BE -3470185022,3470185050,US +3470185015,3470185050,US 3470185051,3470185054,IN 3470185055,3470185062,US 3470185063,3470185066,BR @@ -152168,9 +143573,7 @@ 3470185171,3470185199,US 3470185200,3470185203,ID 3470185204,3470185207,GB -3470185208,3470185213,US -3470185214,3470185214,LK -3470185215,3470185234,US +3470185208,3470185234,US 3470185235,3470185238,AE 3470185239,3470185242,NL 3470185243,3470185250,US @@ -152183,18 +143586,13 @@ 3470185279,3470185282,CA 3470185283,3470185286,US 3470185287,3470185290,CN -3470185291,3470185294,US -3470185295,3470185295,MY -3470185296,3470185312,US +3470185291,3470185312,US 3470185313,3470185316,TW 3470185317,3470185336,US 3470185337,3470185340,AU 3470185341,3470185344,US 3470185345,3470185348,EC -3470185349,3470185352,US -3470185353,3470185353,NZ -3470185354,3470185365,US -3470185366,3470185367,AU +3470185349,3470185367,US 3470185368,3470185371,PH 3470185372,3470185379,US 3470185380,3470185383,AU @@ -152210,9 +143608,7 @@ 3470185452,3470185455,VE 3470185456,3470185463,US 3470185464,3470185467,NZ -3470185468,3470185468,US -3470185469,3470185469,LK -3470185470,3470186003,US +3470185468,3470186003,US 3470186004,3470186007,MX 3470186008,3470186011,CA 3470186012,3470186012,CA @@ -152223,9 +143619,7 @@ 3470186065,3470186068,AU 3470186069,3470186072,US 3470186073,3470186076,IN -3470186077,3470186084,US -3470186085,3470186085,BE -3470186086,3470186089,US +3470186077,3470186089,US 3470186090,3470186093,SG 3470186094,3470186097,CA 3470186098,3470186113,US @@ -152243,8 +143637,7 @@ 3470186315,3470186318,AU 3470186319,3470186324,US 3470186325,3470186328,CN -3470186329,3470186329,NZ -3470186330,3470186338,US +3470186329,3470186338,US 3470186339,3470186342,UA 3470186343,3470186513,US 3470186514,3470186517,CA @@ -152307,14 +143700,12 @@ 3470186878,3470186881,CA 3470186882,3470186885,US 3470186886,3470186889,FR -3470186890,3470186891,CA +3470186890,3470186891,US 3470186892,3470186895,FR 3470186896,3470186899,AU 3470186900,3470186903,US 3470186904,3470186907,IN -3470186908,3470186933,US -3470186934,3470186935,BR -3470186936,3470186943,US +3470186908,3470186943,US 3470186944,3470186947,CA 3470186948,3470186963,US 3470186964,3470186967,TR @@ -152350,8 +143741,7 @@ 3470187166,3470187169,NO 3470187170,3470187181,US 3470187182,3470187185,GR -3470187186,3470187229,US -3470187230,3470187231,CA +3470187186,3470187231,US 3470187232,3470187235,GB 3470187236,3470187247,US 3470187248,3470187251,GB @@ -152380,9 +143770,7 @@ 3470187405,3470187408,DO 3470187409,3470187416,US 3470187417,3470187420,IN -3470187421,3470187429,US -3470187430,3470187431,RU -3470187432,3470187437,US +3470187421,3470187437,US 3470187438,3470187441,PH 3470187442,3470187446,US 3470187447,3470187450,CA @@ -152390,9 +143778,7 @@ 3470187455,3470187458,IT 3470187459,3470187470,US 3470187471,3470187474,PT -3470187475,3470187502,US -3470187503,3470187503,JP -3470187504,3470187511,US +3470187475,3470187511,US 3470187512,3470187515,UA 3470187516,3470187525,US 3470187526,3470187529,EC @@ -152495,9 +143881,7 @@ 3470188260,3470188275,US 3470188276,3470188279,IN 3470188280,3470188283,GR -3470188284,3470188293,US -3470188294,3470188295,RU -3470188296,3470188347,US +3470188284,3470188347,US 3470188348,3470188351,HU 3470188352,3470188393,US 3470188394,3470188397,GB @@ -152511,9 +143895,7 @@ 3470188488,3470188491,ID 3470188492,3470188503,US 3470188504,3470188507,CA -3470188508,3470188509,US -3470188510,3470188510,IL -3470188511,3470188521,US +3470188508,3470188521,US 3470188522,3470188541,HK 3470188542,3470192639,US 3470192640,3470194915,CA @@ -152589,9 +143971,7 @@ 3470558208,3470559231,HK 3470559232,3470573567,US 3470573568,3470575615,CA -3470575616,3470610431,US -3470610432,3470614527,BR -3470614528,3470643615,US +3470575616,3470643615,US 3470643616,3470643631,CA 3470643632,3470643647,US 3470643648,3470643711,CA @@ -152939,9 +144319,7 @@ 3476422144,3476422655,AZ 3476422656,3476447231,US 3476447232,3476455423,CA -3476455424,3476718616,US -3476718617,3476718617,IN -3476718618,3476720363,US +3476455424,3476720363,US 3476720364,3476720367,LV 3476720368,3476721159,US 3476721160,3476721167,IT @@ -152987,9 +144365,7 @@ 3476726601,3476726604,SI 3476726605,3476730319,US 3476730320,3476730323,FR -3476730324,3476730453,US -3476730454,3476730454,FR -3476730455,3476731909,US +3476730324,3476731909,US 3476731910,3476731913,IN 3476731914,3476732049,US 3476732050,3476732053,IN @@ -153316,9 +144692,7 @@ 3483247360,3483247871,US 3483247872,3483248639,US 3483248640,3483248895,US -3483248896,3483296004,US -3483296005,3483296005,BE -3483296006,3483435007,US +3483248896,3483435007,US 3483435008,3483533311,CA 3483533312,3483552511,US 3483552512,3483552607,GB @@ -154450,9 +145824,7 @@ 3494197761,3494197777,AE 3494197778,3494197953,CA 3494197954,3494197967,US -3494197968,3494198259,CA -3494198260,3494198260,US -3494198261,3494198271,CA +3494197968,3494198271,CA 3494198272,3494228031,US 3494228032,3494228095,AU 3494228096,3494228319,US @@ -154706,31 +146078,7 @@ 3494917120,3494917631,CA 3494917632,3494928383,US 3494928384,3494930431,CA -3494930432,3494935684,US -3494935685,3494935685,AU -3494935686,3494935746,US -3494935747,3494935747,GB -3494935748,3494935756,US -3494935757,3494935757,AU -3494935758,3494935940,US -3494935941,3494935941,AU -3494935942,3494936002,US -3494936003,3494936003,GB -3494936004,3494936012,US -3494936013,3494936013,AU -3494936014,3494936196,US -3494936197,3494936197,AU -3494936198,3494936258,US -3494936259,3494936259,GB -3494936260,3494936268,US -3494936269,3494936269,AU -3494936270,3494936452,US -3494936453,3494936453,AU -3494936454,3494936514,US -3494936515,3494936515,GB -3494936516,3494936524,US -3494936525,3494936525,AU -3494936526,3494938623,US +3494930432,3494938623,US 3494938624,3494939647,CA 3494939648,3494950655,US 3494950656,3494950911,PH @@ -154952,19 +146300,7 @@ 3495837696,3495838463,CA 3495838464,3495847935,US 3495847936,3495849983,CA -3495849984,3495859332,US -3495859333,3495859333,AU -3495859334,3495859394,US -3495859395,3495859395,GB -3495859396,3495859404,US -3495859405,3495859405,AU -3495859406,3495859588,US -3495859589,3495859589,AU -3495859590,3495859650,US -3495859651,3495859651,GB -3495859652,3495859660,US -3495859661,3495859661,AU -3495859662,3495862271,US +3495849984,3495862271,US 3495862272,3495864319,CA 3495864320,3495864831,DM 3495864832,3495865343,MF @@ -155312,7 +146648,9 @@ 3497721600,3497721855,A2 3497721856,3497739679,US 3497739680,3497739687,CA -3497739688,3497820159,US +3497739688,3497778943,US +3497778944,3497779199,CA +3497779200,3497820159,US 3497820160,3497852927,CA 3497852928,3498254335,US 3498254336,3498254367,JM @@ -155677,9 +147015,7 @@ 3506973744,3506973823,DM 3506973824,3506973831,US 3506973832,3506973855,DM -3506973856,3506973873,US -3506973874,3506973874,DM -3506973875,3506973951,US +3506973856,3506973951,US 3506973952,3506974111,DM 3506974112,3506974127,US 3506974128,3506974143,DM @@ -155746,26 +147082,12 @@ 3507101936,3507290111,US 3507290112,3507355647,AR 3507355648,3507470335,US -3507470336,3507477124,CA -3507477125,3507477125,US -3507477126,3507477129,CA -3507477130,3507477130,US -3507477131,3507477131,CA -3507477132,3507477132,US -3507477133,3507477144,CA -3507477145,3507477145,US -3507477146,3507477165,CA -3507477166,3507477166,US -3507477167,3507478046,CA +3507470336,3507478046,CA 3507478047,3507478057,US 3507478058,3507478130,CA 3507478131,3507478135,US -3507478136,3507479188,CA -3507479189,3507479190,US -3507479191,3507482196,CA -3507482197,3507482197,US -3507482198,3507482198,CA -3507482199,3507482211,US +3507478136,3507482199,CA +3507482200,3507482211,US 3507482212,3507482212,CA 3507482213,3507482229,US 3507482230,3507482235,CA @@ -156586,7 +147908,9 @@ 3509837752,3509837759,GB 3509837760,3509846015,US 3509846016,3509977087,CA -3509977088,3509993471,US +3509977088,3509987327,US +3509987328,3509987583,US +3509987584,3509993471,US 3509993472,3509997567,CA 3509997568,3510005759,US 3510005760,3510009855,CA @@ -156694,13 +148018,13 @@ 3510844416,3510844927,CA 3510844928,3510846527,US 3510846528,3510846559,CA -3510846560,3510897442,US -3510897443,3510897443,IE -3510897444,3510935551,US +3510846560,3510935551,US 3510935552,3510943743,CA 3510943744,3511140351,US 3511140352,3511156735,CA -3511156736,3511331199,US +3511156736,3511257087,US +3511257088,3511257343,US +3511257344,3511331199,US 3511331200,3511331231,CA 3511331232,3511335231,US 3511335232,3511335263,RU @@ -158379,9 +149703,7 @@ 3520691592,3520691807,CA 3520691808,3520691839,US 3520691840,3520692223,CA -3520692224,3520716908,US -3520716909,3520716910,IN -3520716911,3520717015,US +3520692224,3520717015,US 3520717016,3520717023,IN 3520717024,3520749871,US 3520749872,3520749879,CA @@ -158538,373 +149860,31 @@ 3522123520,3522123775,GB 3522123776,3522125055,US 3522125056,3522125311,GB -3522125312,3522130193,US -3522130194,3522130194,BR -3522130195,3522130195,CA -3522130196,3522130205,US -3522130206,3522130207,BR -3522130208,3522130210,US -3522130211,3522130211,CA -3522130212,3522130220,US -3522130221,3522130221,BR -3522130222,3522130230,US -3522130231,3522130231,TH -3522130232,3522130236,US -3522130237,3522130237,BR -3522130238,3522130238,US -3522130239,3522130240,BR -3522130241,3522130252,US -3522130253,3522130253,BR -3522130254,3522130254,UA -3522130255,3522130259,US -3522130260,3522130260,CH -3522130261,3522130263,US -3522130264,3522130264,PE -3522130265,3522130269,US -3522130270,3522130270,IN -3522130271,3522130280,US -3522130281,3522130281,BR -3522130282,3522130282,DE -3522130283,3522130283,BR -3522130284,3522130284,US -3522130285,3522130285,BR -3522130286,3522130289,US -3522130290,3522130290,AR -3522130291,3522130291,BR -3522130292,3522130293,US -3522130294,3522130294,GT -3522130295,3522130296,US -3522130297,3522130297,CA -3522130298,3522130298,DE -3522130299,3522130299,CA -3522130300,3522130302,US -3522130303,3522130303,BR -3522130304,3522130306,US -3522130307,3522130307,NP -3522130308,3522130309,BR -3522130310,3522130312,CA -3522130313,3522130313,US -3522130314,3522130314,BR -3522130315,3522130325,US -3522130326,3522130326,EE -3522130327,3522130330,US -3522130331,3522130331,BR -3522130332,3522130332,US -3522130333,3522130333,DE -3522130334,3522130334,BR -3522130335,3522130335,US -3522130336,3522130336,DO -3522130337,3522130339,US -3522130340,3522130341,DO -3522130342,3522130342,PK -3522130343,3522130343,BR -3522130344,3522130346,US -3522130347,3522130348,CA -3522130349,3522130349,US -3522130350,3522130350,GT -3522130351,3522130351,US -3522130352,3522130352,BR -3522130353,3522130356,US -3522130357,3522130357,RU -3522130358,3522130360,CA -3522130361,3522130361,US -3522130362,3522130362,BR -3522130363,3522130363,US -3522130364,3522130364,DE -3522130365,3522130365,EC -3522130366,3522130366,US -3522130367,3522130368,TW -3522130369,3522130370,HK -3522130371,3522130371,US -3522130372,3522130372,CO -3522130373,3522130373,MX -3522130374,3522130374,CO -3522130375,3522130376,BR -3522130377,3522130377,US -3522130378,3522130378,BR -3522130379,3522130383,US -3522130384,3522130384,UA -3522130385,3522130389,US -3522130390,3522130391,PK -3522130392,3522130392,AR -3522130393,3522130393,US -3522130394,3522130394,AR -3522130395,3522130400,US -3522130401,3522130401,PK -3522130402,3522130405,US -3522130406,3522130408,BR -3522130409,3522130412,US -3522130413,3522130413,TW -3522130414,3522130415,US -3522130416,3522130416,EC -3522130417,3522130417,US -3522130418,3522130418,CO -3522130419,3522130421,US -3522130422,3522130422,BR -3522130423,3522130423,CA -3522130424,3522130425,SE -3522130426,3522130426,PH -3522130427,3522130427,BG -3522130428,3522130428,US -3522130429,3522130429,PK -3522130430,3522130430,CA -3522130431,3522130710,US -3522130711,3522130728,BR -3522130729,3522130787,US -3522130788,3522130810,BR -3522130811,3522130831,US -3522130832,3522130894,BR -3522130895,3522131455,US +3522125312,3522131455,US 3522131456,3522131487,CY 3522131488,3522131519,DE -3522131520,3522131528,BR -3522131529,3522131531,TR -3522131532,3522131532,US -3522131533,3522131551,BR -3522131552,3522131615,US +3522131520,3522131615,US 3522131616,3522131647,BR 3522131648,3522131711,US 3522131712,3522131743,GB 3522131744,3522131775,US 3522131776,3522131807,TR -3522131808,3522131844,US -3522131845,3522131846,BR -3522131847,3522131850,US -3522131851,3522131851,BR -3522131852,3522131855,US -3522131856,3522131856,IN -3522131857,3522131857,US -3522131858,3522131858,IN -3522131859,3522131860,PK -3522131861,3522131886,US -3522131887,3522131889,BR -3522131890,3522131890,US -3522131891,3522131891,UA -3522131892,3522131892,VN -3522131893,3522131893,BR -3522131894,3522131897,US -3522131898,3522131898,RU -3522131899,3522131899,BD -3522131900,3522131900,BR -3522131901,3522131904,US -3522131905,3522131905,BR -3522131906,3522131906,CA -3522131907,3522131907,DE -3522131908,3522131909,US -3522131910,3522131911,DE -3522131912,3522131913,IN -3522131914,3522131916,US -3522131917,3522131917,RO -3522131918,3522131919,GB -3522131920,3522131922,US -3522131923,3522131923,GB -3522131924,3522131926,BR -3522131927,3522131929,US -3522131930,3522131931,UA -3522131932,3522131932,US -3522131933,3522131933,BR -3522131934,3522131936,US -3522131937,3522131937,BD -3522131938,3522131940,BR -3522131941,3522131942,US -3522131943,3522131943,IN -3522131944,3522131948,US -3522131949,3522131949,IN -3522131950,3522131950,SV -3522131951,3522131953,US -3522131954,3522131954,AR -3522131955,3522131957,US -3522131958,3522131959,DE -3522131960,3522131960,US -3522131961,3522131964,BR -3522131965,3522132100,US -3522132101,3522132101,BR -3522132102,3522132107,US -3522132108,3522132109,BR -3522132110,3522132123,US -3522132124,3522132124,GB -3522132125,3522132129,US -3522132130,3522132130,BD -3522132131,3522132132,BR -3522132133,3522132133,BD -3522132134,3522132138,US -3522132139,3522132142,BR -3522132143,3522132144,GB -3522132145,3522132145,US -3522132146,3522132147,IN -3522132148,3522132151,US -3522132152,3522132152,BR -3522132153,3522132155,US -3522132156,3522132156,BD -3522132157,3522132157,US -3522132158,3522132158,BR -3522132159,3522132159,US -3522132160,3522132160,BR -3522132161,3522132162,PK -3522132163,3522132163,IN -3522132164,3522132166,US -3522132167,3522132167,IN -3522132168,3522132175,BR -3522132176,3522132176,IN -3522132177,3522132180,PK -3522132181,3522132181,IN -3522132182,3522132182,PK -3522132183,3522132184,BR -3522132185,3522132185,VN -3522132186,3522132188,NL -3522132189,3522132189,US -3522132190,3522132190,DE -3522132191,3522132191,GB -3522132192,3522132192,BR -3522132193,3522132193,PK -3522132194,3522132194,US -3522132195,3522132195,IN -3522132196,3522132197,AT -3522132198,3522132198,MX -3522132199,3522132202,US -3522132203,3522132203,BR -3522132204,3522132204,AR -3522132205,3522132205,US -3522132206,3522132206,BR -3522132207,3522132210,US -3522132211,3522132211,GB -3522132212,3522132212,US -3522132213,3522132213,BR -3522132214,3522132219,US -3522132220,3522132220,IN -3522132221,3522132221,JP -3522132222,3522132222,BD -3522132223,3522132356,US -3522132357,3522132358,BR -3522132359,3522132359,AT -3522132360,3522132365,US -3522132366,3522132366,BR -3522132367,3522132372,US -3522132373,3522132373,BR -3522132374,3522132380,US -3522132381,3522132381,BR -3522132382,3522132389,US -3522132390,3522132390,BR -3522132391,3522132395,US -3522132396,3522132397,BD -3522132398,3522132400,IN -3522132401,3522132402,US -3522132403,3522132404,CA -3522132405,3522132407,US -3522132408,3522132408,DE -3522132409,3522132409,GB -3522132410,3522132410,TR -3522132411,3522132411,CL -3522132412,3522132414,US -3522132415,3522132415,CA -3522132416,3522132417,GB -3522132418,3522132418,BD -3522132419,3522132419,IN -3522132420,3522132422,US -3522132423,3522132425,IN -3522132426,3522132426,BR -3522132427,3522132427,BD -3522132428,3522132430,BR -3522132431,3522132431,BY -3522132432,3522132432,TR -3522132433,3522132433,US -3522132434,3522132437,BR -3522132438,3522132443,US -3522132444,3522132444,VN -3522132445,3522132446,US -3522132447,3522132453,BR -3522132454,3522132459,US -3522132460,3522132460,BD -3522132461,3522132461,BR -3522132462,3522132462,BD -3522132463,3522132463,IN -3522132464,3522132464,US -3522132465,3522132466,IN -3522132467,3522132468,ZA -3522132469,3522132470,US -3522132471,3522132472,IN -3522132473,3522132473,BR -3522132474,3522132475,US -3522132476,3522132476,BD -3522132477,3522132477,IN -3522132478,3522132575,US +3522131808,3522132575,US 3522132576,3522132607,BR 3522132608,3522132639,CA 3522132640,3522132671,US 3522132672,3522132703,BR 3522132704,3522132735,LK -3522132736,3522132746,IN -3522132747,3522132747,BR -3522132748,3522132748,IN -3522132749,3522132749,BR -3522132750,3522132750,IN -3522132751,3522132752,BR -3522132753,3522132753,IN -3522132754,3522132767,BR -3522132768,3522132831,US +3522132736,3522132831,US 3522132832,3522132863,BR 3522132864,3522132895,US 3522132896,3522132927,CA -3522132928,3522132994,US -3522132995,3522132996,GB -3522132997,3522133002,US -3522133003,3522133003,MX -3522133004,3522133005,PK -3522133006,3522133006,BR -3522133007,3522133007,TR -3522133008,3522133008,PK -3522133009,3522133010,US -3522133011,3522133011,SK -3522133012,3522133013,US -3522133014,3522133014,CZ -3522133015,3522133016,IN -3522133017,3522133017,UA -3522133018,3522133018,DE -3522133019,3522133023,US -3522133024,3522133055,BR -3522133056,3522133124,US -3522133125,3522133125,BR -3522133126,3522133134,US -3522133135,3522133135,GT -3522133136,3522133136,UA -3522133137,3522133137,US -3522133138,3522133138,BD -3522133139,3522133139,US -3522133140,3522133142,BR -3522133143,3522133146,US -3522133147,3522133147,AR -3522133148,3522133148,US -3522133149,3522133149,BG -3522133150,3522133154,US -3522133155,3522133155,BR -3522133156,3522133158,VN -3522133159,3522133159,US -3522133160,3522133160,BR -3522133161,3522133161,US -3522133162,3522133162,PK -3522133163,3522133163,BR -3522133164,3522133164,US -3522133165,3522133165,PE -3522133166,3522133168,US -3522133169,3522133169,DE -3522133170,3522133171,US -3522133172,3522133172,PE -3522133173,3522133173,VN -3522133174,3522133175,US -3522133176,3522133176,AR -3522133177,3522133178,US -3522133179,3522133179,TR -3522133180,3522133180,BR -3522133181,3522133311,US +3522132928,3522133311,US 3522133312,3522133375,CH 3522133376,3522133535,US 3522133536,3522133567,TR 3522133568,3522133599,BR -3522133600,3522133603,US -3522133604,3522133620,BR -3522133621,3522133621,US -3522133622,3522133622,BR -3522133623,3522133639,US +3522133600,3522133639,US 3522133640,3522133647,DE 3522133648,3522133663,US 3522133664,3522133695,DE @@ -159015,7 +149995,9 @@ 3524755456,3524763647,AU 3524763648,3524788223,PH 3524788224,3524853759,SG -3524853760,3526361087,CN +3524853760,3525300739,CN +3525300740,3525300743,US +3525300744,3526361087,CN 3526361088,3526393855,NZ 3526393856,3526395903,JP 3526395904,3526397951,CN @@ -159220,7 +150202,11 @@ 3556985156,3556985159,ES 3556985160,3556985207,DE 3556985208,3556985215,ES -3556985216,3556985663,DE +3556985216,3556985383,DE +3556985384,3556985387,IE +3556985388,3556985391,DE +3556985392,3556985407,IE +3556985408,3556985663,DE 3556985664,3556985671,HU 3556985672,3556986143,DE 3556986144,3556986155,DK @@ -159323,9 +150309,7 @@ 3557302272,3557310463,UA 3557310464,3557326847,ES 3557326848,3557335039,DE -3557335040,3557335311,BE -3557335312,3557335327,EU -3557335328,3557335391,BE +3557335040,3557335391,BE 3557335392,3557335455,EU 3557335456,3557335519,BE 3557335520,3557335535,EU @@ -159372,9 +150356,9 @@ 3557359792,3557359871,JE 3557359872,3557360045,GB 3557360046,3557360047,JE -3557360048,3557360243,GB -3557360244,3557360247,JE -3557360248,3557360399,GB +3557360048,3557360363,GB +3557360364,3557360367,JE +3557360368,3557360399,GB 3557360400,3557360407,JE 3557360408,3557360471,GB 3557360472,3557360487,JE @@ -159384,8 +150368,8 @@ 3557360536,3557360543,JE 3557360544,3557360559,GB 3557360560,3557360575,JE -3557360576,3557360680,GB -3557360681,3557360687,JE +3557360576,3557360679,GB +3557360680,3557360687,JE 3557360688,3557360895,GB 3557360896,3557361151,JE 3557361152,3557361159,GB @@ -159537,7 +150521,8 @@ 3557916672,3557920055,NO 3557920056,3557920056,DK 3557920057,3557924863,NO -3557924864,3557925887,FI +3557924864,3557925119,AX +3557925120,3557925887,FI 3557925888,3557926911,AX 3557926912,3557933055,FI 3557933056,3557941247,IT @@ -159720,7 +150705,8 @@ 3558290688,3558290871,ES 3558290872,3558290879,GB 3558290880,3558290943,ES -3558290944,3558290959,DE +3558290944,3558290951,GB +3558290952,3558290959,DE 3558290960,3558290967,NL 3558290968,3558290975,GB 3558290976,3558290991,NL @@ -159761,9 +150747,7 @@ 3558337516,3558337519,ES 3558337520,3558337783,CH 3558337784,3558337787,DE -3558337788,3558337789,CH -3558337790,3558337790,GB -3558337791,3558339699,CH +3558337788,3558339699,CH 3558339700,3558339703,DE 3558339704,3558340655,CH 3558340656,3558340663,CG @@ -160055,9 +151039,9 @@ 3559079936,3559088127,JO 3559088128,3559088263,BE 3559088264,3559088267,GB -3559088268,3559088307,BE -3559088308,3559088311,GB -3559088312,3559088367,BE +3559088268,3559088303,BE +3559088304,3559088319,GB +3559088320,3559088367,BE 3559088368,3559088371,GB 3559088372,3559088375,BE 3559088376,3559088379,GB @@ -160073,8 +151057,8 @@ 3559089408,3559089411,GB 3559089412,3559089415,BE 3559089416,3559089423,GB -3559089424,3559089439,BE -3559089440,3559089443,GB +3559089424,3559089431,BE +3559089432,3559089443,GB 3559089444,3559089447,BE 3559089448,3559089451,GB 3559089452,3559089463,BE @@ -160099,7 +151083,9 @@ 3559089640,3559089643,GB 3559089644,3559089655,BE 3559089656,3559089659,GB -3559089660,3559090071,BE +3559089660,3559089919,BE +3559089920,3559089935,GB +3559089936,3559090071,BE 3559090072,3559090079,NL 3559090080,3559090103,BE 3559090104,3559090111,GB @@ -160113,9 +151099,7 @@ 3559090792,3559090799,GB 3559090800,3559090803,BE 3559090804,3559090807,GB -3559090808,3559090823,BE -3559090824,3559090831,GB -3559090832,3559090863,BE +3559090808,3559090863,BE 3559090864,3559090879,GB 3559090880,3559090887,BE 3559090888,3559090899,GB @@ -160133,7 +151117,9 @@ 3559091088,3559091091,GB 3559091092,3559091095,BE 3559091096,3559091103,GB -3559091104,3559091175,BE +3559091104,3559091115,BE +3559091116,3559091119,GB +3559091120,3559091175,BE 3559091176,3559091183,GB 3559091184,3559091203,BE 3559091204,3559091207,GB @@ -160495,9 +151481,7 @@ 3559849984,3559858175,CZ 3559858176,3559866367,IT 3559866368,3559874559,GB -3559874560,3559877951,LT -3559877952,3559877967,CH -3559877968,3559882751,LT +3559874560,3559882751,LT 3559882752,3559890943,AZ 3559890944,3559899135,CH 3559899136,3559899487,UA @@ -160506,19 +151490,15 @@ 3559899648,3559899903,EE 3559899904,3559900275,UA 3559900276,3559900279,EE -3559900280,3559900431,UA -3559900432,3559900432,EE -3559900433,3559900439,UA +3559900280,3559900439,UA 3559900440,3559900447,EE 3559900448,3559900483,UA 3559900484,3559900487,EE -3559900488,3559900492,UA -3559900493,3559900493,EE -3559900494,3559900503,UA +3559900488,3559900503,UA 3559900504,3559900511,EE 3559900512,3559900611,UA -3559900612,3559900624,EE -3559900625,3559900671,UA +3559900612,3559900623,EE +3559900624,3559900671,UA 3559900672,3559900951,EE 3559900952,3559900959,DE 3559900960,3559900975,SE @@ -160526,7 +151506,11 @@ 3559900984,3559900991,GB 3559900992,3559901007,RU 3559901008,3559901183,UA -3559901184,3559902011,EE +3559901184,3559901695,EE +3559901696,3559901807,UA +3559901808,3559901855,EE +3559901856,3559901919,UA +3559901920,3559902011,EE 3559902012,3559902015,UA 3559902016,3559902031,EE 3559902032,3559902047,UA @@ -160595,8 +151579,8 @@ 3560027624,3560027631,GB 3560027632,3560027647,ES 3560027648,3560028159,GB -3560028160,3560028767,ES -3560028768,3560028863,GB +3560028160,3560028775,ES +3560028776,3560028863,GB 3560028864,3560029239,ES 3560029240,3560029247,GB 3560029248,3560029279,ES @@ -160711,9 +151695,7 @@ 3560726528,3560734719,DK 3560734720,3560742911,DE 3560742912,3560751103,AT -3560751104,3560761856,DE -3560761857,3560761857,A2 -3560761858,3560767487,DE +3560751104,3560767487,DE 3560767488,3560832791,NL 3560832792,3560832799,BE 3560832800,3560833023,NL @@ -161431,606 +152413,7 @@ 3560943076,3560943079,ES 3560943080,3560943095,DE 3560943096,3560943099,PL -3560943100,3560943110,DE -3560943111,3560943111,ES -3560943112,3560943113,DE -3560943114,3560943115,ES -3560943116,3560943116,DK -3560943117,3560943117,IL -3560943118,3560943118,DE -3560943119,3560943119,IT -3560943120,3560943120,DE -3560943121,3560943121,CH -3560943122,3560943122,ES -3560943123,3560943125,DE -3560943126,3560943126,FR -3560943127,3560943127,HU -3560943128,3560943129,DE -3560943130,3560943130,BE -3560943131,3560943131,RU -3560943132,3560943132,BE -3560943133,3560943133,ES -3560943134,3560943136,DE -3560943137,3560943137,ES -3560943138,3560943138,CH -3560943139,3560943139,DE -3560943140,3560943140,ES -3560943141,3560943141,CH -3560943142,3560943142,DE -3560943143,3560943145,HU -3560943146,3560943146,IE -3560943147,3560943147,CH -3560943148,3560943149,DE -3560943150,3560943150,ES -3560943151,3560943151,IT -3560943152,3560943152,HU -3560943153,3560943154,DE -3560943155,3560943155,FR -3560943156,3560943157,DE -3560943158,3560943158,FR -3560943159,3560943159,IT -3560943160,3560943160,NO -3560943161,3560943161,BE -3560943162,3560943162,GR -3560943163,3560943163,DE -3560943164,3560943164,PL -3560943165,3560943165,FR -3560943166,3560943166,GB -3560943167,3560943167,FR -3560943168,3560943168,ES -3560943169,3560943169,DE -3560943170,3560943170,ES -3560943171,3560943171,IT -3560943172,3560943172,ES -3560943173,3560943173,BE -3560943174,3560943175,DE -3560943176,3560943177,CH -3560943178,3560943178,IT -3560943179,3560943179,PL -3560943180,3560943180,GB -3560943181,3560943181,DE -3560943182,3560943183,ES -3560943184,3560943184,IT -3560943185,3560943185,DK -3560943186,3560943186,ES -3560943187,3560943187,PT -3560943188,3560943188,IT -3560943189,3560943192,DE -3560943193,3560943193,ES -3560943194,3560943194,AT -3560943195,3560943195,DE -3560943196,3560943197,IT -3560943198,3560943198,DE -3560943199,3560943199,PT -3560943200,3560943200,AT -3560943201,3560943201,IT -3560943202,3560943202,IL -3560943203,3560943204,DE -3560943205,3560943205,IT -3560943206,3560943207,DE -3560943208,3560943208,AT -3560943209,3560943210,ES -3560943211,3560943211,FR -3560943212,3560943212,DE -3560943213,3560943213,FR -3560943214,3560943214,PL -3560943215,3560943218,DE -3560943219,3560943219,ES -3560943220,3560943221,DE -3560943222,3560943222,ES -3560943223,3560943223,FR -3560943224,3560943224,DE -3560943225,3560943226,GR -3560943227,3560943227,DE -3560943228,3560943230,NL -3560943231,3560943232,FR -3560943233,3560943233,PL -3560943234,3560943234,EE -3560943235,3560943235,CH -3560943236,3560943237,NL -3560943238,3560943238,DE -3560943239,3560943239,FR -3560943240,3560943240,GB -3560943241,3560943241,FR -3560943242,3560943242,DE -3560943243,3560943243,FR -3560943244,3560943244,PL -3560943245,3560943245,CH -3560943246,3560943247,DE -3560943248,3560943248,GR -3560943249,3560943249,CH -3560943250,3560943250,AT -3560943251,3560943251,GB -3560943252,3560943252,BE -3560943253,3560943253,DE -3560943254,3560943254,ES -3560943255,3560943255,GB -3560943256,3560943256,DE -3560943257,3560943257,ES -3560943258,3560943258,FR -3560943259,3560943259,DE -3560943260,3560943260,ES -3560943261,3560943261,IE -3560943262,3560943262,DE -3560943263,3560943263,IT -3560943264,3560943264,CZ -3560943265,3560943267,DE -3560943268,3560943269,IT -3560943270,3560943270,GB -3560943271,3560943271,IT -3560943272,3560943272,ES -3560943273,3560943273,FR -3560943274,3560943274,GB -3560943275,3560943275,DE -3560943276,3560943276,FR -3560943277,3560943277,IT -3560943278,3560943278,DE -3560943279,3560943279,FR -3560943280,3560943281,DE -3560943282,3560943282,FR -3560943283,3560943283,ES -3560943284,3560943286,DE -3560943287,3560943287,NL -3560943288,3560943290,FR -3560943291,3560943292,IT -3560943293,3560943293,ES -3560943294,3560943294,IT -3560943295,3560943295,DE -3560943296,3560943296,RU -3560943297,3560943297,ES -3560943298,3560943298,FR -3560943299,3560943299,GB -3560943300,3560943300,DE -3560943301,3560943301,FR -3560943302,3560943302,ES -3560943303,3560943303,IT -3560943304,3560943304,FR -3560943305,3560943306,DE -3560943307,3560943307,ES -3560943308,3560943309,DE -3560943310,3560943311,IT -3560943312,3560943312,PL -3560943313,3560943313,DE -3560943314,3560943314,ES -3560943315,3560943315,IT -3560943316,3560943316,GB -3560943317,3560943317,IT -3560943318,3560943318,CH -3560943319,3560943319,ES -3560943320,3560943320,IT -3560943321,3560943321,GB -3560943322,3560943322,DE -3560943323,3560943323,NL -3560943324,3560943324,DE -3560943325,3560943325,CH -3560943326,3560943326,RU -3560943327,3560943329,DE -3560943330,3560943331,IT -3560943332,3560943335,DE -3560943336,3560943336,ES -3560943337,3560943337,IT -3560943338,3560943338,BE -3560943339,3560943339,NL -3560943340,3560943341,DE -3560943342,3560943342,ES -3560943343,3560943343,FR -3560943344,3560943344,NL -3560943345,3560943345,CH -3560943346,3560943346,IT -3560943347,3560943347,ES -3560943348,3560943348,FR -3560943349,3560943349,DE -3560943350,3560943350,BE -3560943351,3560943351,SE -3560943352,3560943352,IT -3560943353,3560943354,DE -3560943355,3560943355,IT -3560943356,3560943356,DE -3560943357,3560943357,ES -3560943358,3560943358,BE -3560943359,3560943361,DE -3560943362,3560943362,GB -3560943363,3560943365,DE -3560943366,3560943367,IT -3560943368,3560943368,DE -3560943369,3560943369,GR -3560943370,3560943370,DE -3560943371,3560943371,AT -3560943372,3560943372,FR -3560943373,3560943375,DE -3560943376,3560943376,ES -3560943377,3560943377,GB -3560943378,3560943378,DE -3560943379,3560943380,ES -3560943381,3560943383,DE -3560943384,3560943384,FR -3560943385,3560943385,ES -3560943386,3560943386,CH -3560943387,3560943387,GB -3560943388,3560943391,DE -3560943392,3560943392,GB -3560943393,3560943393,DE -3560943394,3560943394,ES -3560943395,3560943395,NL -3560943396,3560943396,BE -3560943397,3560943397,DE -3560943398,3560943398,BE -3560943399,3560943399,CH -3560943400,3560943400,IT -3560943401,3560943401,DE -3560943402,3560943402,NL -3560943403,3560943403,DE -3560943404,3560943404,BE -3560943405,3560943405,DE -3560943406,3560943407,ES -3560943408,3560943408,IT -3560943409,3560943409,ES -3560943410,3560943410,NL -3560943411,3560943411,DE -3560943412,3560943412,IT -3560943413,3560943413,ES -3560943414,3560943415,DE -3560943416,3560943416,FR -3560943417,3560943417,DE -3560943418,3560943418,GB -3560943419,3560943419,FR -3560943420,3560943420,DE -3560943421,3560943421,HU -3560943422,3560943422,DE -3560943423,3560943423,FR -3560943424,3560943424,DE -3560943425,3560943425,ES -3560943426,3560943426,IT -3560943427,3560943427,FR -3560943428,3560943428,NO -3560943429,3560943430,NL -3560943431,3560943432,DE -3560943433,3560943433,GB -3560943434,3560943434,SE -3560943435,3560943435,DE -3560943436,3560943436,FR -3560943437,3560943437,ES -3560943438,3560943438,FR -3560943439,3560943439,NO -3560943440,3560943440,FR -3560943441,3560943441,DE -3560943442,3560943442,ES -3560943443,3560943443,BE -3560943444,3560943444,CH -3560943445,3560943445,PT -3560943446,3560943446,DE -3560943447,3560943447,GB -3560943448,3560943450,DE -3560943451,3560943451,PL -3560943452,3560943452,GB -3560943453,3560943454,DE -3560943455,3560943456,GB -3560943457,3560943457,ES -3560943458,3560943459,IT -3560943460,3560943460,ES -3560943461,3560943461,CH -3560943462,3560943462,FR -3560943463,3560943463,NL -3560943464,3560943464,ES -3560943465,3560943465,FR -3560943466,3560943466,NO -3560943467,3560943467,IT -3560943468,3560943468,CH -3560943469,3560943469,IT -3560943470,3560943471,DE -3560943472,3560943472,BE -3560943473,3560943473,AT -3560943474,3560943474,CH -3560943475,3560943475,ES -3560943476,3560943476,BE -3560943477,3560943477,DE -3560943478,3560943478,IT -3560943479,3560943479,GB -3560943480,3560943480,NL -3560943481,3560943481,BG -3560943482,3560943482,DE -3560943483,3560943486,ES -3560943487,3560943487,DE -3560943488,3560943488,ES -3560943489,3560943489,DE -3560943490,3560943490,GB -3560943491,3560943491,DE -3560943492,3560943493,FR -3560943494,3560943494,GB -3560943495,3560943495,IT -3560943496,3560943499,DE -3560943500,3560943500,CH -3560943501,3560943501,ES -3560943502,3560943507,DE -3560943508,3560943508,DK -3560943509,3560943510,DE -3560943511,3560943511,IT -3560943512,3560943512,DE -3560943513,3560943513,LU -3560943514,3560943515,ES -3560943516,3560943517,DE -3560943518,3560943518,LU -3560943519,3560943519,DE -3560943520,3560943520,DK -3560943521,3560943521,DE -3560943522,3560943522,GB -3560943523,3560943524,DE -3560943525,3560943525,NL -3560943526,3560943526,IT -3560943527,3560943527,DE -3560943528,3560943528,FR -3560943529,3560943529,DE -3560943530,3560943530,CH -3560943531,3560943532,DE -3560943533,3560943533,HU -3560943534,3560943534,BY -3560943535,3560943535,FR -3560943536,3560943536,BE -3560943537,3560943537,DE -3560943538,3560943538,GB -3560943539,3560943539,DE -3560943540,3560943540,BE -3560943541,3560943541,NL -3560943542,3560943542,DE -3560943543,3560943543,NL -3560943544,3560943544,ES -3560943545,3560943546,DE -3560943547,3560943547,SI -3560943548,3560943548,GB -3560943549,3560943549,DE -3560943550,3560943550,HU -3560943551,3560943551,FR -3560943552,3560943552,IT -3560943553,3560943553,DE -3560943554,3560943554,IS -3560943555,3560943555,FR -3560943556,3560943556,DE -3560943557,3560943557,ES -3560943558,3560943558,DE -3560943559,3560943559,GB -3560943560,3560943562,IT -3560943563,3560943563,HU -3560943564,3560943564,DE -3560943565,3560943565,GB -3560943566,3560943566,DE -3560943567,3560943567,FR -3560943568,3560943568,GB -3560943569,3560943570,FR -3560943571,3560943572,DE -3560943573,3560943573,FR -3560943574,3560943574,NO -3560943575,3560943575,BE -3560943576,3560943576,IT -3560943577,3560943577,DK -3560943578,3560943578,ES -3560943579,3560943580,DE -3560943581,3560943581,NL -3560943582,3560943582,DE -3560943583,3560943583,ES -3560943584,3560943584,IT -3560943585,3560943585,FR -3560943586,3560943586,ES -3560943587,3560943587,DE -3560943588,3560943588,IT -3560943589,3560943589,NL -3560943590,3560943590,HU -3560943591,3560943591,AT -3560943592,3560943592,SK -3560943593,3560943593,PL -3560943594,3560943594,FR -3560943595,3560943596,ES -3560943597,3560943599,DE -3560943600,3560943600,AT -3560943601,3560943602,IT -3560943603,3560943603,CH -3560943604,3560943604,ES -3560943605,3560943605,GB -3560943606,3560943607,DE -3560943608,3560943608,IT -3560943609,3560943610,DE -3560943611,3560943611,FR -3560943612,3560943612,DE -3560943613,3560943613,ES -3560943614,3560943617,DE -3560943618,3560943618,FR -3560943619,3560943620,ES -3560943621,3560943621,SE -3560943622,3560943622,BE -3560943623,3560943623,DE -3560943624,3560943624,ES -3560943625,3560943625,DE -3560943626,3560943626,ES -3560943627,3560943627,DK -3560943628,3560943628,DE -3560943629,3560943629,IT -3560943630,3560943630,DE -3560943631,3560943631,HU -3560943632,3560943632,CH -3560943633,3560943633,ES -3560943634,3560943634,FR -3560943635,3560943635,ES -3560943636,3560943636,DE -3560943637,3560943637,PL -3560943638,3560943638,IT -3560943639,3560943639,ES -3560943640,3560943640,FR -3560943641,3560943641,DE -3560943642,3560943643,IT -3560943644,3560943644,DE -3560943645,3560943645,GB -3560943646,3560943646,DE -3560943647,3560943647,ES -3560943648,3560943648,DE -3560943649,3560943649,NL -3560943650,3560943651,DE -3560943652,3560943652,AT -3560943653,3560943653,DE -3560943654,3560943654,IT -3560943655,3560943655,DE -3560943656,3560943656,IT -3560943657,3560943657,DE -3560943658,3560943658,GB -3560943659,3560943659,DE -3560943660,3560943660,PT -3560943661,3560943661,DK -3560943662,3560943662,DE -3560943663,3560943664,NL -3560943665,3560943666,DE -3560943667,3560943667,PL -3560943668,3560943668,DK -3560943669,3560943669,FR -3560943670,3560943671,DE -3560943672,3560943672,BH -3560943673,3560943673,SE -3560943674,3560943674,MA -3560943675,3560943675,FR -3560943676,3560943677,DE -3560943678,3560943680,ES -3560943681,3560943682,DE -3560943683,3560943683,GR -3560943684,3560943684,NL -3560943685,3560943685,IT -3560943686,3560943686,FR -3560943687,3560943687,PT -3560943688,3560943688,DE -3560943689,3560943689,PT -3560943690,3560943690,IT -3560943691,3560943691,DE -3560943692,3560943692,SE -3560943693,3560943693,DE -3560943694,3560943694,FR -3560943695,3560943695,DE -3560943696,3560943697,CH -3560943698,3560943698,DE -3560943699,3560943699,IT -3560943700,3560943700,DE -3560943701,3560943701,AT -3560943702,3560943702,DE -3560943703,3560943703,FR -3560943704,3560943704,DE -3560943705,3560943705,CH -3560943706,3560943706,LI -3560943707,3560943709,DE -3560943710,3560943710,NL -3560943711,3560943711,DE -3560943712,3560943712,IT -3560943713,3560943713,PL -3560943714,3560943714,NL -3560943715,3560943715,DE -3560943716,3560943716,GB -3560943717,3560943717,FR -3560943718,3560943719,DE -3560943720,3560943721,IT -3560943722,3560943726,DE -3560943727,3560943727,ES -3560943728,3560943728,GB -3560943729,3560943729,DE -3560943730,3560943730,NL -3560943731,3560943731,IT -3560943732,3560943732,FR -3560943733,3560943733,NO -3560943734,3560943736,DE -3560943737,3560943737,GR -3560943738,3560943738,PT -3560943739,3560943740,DE -3560943741,3560943741,FR -3560943742,3560943742,DE -3560943743,3560943743,PL -3560943744,3560943744,DE -3560943745,3560943745,PL -3560943746,3560943748,DE -3560943749,3560943749,GB -3560943750,3560943750,DE -3560943751,3560943751,IT -3560943752,3560943752,DE -3560943753,3560943753,ES -3560943754,3560943754,HU -3560943755,3560943755,BE -3560943756,3560943756,IT -3560943757,3560943757,DE -3560943758,3560943758,CZ -3560943759,3560943759,IE -3560943760,3560943760,NO -3560943761,3560943761,GB -3560943762,3560943762,IT -3560943763,3560943763,FR -3560943764,3560943764,DE -3560943765,3560943765,SE -3560943766,3560943766,CY -3560943767,3560943768,DE -3560943769,3560943769,FR -3560943770,3560943770,NL -3560943771,3560943771,IT -3560943772,3560943774,DE -3560943775,3560943775,FR -3560943776,3560943780,DE -3560943781,3560943781,ES -3560943782,3560943782,DE -3560943783,3560943783,BE -3560943784,3560943786,DE -3560943787,3560943787,ES -3560943788,3560943788,DK -3560943789,3560943789,IT -3560943790,3560943790,DE -3560943791,3560943791,IT -3560943792,3560943793,DE -3560943794,3560943794,FR -3560943795,3560943795,DE -3560943796,3560943796,IT -3560943797,3560943797,DE -3560943798,3560943798,DK -3560943799,3560943799,DE -3560943800,3560943800,CH -3560943801,3560943801,FR -3560943802,3560943802,IT -3560943803,3560943803,HU -3560943804,3560943804,ES -3560943805,3560943805,DE -3560943806,3560943806,ES -3560943807,3560943807,DK -3560943808,3560943810,DE -3560943811,3560943811,ES -3560943812,3560943812,IT -3560943813,3560943813,CH -3560943814,3560943814,DE -3560943815,3560943815,IT -3560943816,3560943817,FR -3560943818,3560943818,PT -3560943819,3560943819,DE -3560943820,3560943820,FR -3560943821,3560943821,IT -3560943822,3560943822,DE -3560943823,3560943823,GR -3560943824,3560943827,DE -3560943828,3560943828,ES -3560943829,3560943829,NL -3560943830,3560943830,DK -3560943831,3560943833,FR -3560943834,3560943836,DE -3560943837,3560943837,CH -3560943838,3560943838,DE -3560943839,3560943839,NO -3560943840,3560943840,DE -3560943841,3560943841,GB -3560943842,3560943842,DE -3560943843,3560943843,GB -3560943844,3560943844,BE -3560943845,3560943845,CZ -3560943846,3560943846,LU -3560943847,3560943847,CZ -3560943848,3560943848,FR -3560943849,3560943849,DE -3560943850,3560943850,NL -3560943851,3560943857,DE -3560943858,3560943858,GB -3560943859,3560943859,DE -3560943860,3560943860,GB -3560943861,3560943865,DE -3560943866,3560943866,BE -3560943867,3560943867,ES -3560943868,3560943868,DE -3560943869,3560943869,LU -3560943870,3560943871,DE +3560943100,3560943871,DE 3560943872,3560943875,BR 3560943876,3560943879,DE 3560943880,3560943887,US @@ -162175,21 +152558,7 @@ 3560945140,3560945143,SG 3560945144,3560945147,IN 3560945148,3560945151,SG -3560945152,3560945153,DE -3560945154,3560945156,AU -3560945157,3560945157,NZ -3560945158,3560945167,AU -3560945168,3560945168,DE -3560945169,3560945169,AU -3560945170,3560945191,DE -3560945192,3560945192,AU -3560945193,3560945194,DE -3560945195,3560945195,AU -3560945196,3560945204,DE -3560945205,3560945205,AU -3560945206,3560945206,IN -3560945207,3560945209,AU -3560945210,3560945227,DE +3560945152,3560945227,DE 3560945228,3560945231,IN 3560945232,3560945267,DE 3560945268,3560945271,AU @@ -162199,76 +152568,7 @@ 3560945356,3560945359,TH 3560945360,3560945403,JP 3560945404,3560945407,TH -3560945408,3560945409,DE -3560945410,3560945410,MY -3560945411,3560945411,TW -3560945412,3560945412,CN -3560945413,3560945413,SG -3560945414,3560945414,IN -3560945415,3560945416,SG -3560945417,3560945418,CN -3560945419,3560945419,MY -3560945420,3560945420,DE -3560945421,3560945422,SG -3560945423,3560945423,CN -3560945424,3560945424,MY -3560945425,3560945425,IN -3560945426,3560945426,MY -3560945427,3560945427,CN -3560945428,3560945428,SG -3560945429,3560945429,TW -3560945430,3560945430,MY -3560945431,3560945431,CN -3560945432,3560945433,IN -3560945434,3560945434,TW -3560945435,3560945435,MY -3560945436,3560945436,CN -3560945437,3560945437,SG -3560945438,3560945438,TW -3560945439,3560945439,SG -3560945440,3560945440,ID -3560945441,3560945441,SG -3560945442,3560945443,IN -3560945444,3560945447,SG -3560945448,3560945448,DE -3560945449,3560945449,IN -3560945450,3560945450,SG -3560945451,3560945451,IN -3560945452,3560945452,DE -3560945453,3560945453,IN -3560945454,3560945458,SG -3560945459,3560945459,TW -3560945460,3560945461,SG -3560945462,3560945462,IN -3560945463,3560945465,SG -3560945466,3560945466,CN -3560945467,3560945467,MY -3560945468,3560945469,SG -3560945470,3560945470,CN -3560945471,3560945471,SG -3560945472,3560945472,CN -3560945473,3560945473,TW -3560945474,3560945475,SG -3560945476,3560945476,CN -3560945477,3560945477,TW -3560945478,3560945478,IN -3560945479,3560945479,SG -3560945480,3560945481,IN -3560945482,3560945482,DE -3560945483,3560945485,MY -3560945486,3560945487,IN -3560945488,3560945488,DE -3560945489,3560945489,MY -3560945490,3560945490,TH -3560945491,3560945492,IN -3560945493,3560945495,DE -3560945496,3560945496,IN -3560945497,3560945497,DE -3560945498,3560945499,IN -3560945500,3560945500,SG -3560945501,3560945501,US -3560945502,3560945502,IN -3560945503,3560945539,DE +3560945408,3560945539,DE 3560945540,3560945543,SG 3560945544,3560945551,IN 3560945552,3560945555,DE @@ -162337,104 +152637,7 @@ 3560945876,3560945911,US 3560945912,3560945915,CA 3560945916,3560945919,US -3560945920,3560946017,DE -3560946018,3560946018,FI -3560946019,3560946019,CZ -3560946020,3560946176,DE -3560946177,3560946189,US -3560946190,3560946190,AR -3560946191,3560946194,US -3560946195,3560946195,PE -3560946196,3560946196,CA -3560946197,3560946197,US -3560946198,3560946198,CA -3560946199,3560946199,AR -3560946200,3560946200,US -3560946201,3560946201,CA -3560946202,3560946202,DE -3560946203,3560946203,CA -3560946204,3560946204,US -3560946205,3560946205,PE -3560946206,3560946208,US -3560946209,3560946209,CA -3560946210,3560946212,US -3560946213,3560946213,CO -3560946214,3560946214,CA -3560946215,3560946215,PE -3560946216,3560946229,US -3560946230,3560946230,AR -3560946231,3560946231,US -3560946232,3560946232,CA -3560946233,3560946234,US -3560946235,3560946235,CL -3560946236,3560946237,US -3560946238,3560946238,AR -3560946239,3560946253,US -3560946254,3560946254,SG -3560946255,3560946256,US -3560946257,3560946257,MX -3560946258,3560946259,US -3560946260,3560946260,AR -3560946261,3560946262,US -3560946263,3560946263,AR -3560946264,3560946266,US -3560946267,3560946267,CA -3560946268,3560946271,US -3560946272,3560946272,DE -3560946273,3560946273,CA -3560946274,3560946279,US -3560946280,3560946280,ES -3560946281,3560946282,US -3560946283,3560946283,CL -3560946284,3560946284,US -3560946285,3560946285,CO -3560946286,3560946290,US -3560946291,3560946291,CA -3560946292,3560946295,US -3560946296,3560946296,CL -3560946297,3560946297,DE -3560946298,3560946298,US -3560946299,3560946299,DE -3560946300,3560946300,CL -3560946301,3560946311,DE -3560946312,3560946312,US -3560946313,3560946317,DE -3560946318,3560946319,US -3560946320,3560946320,DE -3560946321,3560946326,US -3560946327,3560946327,CA -3560946328,3560946328,US -3560946329,3560946329,DO -3560946330,3560946330,US -3560946331,3560946331,DO -3560946332,3560946333,CA -3560946334,3560946335,US -3560946336,3560946336,CA -3560946337,3560946337,DE -3560946338,3560946338,CA -3560946339,3560946339,US -3560946340,3560946340,CL -3560946341,3560946342,CA -3560946343,3560946343,DO -3560946344,3560946344,AR -3560946345,3560946345,US -3560946346,3560946346,PE -3560946347,3560946347,US -3560946348,3560946361,DE -3560946362,3560946363,US -3560946364,3560946367,DE -3560946368,3560946368,US -3560946369,3560946372,DE -3560946373,3560946373,US -3560946374,3560946374,DE -3560946375,3560946375,US -3560946376,3560946398,DE -3560946399,3560946399,US -3560946400,3560946408,DE -3560946409,3560946409,US -3560946410,3560946419,DE -3560946420,3560946420,US -3560946421,3560946431,DE +3560945920,3560946431,DE 3560946432,3560946443,US 3560946444,3560946447,BR 3560946448,3560946451,DE @@ -162481,44 +152684,7 @@ 3560946668,3560946671,MX 3560946672,3560946679,BR 3560946680,3560946687,US -3560946688,3560946689,DE -3560946690,3560946695,US -3560946696,3560946696,BR -3560946697,3560946698,US -3560946699,3560946700,DE -3560946701,3560946701,CO -3560946702,3560946706,US -3560946707,3560946707,VE -3560946708,3560946708,BR -3560946709,3560946710,VE -3560946711,3560946711,US -3560946712,3560946712,VE -3560946713,3560946714,US -3560946715,3560946715,CO -3560946716,3560946716,US -3560946717,3560946717,AR -3560946718,3560946718,US -3560946719,3560946720,BR -3560946721,3560946723,CO -3560946724,3560946724,MX -3560946725,3560946729,US -3560946730,3560946730,MX -3560946731,3560946733,US -3560946734,3560946734,PR -3560946735,3560946747,US -3560946748,3560946748,DE -3560946749,3560946760,US -3560946761,3560946761,DE -3560946762,3560946767,US -3560946768,3560946768,CA -3560946769,3560946769,US -3560946770,3560946825,DE -3560946826,3560946826,US -3560946827,3560946835,DE -3560946836,3560946836,US -3560946837,3560946839,DE -3560946840,3560946840,US -3560946841,3560946943,DE +3560946688,3560946943,DE 3560946944,3560947199,US 3560947200,3560947203,CA 3560947204,3560947207,US @@ -162687,9 +152853,7 @@ 3561022976,3561037823,DE 3561037824,3561039231,BE 3561039232,3561039263,NL -3561039264,3561039327,BE -3561039328,3561039330,NL -3561039331,3561046015,BE +3561039264,3561046015,BE 3561046016,3561054207,RU 3561054208,3561062399,MT 3561062400,3561070591,TR @@ -162839,8 +153003,7 @@ 3561607680,3561607711,GB 3561607712,3561610239,FR 3561610240,3561610495,US -3561610496,3561610497,FR -3561610498,3561610511,GB +3561610496,3561610511,GB 3561610512,3561610527,FR 3561610528,3561610559,GB 3561610560,3561610663,FR @@ -162907,7 +153070,9 @@ 3561807872,3561815295,BE 3561815296,3561815551,LU 3561815552,3561816063,BE -3561816064,3561823999,VA +3561816064,3561819263,VA +3561819264,3561819279,IT +3561819280,3561823999,VA 3561824000,3561824255,IT 3561824256,3561832447,LI 3561832448,3561840639,IT @@ -162975,14 +153140,17 @@ 3561926984,3561926999,NL 3561927000,3561927015,GB 3561927016,3561927039,NL -3561927040,3561927103,GB +3561927040,3561927055,GB +3561927056,3561927071,NL +3561927072,3561927103,GB 3561927104,3561927167,NL 3561927168,3561927551,GB 3561927552,3561929727,NL 3561929728,3561929791,GB 3561929792,3561929823,NL 3561929824,3561929855,CH -3561929856,3561929879,GB +3561929856,3561929871,NL +3561929872,3561929879,GB 3561929880,3561929903,NL 3561929904,3561929967,GB 3561929968,3561930239,NL @@ -163530,7 +153698,9 @@ 3564024136,3564024143,IT 3564024144,3564024191,GB 3564024192,3564024207,IT -3564024208,3564024639,GB +3564024208,3564024303,GB +3564024304,3564024311,IT +3564024312,3564024639,GB 3564024640,3564024671,IT 3564024672,3564027903,GB 3564027904,3564036351,DE @@ -163614,9 +153784,7 @@ 3564331008,3564339199,ES 3564339200,3564339991,GB 3564339992,3564339999,NL -3564340000,3564344031,GB -3564344032,3564344047,NL -3564344048,3564344207,GB +3564340000,3564344207,GB 3564344208,3564344215,NL 3564344216,3564345143,GB 3564345144,3564345151,NL @@ -163724,9 +153892,11 @@ 3564561680,3564561687,US 3564561688,3564561695,GB 3564561696,3564561791,US -3564561792,3564561855,GB -3564561856,3564561919,US -3564561920,3564562431,CH +3564561792,3564561795,GB +3564561796,3564561799,US +3564561800,3564561855,GB +3564561856,3564562175,US +3564562176,3564562431,GB 3564562432,3564562687,GB 3564562688,3564562831,US 3564562832,3564562847,GB @@ -163783,7 +153953,9 @@ 3564568256,3564568319,US 3564568320,3564571055,GB 3564571056,3564571071,DE -3564571072,3564571391,GB +3564571072,3564571327,GB +3564571328,3564571358,CW +3564571359,3564571391,GB 3564571392,3564571455,FR 3564571456,3564571479,GB 3564571480,3564571487,FR @@ -163846,7 +154018,9 @@ 3564716032,3564724223,IT 3564724224,3564732415,NL 3564732416,3564733183,DE -3564733184,3564733439,GB +3564733184,3564733375,GB +3564733376,3564733383,DE +3564733384,3564733439,GB 3564733440,3564734207,DE 3564734208,3564734463,EU 3564734464,3564734815,DE @@ -164130,9 +154304,7 @@ 3564948352,3564953647,GB 3564953648,3564953651,CH 3564953652,3564953727,GB -3564953728,3564953743,AT -3564953744,3564953744,GB -3564953745,3564953759,AT +3564953728,3564953759,AT 3564953760,3564953791,GB 3564953792,3564953855,AT 3564953856,3564954111,GB @@ -164153,8 +154325,8 @@ 3564954368,3564954383,AT 3564954384,3564954415,GB 3564954416,3564954431,DE -3564954432,3564956160,GB -3564956161,3564956671,AT +3564954432,3564956159,GB +3564956160,3564956671,AT 3564956672,3564956967,GB 3564956968,3564956971,CH 3564956972,3564956975,US @@ -164272,9 +154444,7 @@ 3564959760,3564959775,GB 3564959776,3564959807,AT 3564959808,3564959839,GB -3564959840,3564959903,AT -3564959904,3564959904,GB -3564959905,3564959967,AT +3564959840,3564959967,AT 3564959968,3564959999,GB 3564960000,3564960127,AT 3564960128,3564960135,DE @@ -164331,9 +154501,7 @@ 3565038944,3565038951,GB 3565038952,3565039087,IE 3565039088,3565039615,GB -3565039616,3565042199,IE -3565042200,3565042207,GB -3565042208,3565042255,IE +3565039616,3565042255,IE 3565042256,3565043711,GB 3565043712,3565045263,AT 3565045264,3565045279,SK @@ -164514,7 +154682,9 @@ 3565753080,3565753183,GB 3565753184,3565753247,EU 3565753248,3565753279,GB -3565753280,3565753799,EU +3565753280,3565753343,EU +3565753344,3565753791,GB +3565753792,3565753799,EU 3565753800,3565753815,GB 3565753816,3565753823,EU 3565753824,3565753831,GB @@ -164961,8 +155131,8 @@ 3567452384,3567452399,ES 3567452400,3567452415,GB 3567452416,3567453439,ES -3567453440,3567453695,GB -3567453696,3567454239,ES +3567453440,3567453951,GB +3567453952,3567454239,ES 3567454240,3567454255,GB 3567454256,3567454335,ES 3567454336,3567454463,GB @@ -165216,7 +155386,9 @@ 3567665152,3567673343,ES 3567673344,3567674171,AT 3567674172,3567674175,DE -3567674176,3567681535,AT +3567674176,3567676287,AT +3567676288,3567676303,GB +3567676304,3567681535,AT 3567681536,3567714303,ES 3567714304,3567715327,GB 3567715328,3567715583,EU @@ -165348,13 +155520,9 @@ 3569242048,3569242111,LU 3569242112,3569243903,BE 3569243904,3569244031,NL -3569244032,3569244303,BE -3569244304,3569244319,LU -3569244320,3569245695,BE +3569244032,3569245695,BE 3569245696,3569245727,LU -3569245728,3569250879,BE -3569250880,3569250895,LU -3569250896,3569251071,BE +3569245728,3569251071,BE 3569251072,3569251327,LU 3569251328,3569251839,US 3569251840,3569252991,BE @@ -165751,8 +155919,8 @@ 3571324032,3571326207,GB 3571326208,3571326215,DE 3571326216,3571326231,GB -3571326232,3571326247,DE -3571326248,3571326983,GB +3571326232,3571326239,DE +3571326240,3571326983,GB 3571326984,3571326991,DE 3571326992,3571328511,GB 3571328512,3571328543,DE @@ -165869,7 +156037,9 @@ 3571515392,3571548159,GB 3571548160,3571580927,ES 3571580928,3571646463,FI -3571646464,3571657727,DE +3571646464,3571655560,DE +3571655561,3571655561,RO +3571655562,3571657727,DE 3571657728,3571657983,FR 3571657984,3571658239,GB 3571658240,3571658751,PL @@ -166041,8 +156211,8 @@ 3574181424,3574181431,GB 3574181432,3574181527,ES 3574181528,3574181535,GB -3574181536,3574182727,ES -3574182728,3574182975,GB +3574181536,3574182783,ES +3574182784,3574182975,GB 3574182976,3574183679,ES 3574183680,3574183807,GB 3574183808,3574185031,ES @@ -166595,9 +156765,7 @@ 3575864344,3575864347,NL 3575864348,3575864359,GB 3575864360,3575864363,NL -3575864364,3575864380,GB -3575864381,3575864382,NL -3575864383,3575864387,GB +3575864364,3575864387,GB 3575864388,3575864391,NL 3575864392,3575864395,GB 3575864396,3575864403,NL @@ -166827,9 +156995,7 @@ 3576076568,3576076575,GB 3576076576,3576076623,EU 3576076624,3576076631,GB -3576076632,3576076703,EU -3576076704,3576076719,GB -3576076720,3576076783,EU +3576076632,3576076783,EU 3576076784,3576076791,GB 3576076792,3576077439,EU 3576077440,3576077471,GB @@ -166940,7 +157106,9 @@ 3576121344,3576121471,CH 3576121472,3576121855,GB 3576121856,3576122111,CH -3576122112,3576133759,GB +3576122112,3576122543,GB +3576122544,3576122551,CH +3576122552,3576133759,GB 3576133760,3576133775,CH 3576133776,3576134399,GB 3576134400,3576134463,SE @@ -167044,7 +157212,9 @@ 3576254864,3576254879,GB 3576254880,3576254895,FR 3576254896,3576254911,GB -3576254912,3576255375,FR +3576254912,3576255231,FR +3576255232,3576255239,GB +3576255240,3576255375,FR 3576255376,3576255383,GB 3576255384,3576255407,FR 3576255408,3576255423,GB @@ -167704,9 +157874,7 @@ 3579485715,3579485727,GB 3579485728,3579485807,FR 3579485808,3579485823,GB -3579485824,3579485887,FR -3579485888,3579485888,GB -3579485889,3579485903,FR +3579485824,3579485903,FR 3579485904,3579485919,DE 3579485920,3579485983,FR 3579485984,3579485999,CH @@ -167859,7 +158027,8 @@ 3580220416,3580221439,LV 3580221440,3580221951,HR 3580221952,3580222207,EE -3580222208,3580222335,SE +3580222208,3580222271,SE +3580222272,3580222335,EE 3580222336,3580222719,HR 3580222720,3580222975,SE 3580222976,3580223487,HR @@ -167867,7 +158036,7 @@ 3580231680,3580231935,LT 3580231936,3580232447,LV 3580232448,3580233727,LT -3580233728,3580234751,NO +3580233728,3580234751,SE 3580234752,3580236799,LT 3580236800,3580237567,LV 3580237568,3580237823,LT @@ -168053,10 +158222,10 @@ 3582107648,3582115839,NL 3582115840,3582116095,SE 3582116096,3582116351,EE -3582116352,3582116863,NO +3582116352,3582116863,SE 3582116864,3582117887,EE 3582117888,3582120447,LT -3582120448,3582120959,NO +3582120448,3582120959,SE 3582120960,3582121983,EE 3582121984,3582124031,LT 3582124032,3582132223,FI @@ -168105,13 +158274,9 @@ 3582287872,3582296063,DE 3582296064,3582304255,GB 3582304256,3582312447,UA -3582312448,3582313249,JE -3582313250,3582313250,GB -3582313251,3582313256,JE -3582313257,3582313260,GB -3582313261,3582313271,JE -3582313272,3582313342,GB -3582313343,3582313343,JE +3582312448,3582313271,JE +3582313272,3582313335,GB +3582313336,3582313343,JE 3582313344,3582313470,GB 3582313471,3582313471,JE 3582313472,3582313559,GB @@ -168265,7 +158430,9 @@ 3582533120,3582533631,GB 3582533632,3582534143,BG 3582534144,3582534399,RO -3582534400,3582538183,BG +3582534400,3582535423,BG +3582535424,3582535679,RO +3582535680,3582538183,BG 3582538184,3582538191,GB 3582538192,3582541311,BG 3582541312,3582541567,RO @@ -168351,7 +158518,9 @@ 3582570752,3582571263,FR 3582571264,3582571303,EU 3582571304,3582571307,CH -3582571308,3582571375,EU +3582571308,3582571311,EU +3582571312,3582571327,FR +3582571328,3582571375,EU 3582571376,3582571391,FR 3582571392,3582571407,EU 3582571408,3582571423,FR @@ -168566,7 +158735,8 @@ 3583508480,3583516671,FR 3583516672,3583524863,GB 3583524864,3583533055,EG -3583533056,3583541247,DE +3583533056,3583537151,DE +3583537152,3583541247,CZ 3583541248,3583549439,RU 3583549440,3583557631,NL 3583557632,3583558239,IT @@ -168757,8 +158927,7 @@ 3583741184,3583741439,EU 3583741440,3583741695,GB 3583741696,3583741951,NL -3583741952,3583742719,EU -3583742720,3583743487,DE +3583741952,3583743487,EU 3583743488,3583743503,FR 3583743504,3583743519,EU 3583743520,3583743551,FR @@ -168800,8 +158969,7 @@ 3583745088,3583745183,EU 3583745184,3583745279,SE 3583745280,3583745535,GB -3583745536,3583745663,SE -3583745664,3583745719,EU +3583745536,3583745719,EU 3583745720,3583745723,FR 3583745724,3583745799,EU 3583745800,3583745807,NL @@ -169180,7 +159348,11 @@ 3585543304,3585544903,DE 3585544904,3585544911,CH 3585544912,3585544927,TR -3585544928,3585548287,DE +3585544928,3585545583,DE +3585545584,3585545599,TR +3585545600,3585546815,DE +3585546816,3585546847,TR +3585546848,3585548287,DE 3585548288,3585556479,RU 3585556480,3585564671,DE 3585564672,3585572863,RU @@ -169631,9 +159803,7 @@ 3586928176,3586928303,FI 3586928304,3586928319,AX 3586928320,3586928639,FI -3586928640,3586929663,AX -3586929664,3586930687,FI -3586930688,3586932735,AX +3586928640,3586932735,AX 3586932736,3586949119,LB 3586949120,3586965503,SE 3586965504,3586981887,NL @@ -169785,8 +159955,8 @@ 3587239440,3587239447,BE 3587239448,3587239487,NL 3587239488,3587239503,GB -3587239504,3587240231,NL -3587240232,3587240255,GB +3587239504,3587240239,NL +3587240240,3587240255,GB 3587240256,3587240271,NL 3587240272,3587240279,GB 3587240280,3587240359,NL @@ -169963,8 +160133,8 @@ 3587444901,3587444916,FI 3587444917,3587445759,SE 3587445760,3587446015,FI -3587446016,3587446103,SE -3587446104,3587446271,FI +3587446016,3587446095,SE +3587446096,3587446271,FI 3587446272,3587457023,SE 3587457024,3587473407,GB 3587473408,3587489791,IT @@ -170125,9 +160295,7 @@ 3589029888,3589029951,GB 3589029952,3589030015,NL 3589030016,3589030111,GB -3589030112,3589030127,NL -3589030128,3589030143,GB -3589030144,3589030183,NL +3589030112,3589030183,NL 3589030184,3589030191,GB 3589030192,3589030207,NL 3589030208,3589030239,GB @@ -170271,8 +160439,8 @@ 3589436928,3589437183,PL 3589437184,3589437311,FR 3589437312,3589437439,GB -3589437440,3589437695,FR -3589437696,3589439487,GB +3589437440,3589437951,FR +3589437952,3589439487,GB 3589439488,3589444631,SE 3589444632,3589444639,NO 3589444640,3589455871,SE @@ -170604,8 +160772,8 @@ 3590157344,3590157351,SI 3590157352,3590157359,RS 3590157360,3590157439,SI -3590157440,3590157471,RS -3590157472,3590157487,SI +3590157440,3590157479,RS +3590157480,3590157487,SI 3590157488,3590157567,RS 3590157568,3590157631,SI 3590157632,3590157727,RS @@ -171660,9 +161828,7 @@ 3626381457,3626381460,CA 3626381461,3626381492,US 3626381493,3626381496,CO -3626381497,3626381510,US -3626381511,3626381512,BE -3626381513,3626381520,US +3626381497,3626381520,US 3626381521,3626381524,IN 3626381525,3626381541,US 3626381542,3626381545,CL @@ -171682,9 +161848,7 @@ 3626381658,3626381661,BE 3626381662,3626381675,US 3626381676,3626381679,GB -3626381680,3626381748,US -3626381749,3626381750,CA -3626381751,3626381752,US +3626381680,3626381752,US 3626381753,3626381755,GB 3626381756,3626381759,US 3626381760,3626381763,SA @@ -171753,9 +161917,7 @@ 3626382772,3626382775,IN 3626382776,3626382791,US 3626382792,3626382795,PT -3626382796,3626382843,US -3626382844,3626382845,IN -3626382846,3626382862,US +3626382796,3626382862,US 3626382863,3626382866,RU 3626382867,3626382870,IT 3626382871,3626382878,US @@ -171839,9 +162001,7 @@ 3626385142,3626385145,IN 3626385146,3626385187,US 3626385188,3626385191,CA -3626385192,3626385207,US -3626385208,3626385209,NZ -3626385210,3626385217,US +3626385192,3626385217,US 3626385218,3626385221,CA 3626385222,3626385237,US 3626385238,3626385241,BE @@ -173190,8 +163350,7 @@ 3633881088,3633885183,CW 3633885184,3633889279,US 3633889280,3633893375,CA -3633893376,3633897471,US -3633901568,3633915647,US +3633893376,3633915647,US 3633915648,3633915903,IT 3633915904,3633922303,US 3633922304,3633922367,TN @@ -173265,7 +163424,13 @@ 3635159040,3635163135,CA 3635163136,3635171071,US 3635171072,3635171327,CA -3635171328,3635314687,US +3635171328,3635185407,US +3635185408,3635185663,US +3635185664,3635186175,US +3635186176,3635186431,US +3635186432,3635187199,US +3635187200,3635187455,US +3635187456,3635314687,US 3635314688,3635322879,CA 3635322880,3635425279,US 3635425280,3635429375,CA @@ -173367,9 +163532,7 @@ 3636151480,3636151488,CA 3636151489,3636151535,US 3636151536,3636151551,CA -3636151552,3636151561,US -3636151562,3636151563,CA -3636151564,3636151583,US +3636151552,3636151583,US 3636151584,3636151759,CA 3636151760,3636151775,US 3636151776,3636152303,CA @@ -174362,7 +164525,9 @@ 3641356352,3641356415,NG 3641356416,3641356535,A2 3641356536,3641356543,CM -3641356544,3641357855,A2 +3641356544,3641357823,A2 +3641357824,3641357831,FR +3641357832,3641357855,A2 3641357856,3641357879,GB 3641357880,3641357887,A2 3641357888,3641357927,GB @@ -174832,11 +164997,7 @@ 3642552848,3642553087,UA 3642553088,3642553101,LV 3642553102,3642553107,UA -3642553108,3642553161,LV -3642553162,3642553163,UA -3642553164,3642553165,LV -3642553166,3642553167,UA -3642553168,3642553175,LV +3642553108,3642553175,LV 3642553176,3642553183,UA 3642553184,3642553223,LV 3642553224,3642553247,UA @@ -174875,8 +165036,8 @@ 3642553984,3642554111,UA 3642554112,3642554121,RU 3642554122,3642554127,UA -3642554128,3642554159,RU -3642554160,3642554191,UA +3642554128,3642554163,RU +3642554164,3642554191,UA 3642554192,3642554193,RU 3642554194,3642554195,UA 3642554196,3642554199,RU @@ -174895,8 +165056,8 @@ 3642554432,3642554559,UA 3642554560,3642554575,LT 3642554576,3642554623,UA -3642554624,3642554671,LV -3642554672,3642554679,UA +3642554624,3642554661,LV +3642554662,3642554679,UA 3642554680,3642554735,LV 3642554736,3642554783,UA 3642554784,3642554787,LV @@ -175202,7 +165363,9 @@ 3645281792,3645281919,HU 3645281920,3645284351,IT 3645284352,3645288447,DE -3645288448,3645292543,FR +3645288448,3645291007,FR +3645291008,3645291263,LU +3645291264,3645292543,FR 3645292544,3645295103,DE 3645295104,3645295359,NL 3645295360,3645296639,DE @@ -175383,731 +165546,7 @@ 3645751296,3645755391,FI 3645755392,3645759487,UA 3645759488,3645763583,FR -3645763584,3645763585,DE -3645763586,3645763587,IT -3645763588,3645763588,DE -3645763589,3645763589,IE -3645763590,3645763590,ES -3645763591,3645763591,BE -3645763592,3645763593,DE -3645763594,3645763594,CH -3645763595,3645763595,IT -3645763596,3645763597,DE -3645763598,3645763598,NL -3645763599,3645763600,DE -3645763601,3645763601,GR -3645763602,3645763603,FR -3645763604,3645763609,DE -3645763610,3645763610,PL -3645763611,3645763612,DE -3645763613,3645763613,HU -3645763614,3645763614,CH -3645763615,3645763615,ES -3645763616,3645763616,FR -3645763617,3645763617,DE -3645763618,3645763618,ES -3645763619,3645763619,DE -3645763620,3645763620,FR -3645763621,3645763621,CH -3645763622,3645763622,GB -3645763623,3645763623,FR -3645763624,3645763624,DE -3645763625,3645763625,FR -3645763626,3645763626,NL -3645763627,3645763627,AT -3645763628,3645763629,DE -3645763630,3645763631,NL -3645763632,3645763633,GB -3645763634,3645763634,NL -3645763635,3645763635,DE -3645763636,3645763636,AT -3645763637,3645763637,FR -3645763638,3645763638,NL -3645763639,3645763639,DE -3645763640,3645763640,HU -3645763641,3645763641,IT -3645763642,3645763642,GB -3645763643,3645763645,DE -3645763646,3645763647,ES -3645763648,3645763648,DE -3645763649,3645763649,IL -3645763650,3645763650,DE -3645763651,3645763651,NL -3645763652,3645763653,DE -3645763654,3645763654,ES -3645763655,3645763660,DE -3645763661,3645763662,FR -3645763663,3645763663,HU -3645763664,3645763665,DE -3645763666,3645763666,NL -3645763667,3645763670,DE -3645763671,3645763671,FR -3645763672,3645763672,DE -3645763673,3645763673,BE -3645763674,3645763676,DE -3645763677,3645763678,HU -3645763679,3645763679,IT -3645763680,3645763680,DE -3645763681,3645763681,CH -3645763682,3645763682,DE -3645763683,3645763683,NO -3645763684,3645763684,CH -3645763685,3645763685,NL -3645763686,3645763686,DE -3645763687,3645763687,ES -3645763688,3645763690,NL -3645763691,3645763691,CH -3645763692,3645763692,DE -3645763693,3645763693,NL -3645763694,3645763696,DE -3645763697,3645763697,NL -3645763698,3645763698,DE -3645763699,3645763699,BE -3645763700,3645763700,NL -3645763701,3645763701,DE -3645763702,3645763702,IT -3645763703,3645763703,CH -3645763704,3645763705,DE -3645763706,3645763706,GB -3645763707,3645763707,NL -3645763708,3645763708,GR -3645763709,3645763709,NL -3645763710,3645763710,GB -3645763711,3645763713,NL -3645763714,3645763714,DE -3645763715,3645763715,NL -3645763716,3645763716,DE -3645763717,3645763717,NL -3645763718,3645763719,DE -3645763720,3645763720,IT -3645763721,3645763721,DE -3645763722,3645763722,GR -3645763723,3645763723,NL -3645763724,3645763726,IT -3645763727,3645763727,NL -3645763728,3645763728,GR -3645763729,3645763730,IT -3645763731,3645763732,DE -3645763733,3645763733,FR -3645763734,3645763734,DE -3645763735,3645763735,GB -3645763736,3645763736,FR -3645763737,3645763737,DE -3645763738,3645763738,CH -3645763739,3645763741,ES -3645763742,3645763742,DE -3645763743,3645763743,IT -3645763744,3645763744,DE -3645763745,3645763745,FR -3645763746,3645763746,DE -3645763747,3645763752,NL -3645763753,3645763753,ES -3645763754,3645763755,NL -3645763756,3645763756,DE -3645763757,3645763757,BE -3645763758,3645763758,FR -3645763759,3645763760,NL -3645763761,3645763761,SE -3645763762,3645763762,ES -3645763763,3645763764,NL -3645763765,3645763765,DE -3645763766,3645763766,IL -3645763767,3645763768,NL -3645763769,3645763769,FR -3645763770,3645763770,NL -3645763771,3645763771,GB -3645763772,3645763772,CH -3645763773,3645763773,DE -3645763774,3645763774,NL -3645763775,3645763775,DE -3645763776,3645763776,NL -3645763777,3645763777,BE -3645763778,3645763781,DE -3645763782,3645763782,NL -3645763783,3645763783,DE -3645763784,3645763784,NL -3645763785,3645763785,DE -3645763786,3645763786,CH -3645763787,3645763787,NL -3645763788,3645763788,IE -3645763789,3645763789,AT -3645763790,3645763790,ES -3645763791,3645763791,IT -3645763792,3645763792,FR -3645763793,3645763793,ES -3645763794,3645763794,DE -3645763795,3645763795,IT -3645763796,3645763797,DE -3645763798,3645763798,FR -3645763799,3645763801,DE -3645763802,3645763802,ES -3645763803,3645763803,NL -3645763804,3645763806,DE -3645763807,3645763807,IT -3645763808,3645763808,DE -3645763809,3645763809,IT -3645763810,3645763810,NL -3645763811,3645763813,DE -3645763814,3645763814,IT -3645763815,3645763816,DE -3645763817,3645763817,GR -3645763818,3645763818,ES -3645763819,3645763825,DE -3645763826,3645763826,IT -3645763827,3645763827,ZA -3645763828,3645763841,DE -3645763842,3645763842,CH -3645763843,3645763845,DE -3645763846,3645763846,FR -3645763847,3645763847,IT -3645763848,3645763849,DE -3645763850,3645763850,IT -3645763851,3645763851,GB -3645763852,3645763852,DE -3645763853,3645763853,CH -3645763854,3645763854,NL -3645763855,3645763858,DE -3645763859,3645763859,DK -3645763860,3645763860,IT -3645763861,3645763861,DE -3645763862,3645763862,FR -3645763863,3645763864,ES -3645763865,3645763865,CH -3645763866,3645763866,DE -3645763867,3645763868,GB -3645763869,3645763869,DE -3645763870,3645763870,HU -3645763871,3645763874,DE -3645763875,3645763875,GB -3645763876,3645763876,PL -3645763877,3645763877,FR -3645763878,3645763879,DE -3645763880,3645763881,FR -3645763882,3645763882,DE -3645763883,3645763883,NL -3645763884,3645763884,IT -3645763885,3645763886,DE -3645763887,3645763887,FR -3645763888,3645763888,DE -3645763889,3645763889,GR -3645763890,3645763890,ES -3645763891,3645763894,DE -3645763895,3645763895,ES -3645763896,3645763896,DE -3645763897,3645763897,BE -3645763898,3645763898,NL -3645763899,3645763899,ES -3645763900,3645763900,NL -3645763901,3645763902,LU -3645763903,3645763903,DE -3645763904,3645763904,BE -3645763905,3645763905,RS -3645763906,3645763906,DE -3645763907,3645763908,IT -3645763909,3645763909,DE -3645763910,3645763910,ES -3645763911,3645763911,DE -3645763912,3645763912,IE -3645763913,3645763913,PT -3645763914,3645763914,DE -3645763915,3645763915,IL -3645763916,3645763916,BE -3645763917,3645763917,DE -3645763918,3645763918,IT -3645763919,3645763919,GB -3645763920,3645763920,DE -3645763921,3645763921,CH -3645763922,3645763922,ES -3645763923,3645763923,GB -3645763924,3645763924,PL -3645763925,3645763926,DE -3645763927,3645763927,HU -3645763928,3645763928,FR -3645763929,3645763929,NL -3645763930,3645763930,ES -3645763931,3645763931,FR -3645763932,3645763932,DE -3645763933,3645763933,FR -3645763934,3645763934,IT -3645763935,3645763935,FR -3645763936,3645763936,DE -3645763937,3645763937,FR -3645763938,3645763938,DE -3645763939,3645763939,NL -3645763940,3645763941,DE -3645763942,3645763942,CH -3645763943,3645763943,ES -3645763944,3645763944,CH -3645763945,3645763945,DE -3645763946,3645763947,HU -3645763948,3645763949,DE -3645763950,3645763950,ES -3645763951,3645763951,CH -3645763952,3645763952,IT -3645763953,3645763953,TR -3645763954,3645763954,IT -3645763955,3645763955,FR -3645763956,3645763956,DE -3645763957,3645763957,GB -3645763958,3645763958,AT -3645763959,3645763959,DE -3645763960,3645763960,IT -3645763961,3645763961,DE -3645763962,3645763962,ES -3645763963,3645763964,DE -3645763965,3645763965,AT -3645763966,3645763966,DE -3645763967,3645763967,IT -3645763968,3645763968,DE -3645763969,3645763969,ES -3645763970,3645763970,IT -3645763971,3645763971,ES -3645763972,3645763972,IT -3645763973,3645763973,BE -3645763974,3645763974,GB -3645763975,3645763975,AT -3645763976,3645763976,IT -3645763977,3645763977,DE -3645763978,3645763978,NL -3645763979,3645763979,IT -3645763980,3645763981,DE -3645763982,3645763982,IT -3645763983,3645763984,FR -3645763985,3645763985,NL -3645763986,3645763986,DE -3645763987,3645763987,PL -3645763988,3645763988,CH -3645763989,3645763989,FR -3645763990,3645763991,DE -3645763992,3645763992,NL -3645763993,3645763993,DE -3645763994,3645763994,IT -3645763995,3645763995,ES -3645763996,3645764000,DE -3645764001,3645764001,IT -3645764002,3645764007,DE -3645764008,3645764008,PL -3645764009,3645764010,FR -3645764011,3645764012,DE -3645764013,3645764013,HU -3645764014,3645764015,GB -3645764016,3645764016,IT -3645764017,3645764017,GB -3645764018,3645764018,DE -3645764019,3645764019,NL -3645764020,3645764020,IT -3645764021,3645764021,DE -3645764022,3645764022,ES -3645764023,3645764023,FR -3645764024,3645764026,ES -3645764027,3645764028,DE -3645764029,3645764029,ES -3645764030,3645764030,DE -3645764031,3645764031,NL -3645764032,3645764032,FR -3645764033,3645764034,DE -3645764035,3645764035,IT -3645764036,3645764037,ES -3645764038,3645764038,IT -3645764039,3645764039,HU -3645764040,3645764040,ES -3645764041,3645764041,DE -3645764042,3645764042,CH -3645764043,3645764043,DE -3645764044,3645764044,ES -3645764045,3645764045,AE -3645764046,3645764046,ES -3645764047,3645764048,DE -3645764049,3645764049,ES -3645764050,3645764051,DE -3645764052,3645764052,FR -3645764053,3645764055,DE -3645764056,3645764056,BE -3645764057,3645764057,DE -3645764058,3645764058,TR -3645764059,3645764059,DE -3645764060,3645764060,FR -3645764061,3645764061,IT -3645764062,3645764062,SE -3645764063,3645764063,AT -3645764064,3645764064,SI -3645764065,3645764065,DE -3645764066,3645764066,IT -3645764067,3645764067,DE -3645764068,3645764068,IT -3645764069,3645764069,CH -3645764070,3645764070,GB -3645764071,3645764074,DE -3645764075,3645764075,SE -3645764076,3645764076,GR -3645764077,3645764078,DE -3645764079,3645764079,ES -3645764080,3645764080,DE -3645764081,3645764081,GB -3645764082,3645764084,DE -3645764085,3645764085,IE -3645764086,3645764086,IT -3645764087,3645764087,CH -3645764088,3645764091,DE -3645764092,3645764092,FR -3645764093,3645764097,DE -3645764098,3645764098,IT -3645764099,3645764099,DE -3645764100,3645764100,BE -3645764101,3645764102,DE -3645764103,3645764103,SK -3645764104,3645764105,IT -3645764106,3645764106,NL -3645764107,3645764107,GR -3645764108,3645764108,PL -3645764109,3645764109,CH -3645764110,3645764110,DK -3645764111,3645764111,DE -3645764112,3645764112,IT -3645764113,3645764113,ES -3645764114,3645764114,DE -3645764115,3645764115,GB -3645764116,3645764116,GR -3645764117,3645764117,DE -3645764118,3645764118,GB -3645764119,3645764119,CH -3645764120,3645764120,FR -3645764121,3645764121,IT -3645764122,3645764122,DE -3645764123,3645764123,PL -3645764124,3645764124,DE -3645764125,3645764125,NO -3645764126,3645764126,LU -3645764127,3645764127,GB -3645764128,3645764128,GR -3645764129,3645764129,HR -3645764130,3645764130,FR -3645764131,3645764131,DE -3645764132,3645764132,ES -3645764133,3645764133,CY -3645764134,3645764134,DE -3645764135,3645764135,IT -3645764136,3645764136,BE -3645764137,3645764137,DE -3645764138,3645764138,CH -3645764139,3645764140,DE -3645764141,3645764141,ES -3645764142,3645764142,HU -3645764143,3645764145,DE -3645764146,3645764147,NL -3645764148,3645764148,DK -3645764149,3645764149,DE -3645764150,3645764150,ES -3645764151,3645764154,DE -3645764155,3645764155,ES -3645764156,3645764156,AT -3645764157,3645764158,DE -3645764159,3645764159,IT -3645764160,3645764160,BE -3645764161,3645764161,ES -3645764162,3645764162,DE -3645764163,3645764163,NL -3645764164,3645764164,DE -3645764165,3645764165,CH -3645764166,3645764166,HU -3645764167,3645764167,DE -3645764168,3645764168,ES -3645764169,3645764169,GR -3645764170,3645764170,IT -3645764171,3645764172,DE -3645764173,3645764173,IT -3645764174,3645764174,DE -3645764175,3645764175,PL -3645764176,3645764176,DE -3645764177,3645764177,GB -3645764178,3645764178,ES -3645764179,3645764179,GR -3645764180,3645764181,DE -3645764182,3645764182,FR -3645764183,3645764184,DE -3645764185,3645764185,IT -3645764186,3645764186,FR -3645764187,3645764187,BE -3645764188,3645764188,GB -3645764189,3645764189,FR -3645764190,3645764190,IT -3645764191,3645764191,GB -3645764192,3645764193,DE -3645764194,3645764194,ES -3645764195,3645764195,DE -3645764196,3645764196,IT -3645764197,3645764197,DE -3645764198,3645764198,GR -3645764199,3645764199,DE -3645764200,3645764200,IT -3645764201,3645764201,BE -3645764202,3645764202,IT -3645764203,3645764203,DE -3645764204,3645764204,ES -3645764205,3645764205,FR -3645764206,3645764206,DE -3645764207,3645764207,IT -3645764208,3645764208,NO -3645764209,3645764210,DE -3645764211,3645764211,FR -3645764212,3645764212,NL -3645764213,3645764213,GB -3645764214,3645764214,NL -3645764215,3645764216,DE -3645764217,3645764217,IT -3645764218,3645764218,CH -3645764219,3645764219,FR -3645764220,3645764220,NL -3645764221,3645764221,IT -3645764222,3645764222,BE -3645764223,3645764223,DE -3645764224,3645764224,ES -3645764225,3645764225,GB -3645764226,3645764226,DE -3645764227,3645764227,CH -3645764228,3645764228,FR -3645764229,3645764229,PL -3645764230,3645764230,NL -3645764231,3645764231,CH -3645764232,3645764234,DE -3645764235,3645764235,FR -3645764236,3645764236,IT -3645764237,3645764238,DE -3645764239,3645764240,ES -3645764241,3645764241,DE -3645764242,3645764242,AT -3645764243,3645764243,GR -3645764244,3645764244,FR -3645764245,3645764246,NL -3645764247,3645764247,IT -3645764248,3645764250,DE -3645764251,3645764251,FR -3645764252,3645764253,ES -3645764254,3645764254,DE -3645764255,3645764255,CH -3645764256,3645764257,DE -3645764258,3645764258,NL -3645764259,3645764259,IT -3645764260,3645764260,DE -3645764261,3645764261,GB -3645764262,3645764262,BE -3645764263,3645764264,IT -3645764265,3645764265,TR -3645764266,3645764269,DE -3645764270,3645764270,ES -3645764271,3645764271,IT -3645764272,3645764272,DE -3645764273,3645764273,IT -3645764274,3645764274,DE -3645764275,3645764275,FR -3645764276,3645764277,DE -3645764278,3645764278,NL -3645764279,3645764279,ES -3645764280,3645764280,IT -3645764281,3645764281,DE -3645764282,3645764282,NL -3645764283,3645764284,FR -3645764285,3645764285,IT -3645764286,3645764286,NL -3645764287,3645764287,BE -3645764288,3645764288,FR -3645764289,3645764289,NL -3645764290,3645764290,DE -3645764291,3645764291,NL -3645764292,3645764292,FR -3645764293,3645764294,IT -3645764295,3645764295,ES -3645764296,3645764297,DE -3645764298,3645764298,GR -3645764299,3645764299,NL -3645764300,3645764300,PL -3645764301,3645764301,GR -3645764302,3645764302,IT -3645764303,3645764303,DE -3645764304,3645764304,ES -3645764305,3645764305,GB -3645764306,3645764306,BM -3645764307,3645764307,NL -3645764308,3645764309,DE -3645764310,3645764310,ZA -3645764311,3645764313,ES -3645764314,3645764315,DE -3645764316,3645764316,IT -3645764317,3645764317,ES -3645764318,3645764318,HU -3645764319,3645764319,FR -3645764320,3645764320,IT -3645764321,3645764321,DE -3645764322,3645764322,CH -3645764323,3645764323,DE -3645764324,3645764324,FR -3645764325,3645764325,DE -3645764326,3645764326,ES -3645764327,3645764327,DK -3645764328,3645764328,CH -3645764329,3645764329,ES -3645764330,3645764330,DE -3645764331,3645764331,RU -3645764332,3645764332,NL -3645764333,3645764333,GR -3645764334,3645764334,ES -3645764335,3645764335,DE -3645764336,3645764336,MY -3645764337,3645764337,HU -3645764338,3645764338,NL -3645764339,3645764340,DE -3645764341,3645764341,IE -3645764342,3645764342,IT -3645764343,3645764343,ES -3645764344,3645764345,DE -3645764346,3645764346,IT -3645764347,3645764347,IE -3645764348,3645764348,NL -3645764349,3645764349,BE -3645764350,3645764350,IT -3645764351,3645764356,DE -3645764357,3645764357,RU -3645764358,3645764358,FR -3645764359,3645764359,IT -3645764360,3645764360,DE -3645764361,3645764361,CH -3645764362,3645764362,GB -3645764363,3645764364,NL -3645764365,3645764365,BE -3645764366,3645764367,DE -3645764368,3645764368,IT -3645764369,3645764369,DE -3645764370,3645764370,GB -3645764371,3645764371,ES -3645764372,3645764373,FR -3645764374,3645764375,DE -3645764376,3645764377,NL -3645764378,3645764378,DE -3645764379,3645764380,GB -3645764381,3645764381,DE -3645764382,3645764382,NL -3645764383,3645764383,FR -3645764384,3645764384,AT -3645764385,3645764388,DE -3645764389,3645764389,NL -3645764390,3645764390,DE -3645764391,3645764391,NL -3645764392,3645764392,GR -3645764393,3645764393,DE -3645764394,3645764394,FR -3645764395,3645764396,NL -3645764397,3645764397,DE -3645764398,3645764398,NL -3645764399,3645764399,DE -3645764400,3645764401,NL -3645764402,3645764403,FR -3645764404,3645764406,NL -3645764407,3645764408,DE -3645764409,3645764409,FR -3645764410,3645764410,DE -3645764411,3645764411,FR -3645764412,3645764412,NL -3645764413,3645764413,FR -3645764414,3645764414,NL -3645764415,3645764415,DE -3645764416,3645764417,NL -3645764418,3645764418,DE -3645764419,3645764419,NL -3645764420,3645764420,GB -3645764421,3645764421,DE -3645764422,3645764422,IT -3645764423,3645764423,HU -3645764424,3645764424,DE -3645764425,3645764425,GB -3645764426,3645764433,DE -3645764434,3645764434,NL -3645764435,3645764435,AT -3645764436,3645764436,NL -3645764437,3645764437,FR -3645764438,3645764439,DE -3645764440,3645764440,CH -3645764441,3645764441,DE -3645764442,3645764442,IT -3645764443,3645764445,DE -3645764446,3645764446,NL -3645764447,3645764456,DE -3645764457,3645764457,IT -3645764458,3645764458,AT -3645764459,3645764459,IT -3645764460,3645764462,DE -3645764463,3645764463,NL -3645764464,3645764464,BE -3645764465,3645764465,DE -3645764466,3645764466,GR -3645764467,3645764467,DE -3645764468,3645764468,IT -3645764469,3645764470,DE -3645764471,3645764471,IT -3645764472,3645764472,GR -3645764473,3645764473,NL -3645764474,3645764474,DE -3645764475,3645764475,GR -3645764476,3645764476,DE -3645764477,3645764477,NL -3645764478,3645764478,GB -3645764479,3645764479,DE -3645764480,3645764481,NL -3645764482,3645764482,DE -3645764483,3645764483,NL -3645764484,3645764484,FR -3645764485,3645764485,NL -3645764486,3645764486,IE -3645764487,3645764487,DE -3645764488,3645764490,NL -3645764491,3645764491,DE -3645764492,3645764492,NL -3645764493,3645764493,ES -3645764494,3645764494,FR -3645764495,3645764495,NL -3645764496,3645764496,DE -3645764497,3645764497,NL -3645764498,3645764498,FR -3645764499,3645764500,NL -3645764501,3645764501,DE -3645764502,3645764505,NL -3645764506,3645764506,DE -3645764507,3645764507,ES -3645764508,3645764508,IT -3645764509,3645764509,NL -3645764510,3645764510,DE -3645764511,3645764511,NL -3645764512,3645764512,DE -3645764513,3645764513,NL -3645764514,3645764514,ES -3645764515,3645764515,DE -3645764516,3645764516,NL -3645764517,3645764518,DE -3645764519,3645764522,NL -3645764523,3645764524,DE -3645764525,3645764531,NL -3645764532,3645764533,DE -3645764534,3645764535,NL -3645764536,3645764536,IT -3645764537,3645764539,NL -3645764540,3645764540,DE -3645764541,3645764541,IT -3645764542,3645764549,NL -3645764550,3645764550,DE -3645764551,3645764551,GR -3645764552,3645764553,DE -3645764554,3645764554,NL -3645764555,3645764555,DE -3645764556,3645764556,CH -3645764557,3645764557,NL -3645764558,3645764561,DE -3645764562,3645764562,FR -3645764563,3645764563,ES -3645764564,3645764565,NL -3645764566,3645764566,DE -3645764567,3645764568,NL -3645764569,3645764569,DE -3645764570,3645764570,MA -3645764571,3645765127,DE +3645763584,3645765127,DE 3645765128,3645765131,GR 3645765132,3645765135,DE 3645765136,3645765139,BE @@ -176227,35 +165666,7 @@ 3645765708,3645765711,FR 3645765712,3645765715,DE 3645765716,3645765719,FR -3645765720,3645766401,DE -3645766402,3645766407,US -3645766408,3645767187,DE -3645767188,3645767188,US -3645767189,3645767193,DE -3645767194,3645767194,US -3645767195,3645767195,DE -3645767196,3645767196,US -3645767197,3645767197,DE -3645767198,3645767198,US -3645767199,3645767208,DE -3645767209,3645767209,US -3645767210,3645767222,DE -3645767223,3645767223,US -3645767224,3645767240,DE -3645767241,3645767241,US -3645767242,3645767426,DE -3645767427,3645767427,US -3645767428,3645767428,DE -3645767429,3645767429,US -3645767430,3645767431,DE -3645767432,3645767433,US -3645767434,3645767434,CA -3645767435,3645767448,US -3645767449,3645767449,DE -3645767450,3645767455,US -3645767456,3645767502,DE -3645767503,3645767503,US -3645767504,3645767679,DE +3645765720,3645767679,DE 3645767680,3645771775,IE 3645771776,3645779967,SE 3645779968,3645784063,PS @@ -176295,8 +165706,8 @@ 3645888192,3645888511,DE 3645888512,3645888767,EU 3645888768,3645889791,DE -3645889792,3645889919,US -3645889920,3645890559,DE +3645889792,3645890047,US +3645890048,3645890559,DE 3645890560,3645894655,RU 3645894656,3645898751,NL 3645898752,3646513103,DE @@ -176356,7 +165767,9 @@ 3647964704,3647965183,DE 3647965184,3647965695,ES 3647965696,3647966207,CH -3647966208,3647967231,GB +3647966208,3647966231,GB +3647966232,3647966239,CH +3647966240,3647967231,GB 3647967232,3647968255,BE 3647968256,3647969279,FR 3647969280,3647969791,IT @@ -176381,7 +165794,9 @@ 3647974048,3647974055,DE 3647974056,3647974063,IT 3647974064,3647974071,DE -3647974072,3647974399,IT +3647974072,3647974111,IT +3647974112,3647974143,DE +3647974144,3647974399,IT 3647974400,3647976447,ES 3647976448,3647976719,BE 3647976720,3647976727,DE @@ -176768,8 +166183,10 @@ 3649845248,3649845759,GB 3649845760,3649847039,NL 3649847040,3649847295,GB -3649847296,3649847942,NL -3649847943,3649847943,AT +3649847296,3649847827,NL +3649847828,3649847897,LU +3649847898,3649847942,NL +3649847943,3649847943,DE 3649847944,3649848319,NL 3649848320,3649855487,DE 3649855488,3649856511,GB @@ -177170,11 +166587,9 @@ 3651232448,3651232511,GB 3651232512,3651233791,EU 3651233792,3651233855,GB -3651233856,3651236863,EU -3651236864,3651237631,SC -3651237632,3651237887,EU -3651237888,3651238399,SC -3651238400,3651239935,EU +3651233856,3651237375,EU +3651237376,3651237631,SC +3651237632,3651239935,EU 3651239936,3651272703,GB 3651272704,3651338239,CH 3651338240,3651350783,GB @@ -177334,91 +166749,7 @@ 3651959040,3651960831,AE 3651960832,3651964927,GB 3651964928,3651969023,SK -3651969024,3651971661,DE -3651971662,3651971662,US -3651971663,3651971663,DE -3651971664,3651971666,US -3651971667,3651971667,DE -3651971668,3651971670,CA -3651971671,3651971673,BR -3651971674,3651971674,DE -3651971675,3651971675,GR -3651971676,3651971676,DE -3651971677,3651971679,UA -3651971680,3651971681,DE -3651971682,3651971682,EG -3651971683,3651971684,DE -3651971685,3651971686,GR -3651971687,3651971687,DE -3651971688,3651971688,GR -3651971689,3651971787,DE -3651971788,3651971788,BR -3651971789,3651971798,DE -3651971799,3651971799,IL -3651971800,3651971800,GR -3651971801,3651971801,US -3651971802,3651971806,DE -3651971807,3651971807,UA -3651971808,3651971812,DE -3651971813,3651971814,TR -3651971815,3651971815,FI -3651971816,3651971817,DE -3651971818,3651971818,TR -3651971819,3651971819,DE -3651971820,3651971821,US -3651971822,3651971824,TW -3651971825,3651971825,SA -3651971826,3651971826,BD -3651971827,3651971828,DE -3651971829,3651971829,UA -3651971830,3651971830,GT -3651971831,3651971831,US -3651971832,3651975433,DE -3651975434,3651975434,TR -3651975435,3651975437,DE -3651975438,3651975438,TR -3651975439,3651975440,DE -3651975441,3651975441,TR -3651975442,3651975442,AT -3651975443,3651975446,DE -3651975447,3651975449,US -3651975450,3651975453,DE -3651975454,3651975454,US -3651975455,3651975459,DE -3651975460,3651975470,US -3651975471,3651975471,DE -3651975472,3651975473,US -3651975474,3651975475,DE -3651975476,3651975482,US -3651975483,3651975483,DE -3651975484,3651975486,US -3651975487,3651975560,DE -3651975561,3651975561,US -3651975562,3651975562,DE -3651975563,3651975563,US -3651975564,3651975567,DE -3651975568,3651975568,CN -3651975569,3651975638,DE -3651975639,3651975639,CN -3651975640,3651975640,DE -3651975641,3651975650,CN -3651975651,3651975653,DE -3651975654,3651975654,CN -3651975655,3651975655,DE -3651975656,3651975656,CN -3651975657,3651975658,DE -3651975659,3651975661,CN -3651975662,3651975662,DE -3651975663,3651975664,CN -3651975665,3651975667,IN -3651975668,3651975668,DE -3651975669,3651975670,IN -3651975671,3651975671,DE -3651975672,3651975673,IN -3651975674,3651975676,DE -3651975677,3651975677,IN -3651975678,3651975678,US -3651975679,3651977215,DE +3651969024,3651977215,DE 3651977216,3651985407,IT 3651985408,3651997695,PL 3651997696,3652001791,RU @@ -177437,8 +166768,8 @@ 3652019584,3652019599,IE 3652019600,3652019615,GB 3652019616,3652019679,IE -3652019680,3652019687,GB -3652019688,3652019735,IE +3652019680,3652019695,GB +3652019696,3652019735,IE 3652019736,3652019739,GB 3652019740,3652019751,IE 3652019752,3652019759,GB @@ -177562,9 +166893,7 @@ 3653039360,3653039999,DE 3653040000,3653040015,LU 3653040016,3653238783,DE -3653238784,3653334141,CH -3653334142,3653334142,AT -3653334143,3653369855,CH +3653238784,3653369855,CH 3653369856,3653373951,IT 3653373952,3653378047,NL 3653378048,3653382143,DE @@ -177742,7 +167071,9 @@ 3653474368,3653476351,NL 3653476352,3653480447,CZ 3653480448,3653484543,DK -3653484544,3653488639,TR +3653484544,3653487103,TR +3653487104,3653487359,AT +3653487360,3653488639,TR 3653488640,3653492735,RU 3653492736,3653500927,NL 3653500928,3653505023,GB