Skip to content

Instantly share code, notes, and snippets.

@tonusoo
Last active July 26, 2026 15:01
Show Gist options
  • Select an option

  • Save tonusoo/ec89bb4922e7a70ba9c4a90ca29f5578 to your computer and use it in GitHub Desktop.

Select an option

Save tonusoo/ec89bb4922e7a70ba9c4a90ca29f5578 to your computer and use it in GitHub Desktop.
RPKI ASPA objects for AS numbers associated with a country || discussion on CERT-EE channel
#!/usr/bin/env python3
"""RPKI ASPA objects for ASes associated with a country.
Script finds all the v4 and v6 address ranges geolocated to a user-
specified country. For each address range possible exact and more-
specific prefixes from DFZ are found. If the exact prefix was not
found and more-specifics do not fully cover the geolocated address
range, then also less-specific prefixes are checked. Finally, all
the unique origin ASNs for the found prefixes are checked against
the RPKI ASPA dataset and ASNs are categorized into two groups:
ones with an ASPA object and ones without it.
"""
import sys
import time
import json
import logging
import datetime
import ipaddress
import requests
import maxminddb
import matplotlib.pyplot as plt
TARGET_COUNTRY = "EE"
MAXMIND_DB_PATH = "GeoLite2-Country.mmdb" # updated 2026-07-21
RPKI_JSON_PATH = "/var/lib/rpki-client/json"
GRAPH_FILE_PATH = "ee_aspa_objects.png"
logging.basicConfig(
level=logging.INFO,
# level=logging.DEBUG,
format="{asctime} - [{funcName}] - {levelname} - {message}",
style="{",
datefmt="%Y-%m-%d %H:%M:%S %z",
handlers=[logging.StreamHandler(sys.stderr)],
)
logging.getLogger("urllib3").setLevel(logging.WARNING)
def get_maxmind_networks(maxmind_db_path, target_country):
"""Extract networks matching the country code from MaxMind database."""
networks = []
with maxminddb.open_database(maxmind_db_path) as reader:
meta = reader.metadata()
build_date = datetime.datetime.fromtimestamp(
meta.build_epoch, tz=datetime.timezone.utc
).strftime("%Y-%m-%d %H:%M:%S UTC")
logging.info(
f'Scanning MaxMind database "{maxmind_db_path}" (Built: '
f"{build_date}) for {target_country} networks..."
)
for network, record in reader:
if (
record
and record.get("country", {}).get("iso_code") == target_country
):
logging.info(f"Found {network}")
networks.append(network)
logging.info(
f"Found {len(networks)} networks from MaxMind db "
f"for {target_country}"
)
return networks
def get_unique_bgp_routes(mm_networks):
"""Find prefixes in BGP related to geolocated address ranges."""
logging.info(
f"Finding prefixes in BGP related to {len(mm_networks)} "
"geolocated address ranges..."
)
session = requests.Session()
unique_bgp_routes = set()
for i, maxmind_net in enumerate(mm_networks, 1):
net_str = str(maxmind_net)
if i % 50 == 0:
logging.info(f"Processed {i}/{len(mm_networks)} prefixes...")
try:
# Occasionally the RIPEstat API throws an
# HTTP error 500(Internal Server Error). This
# does not seem to be related to how aggressively
# the API is queried. As a workaround, retry
# few times.
max_retries = 5
for attempt in range(max_retries + 1):
try:
resp = session.get(
"https://stat.ripe.net/data/routing-status/data.json?"
"&sourceapp=per-country-aspa-objects&resource="
f"{net_str}",
timeout=20,
)
resp.raise_for_status()
data = resp.json().get("data", {})
# Request succeeded. Break the retry loop.
break
except requests.exceptions.RequestException as err:
status = (
err.response.status_code
if err.response is not None
else None
)
if (
status is None or status >= 500
) and attempt < max_retries:
err_type = (
f"HTTP {status}"
if status
else "Connection/Timeout"
)
logging.warning(
f"RIPEstat API {err_type} error for "
f"{net_str}. Retrying..."
)
time.sleep(2)
else:
raise
origins = data.get("origins", [])
more_specifics = data.get("more_specifics", [])
less_specifics = data.get("less_specifics", [])
if not origins and not more_specifics and not less_specifics:
logging.info(f"MaxMind entry {net_str} has no prefixes in BGP")
continue
# Add all the prefixes in BGP which are equal to
# the network in MaxMind db.
# It's possible that a network in BGP originates
# from multiple ASNs.
for origin in origins:
try:
# RIPEstat Routing Status API returns AS numbers
# as ints, but double-check.
asn = int(origin.get("origin"))
logging.info(
f"MaxMind entry {net_str} has an exact match "
f"{net_str} (AS {asn}) in BGP"
)
unique_bgp_routes.add((net_str, asn))
except (ValueError, TypeError):
logging.warning(
"Skipping malformed exact-match origin "
f"for {net_str}: {origin}"
)
continue
# Add all the prefixes in BGP which are longer than
# the network in MaxMind db.
for more_specific in more_specifics:
prefix_str = more_specific.get("prefix")
try:
asn = int(more_specific.get("origin"))
if prefix_str:
logging.info(
f"MaxMind entry {net_str} has more specific "
f"match {prefix_str} (AS {asn}) in BGP"
)
unique_bgp_routes.add((prefix_str, asn))
except (ValueError, TypeError):
logging.warning(
"Skipping malformed more-specific origin "
f"for {net_str}: {more_specific}"
)
continue
is_fully_covered = False
if origins:
is_fully_covered = True
elif more_specifics:
# Check if the more-specific routes fully cover the
# network in MaxMind db.
# Convert BGP prefix strings into IP network objects.
ms_nets = [
ipaddress.ip_network(
more_specific.get("prefix"), strict=False
)
for more_specific in more_specifics
if more_specific.get("prefix")
]
# Aggregate more specific networks.
aggr = list(ipaddress.collapse_addresses(ms_nets))
# If the more-specific networks were aggregated into
# a single network and this matches with the network
# in the MaxMind db, then the more specifics fully
# cover the MaxMind net.
if len(aggr) == 1 and str(aggr[0]) == net_str:
is_fully_covered = True
logging.info(
f"MaxMind entry {net_str} is perfectly covered by its "
f"more-specific BGP routes. Ignoring possible "
"less-specifics."
)
# More-specific networks did not fully cover the network
# in MaxMind db. Find the most-specific network(s) in less-
# specifics.
if not is_fully_covered and less_specifics:
max_prefix_len = max(
int(less_specific.get("prefix").split("/")[-1])
for less_specific in less_specifics
if less_specific.get("prefix")
)
for less_specific in less_specifics:
if less_specific.get("prefix"):
current_len = int(
less_specific.get("prefix").split("/")[-1]
)
if current_len == max_prefix_len:
prefix_str = less_specific.get("prefix")
try:
asn = int(less_specific.get("origin"))
if prefix_str:
logging.info(
"Using best less-specific match "
f"{prefix_str} (AS {asn}) for "
f"MaxMind entry {net_str}"
)
unique_bgp_routes.add((prefix_str, asn))
except (ValueError, TypeError):
logging.warning(
"Skipping malformed less-specific origin "
f"for {net_str}: {less_specific}"
)
continue
except Exception as err:
logging.error(f"RIPEstat API error: {err!r}")
# Keep the load to RIPEstat API relatively low.
time.sleep(0.2)
logging.info(f"Found {len(unique_bgp_routes)} prefixes in BGP")
return unique_bgp_routes
def get_as_names(asns):
"""Fetch the descriptive name of the AS number holder."""
asn_names = {}
session = requests.Session()
logging.info(f"Fetching names for {len(asns)} unique ASNs...")
for asn in asns:
holder = None
try:
resp = session.get(
"https://stat.ripe.net/data/as-overview/data.json?"
f"resource=AS{asn}",
timeout=20,
)
resp.raise_for_status()
data = resp.json().get("data", {})
holder = data.get("holder")
# Occasionally the "AS Overview" API returns an empty name
# for the ASN. Fallback to whois database.
if not holder:
resp = session.get(
"https://stat.ripe.net/data/whois/data.json?"
f"resource=AS{asn}",
timeout=20,
)
resp.raise_for_status()
data = resp.json().get("data", {}).get("records", [])
for record in data:
for item in record:
if isinstance(item, dict):
key = item.get("key", "").lower()
# While for example RIPE and APNIC use
# "as-name" attribute, then the ARIN
# registry uses ASName.
if key in ("as-name", "asname"):
holder = item.get("value")
if not holder:
holder = "Unknown AS name"
except requests.exceptions.RequestException as err:
logging.warning(f"Failed to fetch AS name for AS{asn}: {err!r}")
holder = "Unknown AS name"
asn_names[asn] = holder
time.sleep(0.2)
return asn_names
def get_aspas(rpki_json_path):
"""Load ASPAs from rpki-client JSON output into a dictionary."""
logging.info(f'Loading RPKI ASPAs from "{rpki_json_path}"...')
aspa_dict = {}
with open(rpki_json_path, "r", encoding="utf-8") as f:
rpki_data = json.load(f)
for aspa in rpki_data.get("aspas", []):
try:
aspa_dict[aspa["customer_asid"]] = aspa["providers"]
except KeyError:
continue
logging.info(f"Loaded {len(aspa_dict)} validated ASPA payloads")
return aspa_dict
def generate_graph(stats, target_country, graph_file_path):
"""Plot the results to donut chart."""
labels = [
"ASPA object exists",
"ASPA object missing",
]
sizes = [
stats.get("aspa_obj_exists"),
stats.get("aspa_obj_missing"),
]
if sum(sizes) == 0:
logging.warning(
f"Skipping graph generation for {target_country}. "
"No ASPA objects were found."
)
return
total_asns = sum(sizes)
# Green, gray.
colors = ["#228B22", "#808080"]
filtered_sizes = [size for size in sizes if size > 0]
filtered_colors = [color for size, color in zip(sizes, colors) if size > 0]
filtered_labels = [label for size, label in zip(sizes, labels) if size > 0]
# Avoid overlapping labels. Do not show a label if
# a slice is very narrow, that is, 5% or below.
clean_labels = [
label if (size / total_asns * 100) > 5 else ""
for label, size in zip(filtered_labels, filtered_sizes)
]
def hide_small_percentages(pct):
return f"{pct:.0f}%" if pct > 5 else ""
fig, ax = plt.subplots(figsize=(6, 6))
ax.pie(
filtered_sizes,
labels=clean_labels,
colors=filtered_colors,
autopct=hide_small_percentages,
startangle=90,
counterclock=False,
pctdistance=0.8,
labeldistance=1.05,
wedgeprops={"width": 0.4, "edgecolor": "white"},
)
ax.text(
0,
0,
f"Total AS numbers analyzed:\n{total_asns}",
ha="center",
va="center",
fontsize=11,
fontweight="bold",
)
ax.axis("equal")
fig.suptitle(
"ASPA objects for AS numbers originating BGP prefixes "
f"covering {target_country} addr space",
fontsize=16,
y=1.0,
)
legend_labels = [
f'{label}: {size} {"ASN" if size == 1 else "ASNs"}'
for label, size in zip(filtered_labels, filtered_sizes)
]
ax.legend(legend_labels, loc="center left", bbox_to_anchor=(1.2, 0.5))
current_date = datetime.datetime.now().strftime("%d.%m.%Y")
fig.text(
0.5,
0.02,
f"Generated on {current_date}",
ha="center",
va="bottom",
fontsize=9,
color="gray",
alpha=0.5,
)
try:
plt.savefig(graph_file_path, bbox_inches="tight")
logging.info(f'Graph successfully saved to "{graph_file_path}"')
except OSError as err:
logging.error(f'Failed to save "{graph_file_path}": {err!r}')
def main():
"""Main function calling other functions."""
mm_networks = get_maxmind_networks(MAXMIND_DB_PATH, TARGET_COUNTRY)
unique_bgp_routes = get_unique_bgp_routes(mm_networks)
unique_asns = sorted({asn for _, asn in unique_bgp_routes})
asn_names_dict = get_as_names(unique_asns)
aspa_dict = get_aspas(RPKI_JSON_PATH)
logging.info(
f"Starting to compare {len(unique_asns)} AS numbers "
f"associated with {TARGET_COUNTRY} against RPKI ASPAs"
)
stats = {
"aspa_obj_exists": 0,
"aspa_obj_missing": 0,
}
for asn in unique_asns:
as_name = asn_names_dict.get(asn, "Unknown AS name")
if asn in aspa_dict:
stats["aspa_obj_exists"] += 1
logging.info(
f"AS {asn} ({as_name}) has an ASPA object "
"with following set of provider ASes: "
f'{", ".join(map(str, aspa_dict[asn]))}'
)
else:
stats["aspa_obj_missing"] += 1
logging.info(f"AS {asn} ({as_name}) does not have an ASPA object")
print(
"country",
"as_numbers_with_aspa_obj",
"as_numbers_without_aspa_obj",
sep=",",
)
print(
TARGET_COUNTRY,
stats.get("aspa_obj_exists", 0),
stats.get("aspa_obj_missing", 0),
sep=",",
)
if GRAPH_FILE_PATH:
generate_graph(stats, TARGET_COUNTRY, GRAPH_FILE_PATH)
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
logging.warning("Interrupted")
sys.exit(1)
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Scanning MaxMind database "GeoLite2-Country.mmdb" (Built: 2026-07-21 15:33:20 UTC) for EE networks...
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 2.57.220.0/22
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 2.59.164.0/22
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.8.44.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.34.240.0/23
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.34.243.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.42.221.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.44.184.0/21
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.45.112.0/20
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.62.60.125/32
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.62.60.126/31
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.101.112.0/20
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.101.176.0/20
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.105.42.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.145.177.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.154.181.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.157.5.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.157.19.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.157.24.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.157.52.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.175.178.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.181.202.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.188.16.0/21
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.188.200.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.189.254.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 5.253.176.0/22
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 8.29.109.65/32
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 8.29.230.210/32
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 8.29.231.210/32
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 23.161.104.128/32
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 23.230.179.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 31.24.56.0/21
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 31.56.187.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 31.213.216.0/23
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 31.213.218.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 37.0.24.0/21
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 37.72.111.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 37.77.56.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 37.140.246.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 37.143.64.0/21
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 37.157.64.0/18
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 37.252.4.0/23
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.180.10.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.180.44.0/23
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.180.163.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.180.164.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.180.216.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.180.230.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.180.248.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.211.99.0/24
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.244.154.0/23
2026-07-26 15:10:40 +0300 - [get_maxmind_networks] - INFO - Found 38.244.216.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 43.228.237.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 44.63.0.12/32
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.11.183.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.12.28.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.67.128.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.80.108.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.80.110.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.83.52.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.83.72.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.83.180.0/23
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.83.182.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.86.171.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.88.59.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.88.88.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.92.100.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.129.52.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.129.96.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.129.164.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.129.199.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.131.164.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.131.166.0/23
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.132.64.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.132.188.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.134.112.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.138.101.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.139.107.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.139.194.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.140.48.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.142.100.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.143.221.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.143.223.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.144.4.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.145.171.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.146.76.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.151.4.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.151.72.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.156.32.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.157.136.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.157.192.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 45.158.52.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.16.112.0/21
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.18.88.0/21
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.22.208.0/20
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.29.35.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.36.216.0/21
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.39.128.0/19
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.131.0.0/16
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.226.136.0/21
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.243.150.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 46.255.28.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 51.146.68.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 57.86.160.0/22
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 57.87.128.0/20
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.65.32.0/19
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.65.192.0/18
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.110.0/23
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.112.0/28
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.112.96/30
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.112.104/30
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.112.128/26
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.116.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.118.0/23
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.10/31
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.22/32
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.26/31
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.45/32
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.50/31
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.52/30
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.56/31
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.58/32
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.100/31
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.110/31
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.122/32
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.126/31
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.145/32
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.122.254/32
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.123.80/28
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.124.64/27
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.125.40/32
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.127.40/31
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.127.160/27
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.127.208/29
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 62.128.127.224/27
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 64.28.40.0/23
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 64.188.78.0/24
2026-07-26 15:10:41 +0300 - [get_maxmind_networks] - INFO - Found 64.188.82.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 69.174.98.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 74.80.71.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 74.118.126.52/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.72.85.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.77.168.152/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.77.185.72/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.83.28.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.83.198.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.233.64.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.239.126.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.240.240.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.247.108.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 77.247.110.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 78.24.192.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 78.28.64.0/18
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 78.110.32.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 80.66.198.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 80.66.240.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 80.77.25.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 80.79.112.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 80.235.0.0/17
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 80.239.212.16/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 80.250.112.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 80.252.116.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 80.252.118.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 81.20.144.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 81.21.240.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 81.25.69.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 81.25.240.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 81.90.112.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 82.39.111.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 82.116.128.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 82.116.136.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 82.116.141.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 82.116.142.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 82.116.144.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 82.131.0.0/17
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 82.147.160.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.166.32.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.172.139.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.176.0.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.178.58.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.179.128.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.180.0.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.187.128.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.187.148.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.187.152.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.187.192.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.191.192.0/18
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.217.210.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 83.241.174.168/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 84.19.140.155/32
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 84.32.210.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 84.39.116.8/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 84.50.0.0/16
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 84.52.0.0/18
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 84.246.194.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 84.247.19.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.29.192.0/18
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.89.32.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.92.119.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.115.204.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.0.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.8.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.10.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.12.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.16.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.32.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.64.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.72.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.80.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.96.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.104.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.112.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.114.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.116.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.153.120.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.190.239.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.194.200.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.196.192.0/18
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.222.232.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.234.244.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.253.0.0/16
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.254.13.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 85.254.182.67/32
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.32.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.38.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.40.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.45.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.46.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.48.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.50.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.53.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.54.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.56.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.58.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 86.110.62.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.2.80/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.2.240/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.5.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.32.128/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.32.144/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.33.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.36.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.39.124/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.93.104/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.94.112/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.98.95.208/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.119.125.56/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.119.160.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.121.86.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.245.211.128/25
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 87.251.19.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 88.196.0.0/16
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 88.214.21.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.22.193.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.36.21.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.40.104.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.42.118.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.117.164.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.125.13.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.150.40.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.169.15.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.128.16/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.128.24/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.128.40/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.128.64/27
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.128.116/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.128.128/25
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.129.128/27
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.129.176/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.130.160/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.130.176/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.131.32/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.134.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.136.64/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.136.80/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.137.128/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.138.96/27
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.138.196/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.139.0/25
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.139.144/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.139.156/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.139.224/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.139.240/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.140.96/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.140.136/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.140.144/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.140.172/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.140.248/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.141.156/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.142.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.143.40/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.143.96/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.143.216/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.144.32/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.144.168/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.145.84/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.146.16/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.147.32/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.147.184/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.148.96/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.149.0/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.150.16/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.150.100/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.150.144/28
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.152.96/27
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.152.224/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.153.0/27
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.153.64/27
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.153.108/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.153.120/29
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.153.144/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.219.154.192/26
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.221.64.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 89.235.192.0/18
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 90.130.28.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 90.130.32.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 90.130.74.115/32
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 90.130.128.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 90.137.132.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 90.190.0.0/15
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.95.0.0/16
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.102.122.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.129.0.0/17
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.131.0.0/17
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.146.64.0/19
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.192.116.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.193.254.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.195.246.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.195.252.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.198.206.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.203.29.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.205.96.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.208.15.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.208.26.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.213.43.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.213.126.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.216.86.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.217.50.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.217.240.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.223.243.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.224.188.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.228.215.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.234.233.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.235.234.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.236.38.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.236.44.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.236.201.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 91.236.222.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 92.62.96.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 93.89.211.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 93.89.215.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 93.89.216.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 93.89.218.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 93.113.98.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 93.113.214.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 93.123.39.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 93.185.240.0/20
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 93.188.182.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.23.190.128/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.126.224.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.154.144.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.156.236.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.177.25.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.183.170.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.183.205.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.183.239.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.190.145.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.190.146.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.190.148.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.190.152.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.232.28.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.232.240.0/22
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.246.79.240/30
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 94.246.192.0/18
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.47.173.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.47.236.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.85.224.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.85.242.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.85.245.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.85.249.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.129.192.0/21
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.143.111.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.153.0.0/18
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.156.206.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.210.164.0/23
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.210.220.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.210.226.0/24
2026-07-26 15:10:42 +0300 - [get_maxmind_networks] - INFO - Found 95.215.132.0/22
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 102.38.253.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 103.3.224.0/22
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 103.76.255.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 103.88.42.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 103.145.75.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 103.149.97.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 103.220.220.0/22
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 103.245.116.0/22
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.9.158/31
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.9.160/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.31.11/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.31.12/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.45.8/31
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.65.11/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.65.12/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.105.4/31
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.131.28/31
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.139.115/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.139.150/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.148.89/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.156.89/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.157.89/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.159.72/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.169.117/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.169.118/31
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.169.120/31
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.201.136/30
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.201.140/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.233.136/30
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.28.233.140/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.135.105/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.135.122/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.160.180/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.161.35/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.161.49/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.161.251/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.165.171/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.167.246/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.169.217/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.171.62/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.174.217/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.174.226/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.30.176.78/32
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 104.160.16.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 108.165.21.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 108.175.100.0/23
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 109.94.209.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 109.107.128.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 109.163.248.0/21
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 109.206.241.0/24
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 109.235.240.0/21
2026-07-26 15:10:43 +0300 - [get_maxmind_networks] - INFO - Found 114.129.9.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 130.255.160.228/30
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 132.243.64.0/20
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 132.243.168.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 136.228.197.241/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 136.228.197.242/31
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.0.241.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.124.4.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.124.100.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.249.37.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.249.56.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.249.75.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.249.90.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.249.128.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.249.161.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.249.194.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 138.249.228.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 139.45.204.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.99.188.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.99.192.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.99.195.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.99.198.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.99.201.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.99.204.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.233.182.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.34.72/30
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.36.98/31
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.36.100/31
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.56.63/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.57.63/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.58.63/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.59.63/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.60.63/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.61.63/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.62.63/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 140.248.63.63/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 141.8.147.136/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 141.105.138.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 141.105.140.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 141.105.143.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 144.31.129.192/27
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 144.31.170.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 145.14.16.0/20
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 145.14.32.0/20
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.80.0/31
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.80.3/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.80.4/30
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.80.8/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.80.16/28
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.80.32/27
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.80.64/26
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.80.128/25
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.143.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.185.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.19.194.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.75.169.72/30
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 146.255.176.0/21
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 147.28.2.0/23
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 147.28.4.0/22
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 147.28.8.0/21
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 147.75.147.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.5.209.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.5.210.0/23
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.5.212.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.5.214.0/23
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.0/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.8/30
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.14/31
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.16/30
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.22/31
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.24/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.32/28
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.48/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.64/28
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.88/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.96/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.112/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.128/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.146/31
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.150/31
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.6.188.184/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.13.64.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 149.87.144.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 150.251.34.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 150.251.131.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 151.241.102.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 152.55.221.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 153.56.171.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 153.72.170.0/23
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 153.92.181.128/26
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.14.6.176/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.14.224.72/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.14.230.216/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.14.231.120/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.14.231.144/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.14.240.184/30
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.50.208.27/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.59.224.0/22
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.218.26.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 154.218.28.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 155.2.162.240/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 155.2.166.240/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 155.2.170.240/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 155.2.174.240/29
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 155.117.226.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.49.0/24
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.228.31/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.228.32/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.228.146/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.229.31/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.229.32/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.229.146/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.230.31/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.230.32/32
2026-07-26 15:10:44 +0300 - [get_maxmind_networks] - INFO - Found 157.167.230.146/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.231.59/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.231.60/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.231.198/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.237.31/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.237.32/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.237.146/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.238.31/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.238.32/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.238.146/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.239.31/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.239.32/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.239.146/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.240.31/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.240.32/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 157.167.240.146/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 158.173.75.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 159.117.235.32/27
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 159.253.16.0/21
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 160.22.180.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 160.25.104.113/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 160.25.105.113/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 160.238.116.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 161.123.194.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 162.120.215.130/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 162.120.215.180/30
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 162.120.216.33/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 162.120.216.240/30
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.166.90/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.166.109/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.168.91/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.168.97/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.173.117/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.173.124/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.181.95/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.181.102/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.189.108/31
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.246.97/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 163.116.246.98/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 164.137.80.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 164.137.201.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.141.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.143.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.161.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.162.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.164.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.171.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.172.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.176.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.178.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.180.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.184.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.190.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.193.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.194.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.197.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.198.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.200.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 165.231.202.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 167.104.64.0/19
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 168.90.198.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 171.22.244.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 172.69.136.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 172.225.34.48/28
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 172.225.70.64/27
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 172.225.182.0/27
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 172.225.210.32/28
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 176.46.0.0/17
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 176.97.74.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 176.112.144.0/20
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 176.113.69.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 176.118.4.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 176.118.167.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 176.124.32.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 176.124.247.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.21.240.0/21
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.23.112.0/21
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.92.51.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.92.53.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.93.132.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.171.42.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.214.96.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.214.99.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.214.100.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.214.104.0/21
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.214.112.0/20
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.236.200.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.248.136.0/21
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.251.56.0/21
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.255.11.0/30
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.255.11.4/31
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.255.11.7/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.255.11.8/29
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.255.11.16/28
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.255.11.32/27
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.255.11.64/26
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.255.11.128/25
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 178.255.12.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 181.114.240.0/20
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.1.235.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.72.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.74.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.75.0/25
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.75.128/26
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.75.192/27
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.75.224/29
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.75.232/31
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.75.234/32
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.75.236/30
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.4.75.240/28
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.6.176.192/26
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.6.179.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.7.252.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.12.236.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.13.16.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.14.216.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.18.160.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.20.56.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.20.100.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.23.236.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.28.120.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.31.9.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.31.92.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.31.240.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.34.36.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.36.140.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.36.142.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.37.252.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.37.254.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.39.8.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.39.10.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.40.236.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.43.104.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.45.140.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.46.20.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.50.96.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.53.88.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.53.90.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.55.48.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.59.32.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.68.208.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.72.28.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.73.68.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.73.124.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.73.132.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.75.176.192/26
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.78.44.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.82.154.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.83.4.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.86.211.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.87.216.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.88.37.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.93.7.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.93.33.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.94.112.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.97.36.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.97.148.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.97.150.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.97.248.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.99.24.236/30
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.99.26.236/30
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.103.203.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.107.197.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.111.27.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.113.252.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.114.116.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.114.176.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.116.88.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.117.64.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.118.160.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.122.185.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.123.53.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.125.136.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.125.241.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.129.16.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.137.99.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.139.252.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.145.4.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.147.120.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.153.144.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.154.220.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.155.96.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.155.222.0/23
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.155.252.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.157.108.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.158.176.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.159.24.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.159.247.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.161.84.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.161.249.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.162.44.64/26
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.166.87.164/30
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.166.87.168/29
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.166.87.176/28
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.169.68.0/22
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.170.59.0/24
2026-07-26 15:10:45 +0300 - [get_maxmind_networks] - INFO - Found 185.172.24.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.174.135.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.174.159.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.174.160.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.190.249.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.191.16.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.193.49.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.193.60.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.194.52.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.195.20.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.196.210.4/30
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.196.211.4/30
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.200.68.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.200.196.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.204.153.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.209.96.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.213.44.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.215.184.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.216.44.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.216.46.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.219.88.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.220.132.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.222.106.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.223.170.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.235.80.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.235.143.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.235.160.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.236.32.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.242.184.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.244.100.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.246.184.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.249.222.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.250.152.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.252.177.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.254.34.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.254.122.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 185.255.178.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 186.243.167.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 186.243.217.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 186.246.69.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 186.246.114.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 187.15.123.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.0.48.0/20
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.64.179.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.66.0.0/21
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.92.160.0/21
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.95.208.0/21
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.119.112.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.190.18.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.214.32.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.214.36.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.227.248.0/21
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 188.255.236.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 192.83.230.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.3.30.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.16.32.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.28.254.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.31.108.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.32.100.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.40.0.0/16
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.42.48.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.42.112.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.47.234.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.47.244.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.56.121.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.56.122.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.93.252.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.109.120.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.138.8.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.138.27.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.143.8.0/21
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.143.240.0/21
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.148.76.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.161.245.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.164.12.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.164.128.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.202.40.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.203.196.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 193.221.204.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.0.51.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.0.177.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.0.203.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.1.209.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.4.168.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.15.248.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.26.141.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.29.54.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.30.168.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.31.56.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.36.162.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.48.211.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.50.99.64/32
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.55.8.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.56.212.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.69.104.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.69.105.0/25
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.69.105.128/26
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.69.105.192/27
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.69.105.224/28
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.76.198.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.76.227.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.93.64.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.106.96.0/19
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.116.188.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.126.96.0/19
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.127.164.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.132.49.192/27
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.146.64.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.146.82.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.147.241.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.147.244.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.147.255.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.149.89.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.150.64.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.156.1.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.180.226.152/29
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 194.204.0.0/18
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.8.204.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.12.225.48/30
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.20.151.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.34.212.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.42.102.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.43.86.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.50.192.0/18
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.54.166.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.60.83.96/27
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.66.106.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.67.197.16/30
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.67.197.144/30
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.80.96.0/19
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.82.146.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.130.196.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.138.53.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.212.23.121/32
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.0.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.1.0/25
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.1.128/26
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.1.192/27
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.1.224/28
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.2.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.4.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.8.0/21
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.16.0/21
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.24.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.26.8/29
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.26.26/31
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.26.28/30
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.26.32/27
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.26.64/26
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.26.128/25
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.27.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.222.28.0/22
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.238.64.0/23
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.245.110.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.245.239.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 195.250.160.0/19
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 196.48.10.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 196.56.10.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 196.57.10.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 196.58.10.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 196.196.216.0/21
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 196.197.10.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 196.198.10.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 196.199.10.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 196.242.244.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 199.4.158.0/24
2026-07-26 15:10:46 +0300 - [get_maxmind_networks] - INFO - Found 199.19.254.208/28
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 199.116.172.224/27
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 199.244.100.0/23
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 199.244.103.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 200.10.33.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 200.10.42.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 201.4.45.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 202.122.129.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 204.17.195.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 205.237.92.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 205.237.94.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 207.244.210.0/23
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 208.167.192.48/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 209.131.70.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 209.206.29.112/28
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.7.0.0/19
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.27.224.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.27.228.78/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.27.233.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.27.244.8/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.27.246.0/23
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.27.248.32/27
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.27.248.96/27
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.27.248.160/27
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.192.128/27
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.192.184/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.192.188/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.192.192/26
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.193.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.194.0/23
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.196.0/22
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.200.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.0/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.8/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.28/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.48/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.52/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.56/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.60/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.68/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.74/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.76/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.81/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.86/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.94/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.96/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.99/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.104/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.106/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.108/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.112/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.116/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.118/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.121/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.122/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.124/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.128/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.134/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.138/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.140/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.146/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.156/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.160/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.162/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.164/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.168/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.176/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.184/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.191/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.192/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.198/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.204/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.220/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.224/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.236/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.240/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.248/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.201.252/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.202.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.203.0/25
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.203.128/27
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.203.176/28
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.203.192/26
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.204.0/22
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.47.208.0/20
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.0.192/28
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.0.224/28
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.9.68/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.9.128/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.9.216/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.20.16/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.20.72/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.20.96/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.20.112/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.20.136/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.0/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.8/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.16/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.32/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.44/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.48/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.108/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.132/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.140/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.160/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.200/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.22.248/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.30.0/28
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.49.31.160/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.81.65.200/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.102.144.0/22
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.107.32.0/19
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.115.142.124/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.115.142.160/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.115.164.152/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.222.176.176/28
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.222.177.144/28
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.222.179.200/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.222.198.72/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.222.198.120/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.222.222.120/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 212.222.240.104/29
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.5.72.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.35.128.0/17
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.100.136.0/22
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.100.224.0/19
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.101.132.0/23
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.101.192.0/20
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.102.133.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.102.134.0/23
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.102.136.0/21
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.102.152.0/22
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.103.164.0/22
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.111.179.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.111.181.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.111.189.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.111.190.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.130.192.0/21
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.130.212.0/22
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.156.252.3/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.168.0.0/19
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.180.0.0/19
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.184.32.0/19
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.187.232.0/23
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.187.236.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.187.238.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.187.249.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.187.250.0/23
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.187.252.0/22
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.219.64.0/18
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 213.232.112.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 216.87.53.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 216.131.121.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.9.12.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.22.5.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.28.241.88/31
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.28.241.112/32
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.28.242.0/28
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.28.245.136/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.71.32.0/20
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.78.239.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.118.113.148/30
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.119.138.0/24
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.142.26.0/23
2026-07-26 15:10:47 +0300 - [get_maxmind_networks] - INFO - Found 217.146.64.0/20
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 217.156.238.224/28
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 217.159.128.0/17
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 217.180.63.0/24
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:d:470::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:d:8d5::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:19:15e::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1d:e7::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:26:10::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:26:47::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:26:3a8::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:26:774::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:48::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:54::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:c0::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:1b1::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:1ef::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:218::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:27d::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:29a::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:29d::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:2f3::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:395::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:3af::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:49a::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:551::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:578::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:5f8::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:768::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:777::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:851::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:859::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:944::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:af0::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:b33::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:bf5::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:c16::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:c24::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:cb1::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:d97::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:e66::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:ede::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:f10::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:f2a::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:fd9::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:101d::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:28:10f5::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:36:5dc::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:6d:2ce::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:6d:7a0::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:6d:c14::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:6f:199::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:6f:42c::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:6f:674::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:71:36b::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:71:3dd::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:71:663::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:71:717::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f05:1c4::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f07:1d0::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f0b:46::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f0b:11f::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f0b:5df::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f0b:8f7::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f0b:966::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f0b:9b6::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f0b:a1d::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f0f:1a::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f11:c7::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f13:f::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f13:40c::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f13:488::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f13:4d0::/64
2026-07-26 15:10:48 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f13:cd6::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f15:7c::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f15:b2::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f15:2df::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f15:6b0::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f15:a58::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f15:d47::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f1b:122::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f1b:487::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f29:63::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f29:132::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:1f29:263::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:221d::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:50f0::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:599c::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:59e5::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:618e::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:6344::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:70cd::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:7272::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:73f6::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:746f::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:782f::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:7847::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:7b2c::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:7cdf::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:b5f9::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:dc2f::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:dc6d::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:dcfa::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:dd0e::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:de30::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:de34::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:de6e::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:de92::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:debe::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:defc::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:df47::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:df95::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:470:f18d::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:678:94::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:678:5e0::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:678:a54::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:678:f64::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:32c::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:3c8::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:6e4::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:804::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:dd8::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:e64::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:ec4::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:f24::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:f74::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:1184::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:16cc::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:2098::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:23d4::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:67c:2618::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:7d0::/32
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:7f8:15::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:7f8:50::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:7f8:125::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:978:2:e::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:978:1000::/47
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1:1::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:2:1::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:5:1::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:6:1::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:8::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:9:1::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:ff:37::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:ff:38::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:101:2::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:104:498::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:105:189::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:301:1000::/63
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:301:1002::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:301:1005::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:303:1::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c10:1::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c10:3::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c10:4::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c10:7::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c10:8::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c10:12::/63
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c10:15::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c10:16::/63
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c10:18::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c12:1::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c12:2::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c12:11::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c12:13::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c12:14::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c12:16::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:c15::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:cff::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1000::/63
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1000:2::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1000:1000::/63
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1000:1003::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1000:1004::/63
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1200::/62
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1201::/48
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1400:1::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1400:1000::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1400:1002::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1400:1005::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1400:1007::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1400:1008::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:ad0:1700:1000::/64
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:bb8::/32
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:1530::/32
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:1b28::/32
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:1bf0::/29
2026-07-26 15:10:49 +0300 - [get_maxmind_networks] - INFO - Found 2001:3786:3456::/48
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2400:cb00:152::/48
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0::/48
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:2::/47
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:4::/46
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:8::/45
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:10::/44
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:20::/43
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:40::/42
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:80::/41
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:100::/40
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:200::/39
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:400::/38
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:800::/37
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:1000::/36
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:2000::/35
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:4000::/34
2026-07-26 15:10:50 +0300 - [get_maxmind_networks] - INFO - Found 2401:eaa0:8000::/33
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:b05f::/48
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:b0a4::/48
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:b0d1::/48
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:b0d9::/48
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:b164::/48
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:b199::/48
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:b257::/48
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:b2f7::/48
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:b31f::/48
2026-07-26 15:10:51 +0300 - [get_maxmind_networks] - INFO - Found 2600:70ff:d037::/48
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2604:ea80:6200::/40
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2605:7a80:9914::/47
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:22e8:4000::/54
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:22ee:8000::/54
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:22ee:a000::/54
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:22ee:c000::/54
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:22ee:e000::/54
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:22fc:2000::/54
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:2316::/54
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:2316:2000::/54
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:2316:4000::/54
2026-07-26 15:10:52 +0300 - [get_maxmind_networks] - INFO - Found 2606:40:2316:6000::/54
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2606:54c0:3050::/44
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2606:54c3:0:12b9::/64
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2606:54c3:0:13ad::/64
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2606:f4c0:2960::/44
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2607:740:6d::/48
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2620:171:71::/48
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:807:80::/41
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:807:c000::/64
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:807:d000::/64
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:807:e000::/64
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:ca0:2054:a000::/52
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:ca0:2058:c000::/50
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:16e0::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:6a00::/29
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:6cc0::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:9b40::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:9ec0::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:9f80::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:b9e0::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:c3a0::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:c700::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:ce80::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:d800::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a00:fd40:c:2d00::/56
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008::/61
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:8::/62
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:c::/64
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:f::/64
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:10::/60
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:20::/59
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:40::/58
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:80::/57
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:100::/56
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:200::/55
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:400::/54
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:800::/53
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:1000::/52
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:2000::/51
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:4000::/50
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:110:9008:8000::/49
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:158::/32
2026-07-26 15:10:53 +0300 - [get_maxmind_networks] - INFO - Found 2a01:1b8::/32
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:6da0::/32
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:8020::/32
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:82a0::/32
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:8640:f::/48
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:8640:17::/48
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:8640:18::/48
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:97a0::/32
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:a3e0::/32
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:e740::/29
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a01:ecc1:e000::/36
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:88::/32
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:2d8:0:b000::/56
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:e80::/32
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0c0::/48
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0c1:4000::/64
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0c4::/48
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0c5:4000::/64
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0c8:4000::/64
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0c8:d440::/60
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0c8:d450::/61
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0c8:d458::/63
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0c9:4000::/64
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0cc:4000::/64
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0cc:d440::/60
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0cc:d450::/61
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0cc:d458::/63
2026-07-26 15:10:55 +0300 - [get_maxmind_networks] - INFO - Found 2a02:26f7:d0cd:4000::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a02:29e8::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a02:5740:10::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a02:68a0::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:f80:372::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:29c0::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:42e0::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:4360::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:5820::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:5880::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:95c0::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:c840::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:e980::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a03:f480::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:3340::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:1401:9000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:1410::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:1802:1000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:1816::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:4013:f000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:4023:f000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:4033:f000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:4043:f000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:4053:f000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:4063:f000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:4073:f000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:4083:f000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:5601:9000::/52
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:4e41:5610::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:6f00::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:7e80::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:80c0::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:c280::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a04:d400::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a05:541:129::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a05:1cc0::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a05:4080::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a05:4280::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a05:cfc0::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a06:9c0::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a06:3040:6::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a06:6b00::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a06:a980::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a06:dd02::/31
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a06:dd04::/30
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:1180::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:1280::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:44c0::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:7f00::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:8800::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:9000::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:9280::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:9900::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:d880::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:d881:3::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:d883:704::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:d887:3f00::/40
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:ddc0::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000::/46
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:4::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:6::/47
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:8::/45
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:10::/44
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:20::/43
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:40::/42
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:80::/41
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:100::/40
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:200::/39
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:400::/38
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:800::/37
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:1000::/36
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:2000::/35
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:4000::/34
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e000:8000::/33
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e001::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e002::/31
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a07:e004::/30
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:5840::/29
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:8240::/32
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:152::/48
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:4c::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:d7::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:4c9::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:4db::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:58b::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:5f5::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:607::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:6d0::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:a7d::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:cfd::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:1216::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:1378::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:170e::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1000:1717::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1001:4c::/64
2026-07-26 15:10:56 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac0:1001:323::/64
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac1:2180::/64
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac1:2180:3d8::/64
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac1:21a0::/64
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac1:21a0:3d8::/64
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac1:21c0::/64
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac1:21c0:3d8::/64
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac1:21e0::/64
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac1:21e0:3d8::/64
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac2:3050::/44
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac3:3050::/44
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac4:1f8::/45
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac4:11f8::/45
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac5:30a0::/44
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac6:30a0::/44
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:bac6:dac0::/45
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:c500::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:d9c0::/32
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a09:f540::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0a:5b40::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0a:acc0::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0a:ae80::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:40::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:2540::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:4440::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:48c0::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:4e07:3:2330::/60
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:6140::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:6c00::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:7140:1::/48
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:ac40::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:b240::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:b2c0::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:ba40::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0b:f740::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0c:1180::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0c:9d40::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0c:e240::/32
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0d:3344:7b00::/40
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0d:3e40::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0d:6800::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0d:6b00::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0d:8f00::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0d:a180::/32
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0d:d904:2::/48
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0d:e500::/32
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4201:2000::/47
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4440::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940::/46
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:4::/47
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:7::/48
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:8::/45
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:10::/44
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:20::/43
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:40::/42
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:80::/41
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:100::/40
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:200::/39
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:400::/38
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:800::/37
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:1000::/36
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:2000::/35
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:4000::/34
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:4940:8000::/33
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:7c80::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:8680::/29
2026-07-26 15:10:57 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:a840::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:e740::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:ec05:9bc0::/42
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:ec05:9c00::/40
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:ec05:9d00::/41
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a0e:ec05:9d80::/42
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a0f:a680::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:1::/48
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:e::/47
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:13::/48
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:14::/46
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:18::/45
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:20::/43
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:40::/42
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:80::/41
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:100::/40
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:200::/39
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:400::/38
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:800::/37
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:1000::/36
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:2000::/35
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:4000::/34
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc0:8000::/33
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc1::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc2::/31
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:1fc4::/30
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:2a00::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:46c0::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b000::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140::/48
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:2::/47
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:4::/46
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:8::/45
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:10::/44
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:20::/43
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:40::/42
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:80::/41
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:100::/40
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:200::/39
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:400::/38
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:800::/37
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:1000::/36
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:2000::/35
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:4000::/34
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b140:8000::/33
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b141::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b142::/31
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:b144::/30
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:c940::/30
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:c945::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:c946::/31
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a10:f040::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a11:1400:5043::/48
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a11:2600::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a11:6a00::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a11:9000::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a11:cc40::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:e00::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:1200::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:1b80::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:2780::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:7280::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:7c40::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:8200::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:8340::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:9d40::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:ab00::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:bc40::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:bec4:150::/44
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a12:c740::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:240:7::/48
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:b80::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:1c80::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:6000::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:7a40::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:85c0::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:a5c3:4300::/42
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc0::/31
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc2::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:1::/48
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:2::/47
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:4::/46
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:8::/45
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:10::/44
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:20::/43
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:40::/42
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:80::/41
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:100::/40
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:200::/39
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:400::/38
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:800::/37
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:1000::/36
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:2000::/35
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:4000::/34
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc3:8000::/33
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:adc4::/30
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:c180::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:c5c0::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:ca40::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:cec0::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:e5c0::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a13:f0c0::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a14:280::/29
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a14:67c2:895::/48
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a14:7580:6000::/40
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a14:8c80::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 2a14:b680::/32
2026-07-26 15:10:58 +0300 - [get_maxmind_networks] - INFO - Found 1641 networks from MaxMind db for EE
2026-07-26 15:10:58 +0300 - [get_unique_bgp_routes] - INFO - Finding prefixes in BGP related to 1641 geolocated address ranges...
2026-07-26 15:11:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2.57.220.0/22 has more specific match 2.57.222.0/23 (AS 207568) in BGP
2026-07-26 15:11:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2.59.164.0/22 has more specific match 2.59.164.0/23 (AS 209153) in BGP
2026-07-26 15:11:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2.59.164.0/22 has more specific match 2.59.164.0/24 (AS 209153) in BGP
2026-07-26 15:11:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2.59.164.0/22 has more specific match 2.59.165.0/24 (AS 209153) in BGP
2026-07-26 15:11:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2.59.164.0/22 has more specific match 2.59.166.0/24 (AS 202376) in BGP
2026-07-26 15:11:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2.59.164.0/22 has more specific match 2.59.167.0/24 (AS 202376) in BGP
2026-07-26 15:11:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2.59.164.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:11:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.8.44.0/24 has no prefixes in BGP
2026-07-26 15:11:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.34.240.0/23 has more specific match 5.34.240.0/24 (AS 57858) in BGP
2026-07-26 15:11:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.34.240.0/23 has more specific match 5.34.241.0/24 (AS 58065) in BGP
2026-07-26 15:11:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.34.240.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:11:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.34.243.0/24 has an exact match 5.34.243.0/24 (AS 57858) in BGP
2026-07-26 15:11:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.42.221.0/24 has an exact match 5.42.221.0/24 (AS 62005) in BGP
2026-07-26 15:11:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.44.184.0/21 has more specific match 5.44.191.0/24 (AS 12757) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has an exact match 5.45.112.0/20 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.112.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.113.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.114.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.115.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.116.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.117.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.118.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.119.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.120.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.121.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.122.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.123.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.124.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.125.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.126.0/24 (AS 198068) in BGP
2026-07-26 15:11:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.45.112.0/20 has more specific match 5.45.127.0/24 (AS 198068) in BGP
2026-07-26 15:11:10 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 5.62.60.0/23 (AS 198605) for MaxMind entry 5.62.60.125/32
2026-07-26 15:11:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 5.62.60.0/23 (AS 198605) for MaxMind entry 5.62.60.126/31
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has an exact match 5.101.112.0/20 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.112.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.113.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.114.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.115.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.116.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.117.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.118.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.119.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.120.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.121.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.122.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.123.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.124.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.125.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.126.0/24 (AS 198068) in BGP
2026-07-26 15:11:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.112.0/20 has more specific match 5.101.127.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has an exact match 5.101.176.0/20 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.176.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.177.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.178.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.179.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.180.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.181.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.182.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.183.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.184.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.185.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.186.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.188.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.189.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.190.0/24 (AS 198068) in BGP
2026-07-26 15:11:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.101.176.0/20 has more specific match 5.101.191.0/24 (AS 198068) in BGP
2026-07-26 15:11:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 5.105.32.0/20 (AS 204384) for MaxMind entry 5.105.42.0/24
2026-07-26 15:11:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.145.177.0/24 has an exact match 5.145.177.0/24 (AS 219429) in BGP
2026-07-26 15:11:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.154.181.0/24 has an exact match 5.154.181.0/24 (AS 44066) in BGP
2026-07-26 15:11:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.157.5.0/24 has an exact match 5.157.5.0/24 (AS 57858) in BGP
2026-07-26 15:11:27 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API HTTP 500 error for 5.157.19.0/24. Retrying...
2026-07-26 15:11:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.157.19.0/24 has an exact match 5.157.19.0/24 (AS 58065) in BGP
2026-07-26 15:11:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.157.24.0/24 has an exact match 5.157.24.0/24 (AS 58065) in BGP
2026-07-26 15:11:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.157.52.0/24 has an exact match 5.157.52.0/24 (AS 57858) in BGP
2026-07-26 15:11:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.175.178.0/24 has an exact match 5.175.178.0/24 (AS 214639) in BGP
2026-07-26 15:11:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.181.202.0/24 has an exact match 5.181.202.0/24 (AS 214790) in BGP
2026-07-26 15:11:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.16.0/21 has an exact match 5.188.16.0/21 (AS 198068) in BGP
2026-07-26 15:11:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.16.0/21 has more specific match 5.188.16.0/24 (AS 198068) in BGP
2026-07-26 15:11:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.16.0/21 has more specific match 5.188.17.0/24 (AS 198068) in BGP
2026-07-26 15:11:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.16.0/21 has more specific match 5.188.18.0/24 (AS 198068) in BGP
2026-07-26 15:11:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.16.0/21 has more specific match 5.188.19.0/24 (AS 198068) in BGP
2026-07-26 15:11:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.16.0/21 has more specific match 5.188.20.0/24 (AS 198068) in BGP
2026-07-26 15:11:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.16.0/21 has more specific match 5.188.21.0/24 (AS 198068) in BGP
2026-07-26 15:11:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.16.0/21 has more specific match 5.188.22.0/24 (AS 198068) in BGP
2026-07-26 15:11:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.16.0/21 has more specific match 5.188.23.0/24 (AS 198068) in BGP
2026-07-26 15:11:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.188.200.0/24 has an exact match 5.188.200.0/24 (AS 214790) in BGP
2026-07-26 15:11:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.189.254.0/24 has an exact match 5.189.254.0/24 (AS 214790) in BGP
2026-07-26 15:11:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.253.176.0/22 has more specific match 5.253.176.0/24 (AS 202759) in BGP
2026-07-26 15:11:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.253.176.0/22 has more specific match 5.253.177.0/24 (AS 202759) in BGP
2026-07-26 15:11:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.253.176.0/22 has more specific match 5.253.178.0/24 (AS 202759) in BGP
2026-07-26 15:11:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.253.176.0/22 has more specific match 5.253.179.0/24 (AS 202759) in BGP
2026-07-26 15:11:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 5.253.176.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:11:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 8.29.109.0/24 (AS 13335) for MaxMind entry 8.29.109.65/32
2026-07-26 15:11:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 8.29.230.0/24 (AS 13335) for MaxMind entry 8.29.230.210/32
2026-07-26 15:11:52 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 8.29.231.0/24 (AS 13335) for MaxMind entry 8.29.231.210/32
2026-07-26 15:11:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 23.161.104.0/24 (AS 10779) for MaxMind entry 23.161.104.128/32
2026-07-26 15:11:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 23.230.179.0/24 has an exact match 23.230.179.0/24 (AS 41745) in BGP
2026-07-26 15:11:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 31.24.56.0/21 has an exact match 31.24.56.0/21 (AS 61307) in BGP
2026-07-26 15:11:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 31.24.56.0/21 has more specific match 31.24.56.0/22 (AS 61307) in BGP
2026-07-26 15:11:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 31.24.56.0/21 has more specific match 31.24.60.0/22 (AS 61307) in BGP
2026-07-26 15:11:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 31.56.187.0/24 has an exact match 31.56.187.0/24 (AS 197574) in BGP
2026-07-26 15:11:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 31.212.0.0/15 (AS 3320) for MaxMind entry 31.213.216.0/23
2026-07-26 15:12:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 31.212.0.0/15 (AS 3320) for MaxMind entry 31.213.218.0/24
2026-07-26 15:12:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 37.0.24.0/21 has an exact match 37.0.24.0/21 (AS 50794) in BGP
2026-07-26 15:12:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 37.72.111.0/24 has an exact match 37.72.111.0/24 (AS 213757) in BGP
2026-07-26 15:12:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 37.77.56.0/24 has an exact match 37.77.56.0/24 (AS 206804) in BGP
2026-07-26 15:12:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 37.140.246.0/24 has an exact match 37.140.246.0/24 (AS 201341) in BGP
2026-07-26 15:12:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 37.143.64.0/21 has an exact match 37.143.64.0/21 (AS 57873) in BGP
2026-07-26 15:12:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 37.157.64.0/18 has an exact match 37.157.64.0/18 (AS 3249) in BGP
2026-07-26 15:12:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 37.252.4.0/23 has an exact match 37.252.4.0/23 (AS 34702) in BGP
2026-07-26 15:12:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.180.10.0/24 has an exact match 38.180.10.0/24 (AS 34702) in BGP
2026-07-26 15:12:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.180.44.0/23 has an exact match 38.180.44.0/23 (AS 34702) in BGP
2026-07-26 15:12:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.180.163.0/24 has an exact match 38.180.163.0/24 (AS 34702) in BGP
2026-07-26 15:12:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.180.164.0/24 has an exact match 38.180.164.0/24 (AS 34702) in BGP
2026-07-26 15:12:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.180.216.0/24 has an exact match 38.180.216.0/24 (AS 34702) in BGP
2026-07-26 15:12:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.180.230.0/24 has an exact match 38.180.230.0/24 (AS 34702) in BGP
2026-07-26 15:12:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.180.248.0/24 has an exact match 38.180.248.0/24 (AS 34702) in BGP
2026-07-26 15:12:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.211.99.0/24 has an exact match 38.211.99.0/24 (AS 214776) in BGP
2026-07-26 15:12:23 +0300 - [get_unique_bgp_routes] - INFO - Processed 50/1641 prefixes...
2026-07-26 15:12:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.244.154.0/23 has more specific match 38.244.154.0/24 (AS 34702) in BGP
2026-07-26 15:12:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.244.154.0/23 has more specific match 38.244.155.0/24 (AS 34702) in BGP
2026-07-26 15:12:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.244.154.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:12:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 38.244.216.0/24 has an exact match 38.244.216.0/24 (AS 34702) in BGP
2026-07-26 15:12:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 43.228.237.0/24 has an exact match 43.228.237.0/24 (AS 39486) in BGP
2026-07-26 15:12:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 44.0.0.0/9 (AS 7377) for MaxMind entry 44.63.0.12/32
2026-07-26 15:12:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.11.183.0/24 has an exact match 45.11.183.0/24 (AS 207408) in BGP
2026-07-26 15:12:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.12.28.0/24 has an exact match 45.12.28.0/24 (AS 214790) in BGP
2026-07-26 15:12:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.67.128.0/22 has an exact match 45.67.128.0/22 (AS 198068) in BGP
2026-07-26 15:12:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.67.128.0/22 has more specific match 45.67.128.0/24 (AS 198068) in BGP
2026-07-26 15:12:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.67.128.0/22 has more specific match 45.67.129.0/24 (AS 198068) in BGP
2026-07-26 15:12:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.67.128.0/22 has more specific match 45.67.130.0/24 (AS 198068) in BGP
2026-07-26 15:12:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.67.128.0/22 has more specific match 45.67.131.0/24 (AS 198068) in BGP
2026-07-26 15:12:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.80.108.0/24 has an exact match 45.80.108.0/24 (AS 209242) in BGP
2026-07-26 15:12:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.80.110.0/24 has an exact match 45.80.110.0/24 (AS 209242) in BGP
2026-07-26 15:12:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.83.52.0/22 has no prefixes in BGP
2026-07-26 15:12:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.83.72.0/22 has an exact match 45.83.72.0/22 (AS 208834) in BGP
2026-07-26 15:12:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.83.180.0/23 has an exact match 45.83.180.0/23 (AS 62005) in BGP
2026-07-26 15:12:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.83.182.0/24 has an exact match 45.83.182.0/24 (AS 62005) in BGP
2026-07-26 15:12:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.86.171.0/24 has an exact match 45.86.171.0/24 (AS 202656) in BGP
2026-07-26 15:12:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.88.59.0/24 has an exact match 45.88.59.0/24 (AS 215709) in BGP
2026-07-26 15:12:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.88.88.0/24 has an exact match 45.88.88.0/24 (AS 209693) in BGP
2026-07-26 15:12:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.92.100.0/22 has no prefixes in BGP
2026-07-26 15:12:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.129.52.0/22 has more specific match 45.129.53.0/24 (AS 16509) in BGP
2026-07-26 15:12:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.129.52.0/22 has more specific match 45.129.54.0/24 (AS 16509) in BGP
2026-07-26 15:12:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.129.52.0/22 has more specific match 45.129.55.0/24 (AS 16509) in BGP
2026-07-26 15:12:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.129.96.0/24 has an exact match 45.129.96.0/24 (AS 208440) in BGP
2026-07-26 15:12:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.129.164.0/24 has an exact match 45.129.164.0/24 (AS 49191) in BGP
2026-07-26 15:12:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.129.199.0/24 has an exact match 45.129.199.0/24 (AS 62005) in BGP
2026-07-26 15:12:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.131.164.0/24 has an exact match 45.131.164.0/24 (AS 35004) in BGP
2026-07-26 15:12:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.131.166.0/23 has more specific match 45.131.166.0/24 (AS 35004) in BGP
2026-07-26 15:12:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.132.64.0/22 has an exact match 45.132.64.0/22 (AS 12293) in BGP
2026-07-26 15:12:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.132.188.0/22 has no prefixes in BGP
2026-07-26 15:13:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.134.112.0/22 has more specific match 45.134.112.0/23 (AS 203020) in BGP
2026-07-26 15:13:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.134.112.0/22 has more specific match 45.134.112.0/24 (AS 203020) in BGP
2026-07-26 15:13:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.134.112.0/22 has more specific match 45.134.113.0/24 (AS 203020) in BGP
2026-07-26 15:13:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.134.112.0/22 has more specific match 45.134.114.0/24 (AS 203020) in BGP
2026-07-26 15:13:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.134.112.0/22 has more specific match 45.134.115.0/24 (AS 203020) in BGP
2026-07-26 15:13:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.134.112.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:13:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.138.101.0/24 has an exact match 45.138.101.0/24 (AS 41745) in BGP
2026-07-26 15:13:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.139.107.0/24 has an exact match 45.139.107.0/24 (AS 31605) in BGP
2026-07-26 15:13:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.139.194.0/24 has an exact match 45.139.194.0/24 (AS 3214) in BGP
2026-07-26 15:13:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.140.48.0/22 has no prefixes in BGP
2026-07-26 15:13:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.142.100.0/22 has more specific match 45.142.100.0/24 (AS 208367) in BGP
2026-07-26 15:13:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.143.221.0/24 has no prefixes in BGP
2026-07-26 15:13:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.143.223.0/24 has no prefixes in BGP
2026-07-26 15:13:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.144.4.0/22 has more specific match 45.144.4.0/23 (AS 208338) in BGP
2026-07-26 15:13:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.144.4.0/22 has more specific match 45.144.6.0/23 (AS 208283) in BGP
2026-07-26 15:13:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.144.4.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:13:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.145.171.0/24 has an exact match 45.145.171.0/24 (AS 62005) in BGP
2026-07-26 15:13:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.146.76.0/22 has no prefixes in BGP
2026-07-26 15:13:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.151.4.0/22 has more specific match 45.151.4.0/23 (AS 49604) in BGP
2026-07-26 15:13:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.151.4.0/22 has more specific match 45.151.6.0/23 (AS 49604) in BGP
2026-07-26 15:13:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.151.4.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:13:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.151.72.0/24 has an exact match 45.151.72.0/24 (AS 202759) in BGP
2026-07-26 15:13:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.156.32.0/22 has an exact match 45.156.32.0/22 (AS 206844) in BGP
2026-07-26 15:13:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.156.32.0/22 has more specific match 45.156.32.0/24 (AS 206844) in BGP
2026-07-26 15:13:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.156.32.0/22 has more specific match 45.156.33.0/24 (AS 206844) in BGP
2026-07-26 15:13:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.156.32.0/22 has more specific match 45.156.34.0/24 (AS 206844) in BGP
2026-07-26 15:13:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.156.32.0/22 has more specific match 45.156.35.0/24 (AS 206844) in BGP
2026-07-26 15:13:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.157.136.0/24 has an exact match 45.157.136.0/24 (AS 58061) in BGP
2026-07-26 15:13:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.157.192.0/22 has no prefixes in BGP
2026-07-26 15:13:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.158.52.0/22 has more specific match 45.158.54.0/24 (AS 206844) in BGP
2026-07-26 15:13:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 45.158.52.0/22 has more specific match 45.158.55.0/24 (AS 206844) in BGP
2026-07-26 15:13:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.16.112.0/21 has an exact match 46.16.112.0/21 (AS 51504) in BGP
2026-07-26 15:13:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.18.88.0/21 has more specific match 46.18.92.0/22 (AS 214432) in BGP
2026-07-26 15:13:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.18.88.0/21 has more specific match 46.18.89.0/24 (AS 152179) in BGP
2026-07-26 15:13:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.22.208.0/20 has an exact match 46.22.208.0/20 (AS 34702) in BGP
2026-07-26 15:13:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.29.35.0/24 has no prefixes in BGP
2026-07-26 15:13:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.36.216.0/21 has an exact match 46.36.216.0/21 (AS 198068) in BGP
2026-07-26 15:13:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.36.216.0/21 has more specific match 46.36.216.0/24 (AS 198068) in BGP
2026-07-26 15:13:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.36.216.0/21 has more specific match 46.36.217.0/24 (AS 198068) in BGP
2026-07-26 15:13:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.36.216.0/21 has more specific match 46.36.218.0/24 (AS 198068) in BGP
2026-07-26 15:13:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.36.216.0/21 has more specific match 46.36.219.0/24 (AS 198068) in BGP
2026-07-26 15:13:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.36.216.0/21 has more specific match 46.36.220.0/24 (AS 198068) in BGP
2026-07-26 15:13:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.36.216.0/21 has more specific match 46.36.221.0/24 (AS 198068) in BGP
2026-07-26 15:13:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.36.216.0/21 has more specific match 46.36.222.0/24 (AS 198068) in BGP
2026-07-26 15:13:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.36.216.0/21 has more specific match 46.36.223.0/24 (AS 198068) in BGP
2026-07-26 15:13:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.39.128.0/19 has an exact match 46.39.128.0/19 (AS 51504) in BGP
2026-07-26 15:13:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.131.0.0/16 has an exact match 46.131.0.0/16 (AS 3249) in BGP
2026-07-26 15:13:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.226.136.0/21 has an exact match 46.226.136.0/21 (AS 56588) in BGP
2026-07-26 15:13:54 +0300 - [get_unique_bgp_routes] - INFO - Processed 100/1641 prefixes...
2026-07-26 15:13:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.243.150.0/24 has an exact match 46.243.150.0/24 (AS 210671) in BGP
2026-07-26 15:13:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 46.255.28.0/24 has no prefixes in BGP
2026-07-26 15:13:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 51.146.68.0/24 has an exact match 51.146.68.0/24 (AS 215294) in BGP
2026-07-26 15:14:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 57.86.160.0/22 has an exact match 57.86.160.0/22 (AS 51964) in BGP
2026-07-26 15:14:01 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 57.87.0.0/16 (AS 16509) for MaxMind entry 57.87.128.0/20
2026-07-26 15:14:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 62.65.32.0/19 has an exact match 62.65.32.0/19 (AS 3249) in BGP
2026-07-26 15:14:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 62.65.192.0/18 has an exact match 62.65.192.0/18 (AS 2586) in BGP
2026-07-26 15:14:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.104.0/21 (AS 3327) for MaxMind entry 62.128.110.0/23
2026-07-26 15:14:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.112.0/28
2026-07-26 15:14:10 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.112.96/30
2026-07-26 15:14:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.112.104/30
2026-07-26 15:14:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.112.128/26
2026-07-26 15:14:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.116.0/24
2026-07-26 15:14:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.118.0/23
2026-07-26 15:14:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.10/31
2026-07-26 15:14:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.22/32
2026-07-26 15:14:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.26/31
2026-07-26 15:14:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.45/32
2026-07-26 15:14:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.50/31
2026-07-26 15:14:21 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.52/30
2026-07-26 15:14:22 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.56/31
2026-07-26 15:14:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.58/32
2026-07-26 15:14:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.100/31
2026-07-26 15:14:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.110/31
2026-07-26 15:14:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.122/32
2026-07-26 15:14:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.126/31
2026-07-26 15:14:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.145/32
2026-07-26 15:14:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.122.254/32
2026-07-26 15:14:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.123.80/28
2026-07-26 15:14:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.124.64/27
2026-07-26 15:14:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.125.40/32
2026-07-26 15:14:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.127.40/31
2026-07-26 15:14:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.127.160/27
2026-07-26 15:14:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.127.208/29
2026-07-26 15:14:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 62.128.112.0/20 (AS 3327) for MaxMind entry 62.128.127.224/27
2026-07-26 15:14:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 64.28.40.0/23 has no prefixes in BGP
2026-07-26 15:14:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 64.188.78.0/24 has an exact match 64.188.78.0/24 (AS 209693) in BGP
2026-07-26 15:14:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 64.188.82.0/24 has an exact match 64.188.82.0/24 (AS 209693) in BGP
2026-07-26 15:14:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 69.174.0.0/17 (AS 3257) for MaxMind entry 69.174.98.0/23
2026-07-26 15:14:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 74.80.71.0/24 has an exact match 74.80.71.0/24 (AS 42) in BGP
2026-07-26 15:14:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 74.118.126.0/24 (AS 9009) for MaxMind entry 74.118.126.52/30
2026-07-26 15:14:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.72.85.0/24 has an exact match 77.72.85.0/24 (AS 62005) in BGP
2026-07-26 15:14:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 77.77.128.0/18 (AS 3257) for MaxMind entry 77.77.168.152/29
2026-07-26 15:14:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 77.77.128.0/18 (AS 3257) for MaxMind entry 77.77.185.72/29
2026-07-26 15:14:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.83.28.0/22 has an exact match 77.83.28.0/22 (AS 34702) in BGP
2026-07-26 15:14:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.83.198.0/24 has an exact match 77.83.198.0/24 (AS 59711) in BGP
2026-07-26 15:14:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.233.64.0/19 has an exact match 77.233.64.0/19 (AS 1257) in BGP
2026-07-26 15:14:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.233.64.0/19 has more specific match 77.233.95.0/24 (AS 1257) in BGP
2026-07-26 15:14:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.239.126.0/24 has an exact match 77.239.126.0/24 (AS 209693) in BGP
2026-07-26 15:14:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.240.240.0/22 has an exact match 77.240.240.0/22 (AS 42300) in BGP
2026-07-26 15:14:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.240.240.0/22 has more specific match 77.240.240.0/24 (AS 42300) in BGP
2026-07-26 15:14:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.240.240.0/22 has more specific match 77.240.241.0/24 (AS 42300) in BGP
2026-07-26 15:14:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.240.240.0/22 has more specific match 77.240.242.0/24 (AS 42300) in BGP
2026-07-26 15:14:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.240.240.0/22 has more specific match 77.240.243.0/24 (AS 42300) in BGP
2026-07-26 15:14:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.247.108.0/24 has no prefixes in BGP
2026-07-26 15:14:59 +0300 - [get_unique_bgp_routes] - INFO - Processed 150/1641 prefixes...
2026-07-26 15:15:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.247.110.0/23 has more specific match 77.247.110.0/24 (AS 60528) in BGP
2026-07-26 15:15:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.247.110.0/23 has more specific match 77.247.111.0/24 (AS 3920) in BGP
2026-07-26 15:15:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 77.247.110.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:15:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 78.24.192.0/21 has an exact match 78.24.192.0/21 (AS 43682) in BGP
2026-07-26 15:15:21 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API Connection/Timeout error for 78.28.64.0/18. Retrying...
2026-07-26 15:15:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 78.28.64.0/18 has an exact match 78.28.64.0/18 (AS 1257) in BGP
2026-07-26 15:15:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 78.110.32.0/20 has more specific match 78.110.36.0/22 (AS 3249) in BGP
2026-07-26 15:15:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 78.110.32.0/20 has more specific match 78.110.40.0/22 (AS 3249) in BGP
2026-07-26 15:15:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 78.110.32.0/20 has more specific match 78.110.44.0/22 (AS 198776) in BGP
2026-07-26 15:15:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 78.110.32.0/20 has more specific match 78.110.35.0/24 (AS 215447) in BGP
2026-07-26 15:15:46 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API Connection/Timeout error for 80.66.198.0/24. Retrying...
2026-07-26 15:15:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.66.198.0/24 has an exact match 80.66.198.0/24 (AS 43357) in BGP
2026-07-26 15:15:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.66.240.0/20 has an exact match 80.66.240.0/20 (AS 204595) in BGP
2026-07-26 15:15:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.77.25.0/24 has an exact match 80.77.25.0/24 (AS 207408) in BGP
2026-07-26 15:15:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.79.112.0/20 has an exact match 80.79.112.0/20 (AS 34702) in BGP
2026-07-26 15:15:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.235.0.0/17 has an exact match 80.235.0.0/17 (AS 3249) in BGP
2026-07-26 15:15:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 80.239.192.0/19 (AS 1299) for MaxMind entry 80.239.212.16/28
2026-07-26 15:16:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.250.112.0/20 has more specific match 80.250.112.0/21 (AS 39038) in BGP
2026-07-26 15:16:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.250.112.0/20 has more specific match 80.250.120.0/22 (AS 206844) in BGP
2026-07-26 15:16:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.250.112.0/20 has more specific match 80.250.124.0/23 (AS 39038) in BGP
2026-07-26 15:16:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.250.112.0/20 has more specific match 80.250.120.0/24 (AS 206844) in BGP
2026-07-26 15:16:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.250.112.0/20 has more specific match 80.250.121.0/24 (AS 206844) in BGP
2026-07-26 15:16:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.250.112.0/20 has more specific match 80.250.122.0/24 (AS 206844) in BGP
2026-07-26 15:16:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.250.112.0/20 has more specific match 80.250.123.0/24 (AS 206844) in BGP
2026-07-26 15:16:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.250.112.0/20 has more specific match 80.250.127.0/24 (AS 209798) in BGP
2026-07-26 15:16:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.252.116.0/24 has no prefixes in BGP
2026-07-26 15:16:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 80.252.118.0/24 has no prefixes in BGP
2026-07-26 15:16:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 81.20.144.0/20 has an exact match 81.20.144.0/20 (AS 3249) in BGP
2026-07-26 15:16:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 81.21.240.0/20 has an exact match 81.21.240.0/20 (AS 1257) in BGP
2026-07-26 15:16:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 81.25.69.0/24 has an exact match 81.25.69.0/24 (AS 202376) in BGP
2026-07-26 15:16:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 81.25.240.0/20 has an exact match 81.25.240.0/20 (AS 51504) in BGP
2026-07-26 15:16:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 81.90.112.0/20 has an exact match 81.90.112.0/20 (AS 2586) in BGP
2026-07-26 15:16:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.39.111.0/24 has an exact match 82.39.111.0/24 (AS 214132) in BGP
2026-07-26 15:16:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.128.0/21 has more specific match 82.116.128.0/24 (AS 43937) in BGP
2026-07-26 15:16:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.128.0/21 has more specific match 82.116.129.0/24 (AS 43937) in BGP
2026-07-26 15:16:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.128.0/21 has more specific match 82.116.130.0/24 (AS 43937) in BGP
2026-07-26 15:16:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.128.0/21 has more specific match 82.116.131.0/24 (AS 43937) in BGP
2026-07-26 15:16:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.128.0/21 has more specific match 82.116.132.0/24 (AS 43937) in BGP
2026-07-26 15:16:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.128.0/21 has more specific match 82.116.133.0/24 (AS 43937) in BGP
2026-07-26 15:16:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.128.0/21 has more specific match 82.116.134.0/24 (AS 43937) in BGP
2026-07-26 15:16:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.128.0/21 has more specific match 82.116.135.0/24 (AS 43937) in BGP
2026-07-26 15:16:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.128.0/21 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:16:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.136.0/22 has more specific match 82.116.136.0/24 (AS 43937) in BGP
2026-07-26 15:16:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.136.0/22 has more specific match 82.116.138.0/24 (AS 43937) in BGP
2026-07-26 15:16:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.136.0/22 has more specific match 82.116.139.0/24 (AS 43937) in BGP
2026-07-26 15:16:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.141.0/24 has an exact match 82.116.141.0/24 (AS 43937) in BGP
2026-07-26 15:16:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.142.0/23 has more specific match 82.116.142.0/24 (AS 43937) in BGP
2026-07-26 15:16:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.142.0/23 has more specific match 82.116.143.0/24 (AS 43937) in BGP
2026-07-26 15:16:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.142.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.144.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.145.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.146.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.147.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.148.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.149.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.150.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.151.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.152.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.153.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.154.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.156.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.157.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.158.0/24 (AS 43937) in BGP
2026-07-26 15:16:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.116.144.0/20 has more specific match 82.116.159.0/24 (AS 43937) in BGP
2026-07-26 15:16:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.131.0.0/17 has an exact match 82.131.0.0/17 (AS 2586) in BGP
2026-07-26 15:16:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 82.147.160.0/19 has an exact match 82.147.160.0/19 (AS 8728) in BGP
2026-07-26 15:16:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 83.166.32.0/19 has an exact match 83.166.32.0/19 (AS 3249) in BGP
2026-07-26 15:16:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 83.172.139.0/24 has an exact match 83.172.139.0/24 (AS 202759) in BGP
2026-07-26 15:16:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 83.176.0.0/19 has an exact match 83.176.0.0/19 (AS 1257) in BGP
2026-07-26 15:16:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 83.176.0.0/12 (AS 1257) for MaxMind entry 83.178.58.0/23
2026-07-26 15:16:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 83.179.128.0/19 has an exact match 83.179.128.0/19 (AS 1257) in BGP
2026-07-26 15:16:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 83.180.0.0/19 has an exact match 83.180.0.0/19 (AS 1257) in BGP
2026-07-26 15:16:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 83.176.0.0/12 (AS 1257) for MaxMind entry 83.187.128.0/20
2026-07-26 15:16:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 83.176.0.0/12 (AS 1257) for MaxMind entry 83.187.148.0/22
2026-07-26 15:16:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 83.176.0.0/12 (AS 1257) for MaxMind entry 83.187.152.0/21
2026-07-26 15:16:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 83.187.192.0/19 has more specific match 83.187.208.0/20 (AS 1257) in BGP
2026-07-26 15:16:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 83.176.0.0/12 (AS 1257) for MaxMind entry 83.187.192.0/19
2026-07-26 15:16:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 83.176.0.0/12 (AS 1257) for MaxMind entry 83.191.192.0/18
2026-07-26 15:16:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 83.217.210.0/24 has an exact match 83.217.210.0/24 (AS 41745) in BGP
2026-07-26 15:16:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 83.241.128.0/17 (AS 12552) for MaxMind entry 83.241.174.168/29
2026-07-26 15:16:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 84.19.128.0/20 (AS 49419) for MaxMind entry 84.19.140.155/32
2026-07-26 15:16:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 84.32.210.0/24 has an exact match 84.32.210.0/24 (AS 200017) in BGP
2026-07-26 15:16:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 84.39.116.0/24 (AS 9009) for MaxMind entry 84.39.116.8/29
2026-07-26 15:16:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 84.50.0.0/16 has an exact match 84.50.0.0/16 (AS 3249) in BGP
2026-07-26 15:16:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 84.52.0.0/18 has an exact match 84.52.0.0/18 (AS 8728) in BGP
2026-07-26 15:16:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 84.246.194.0/23 has no prefixes in BGP
2026-07-26 15:16:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 84.247.19.0/24 has an exact match 84.247.19.0/24 (AS 3920) in BGP
2026-07-26 15:16:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.29.192.0/18 has an exact match 85.29.192.0/18 (AS 3249) in BGP
2026-07-26 15:16:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.89.32.0/19 has an exact match 85.89.32.0/19 (AS 198632) in BGP
2026-07-26 15:16:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.92.119.0/24 has an exact match 85.92.119.0/24 (AS 210671) in BGP
2026-07-26 15:16:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.115.204.0/22 has no prefixes in BGP
2026-07-26 15:16:56 +0300 - [get_unique_bgp_routes] - INFO - Processed 200/1641 prefixes...
2026-07-26 15:16:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.0.0/21 has more specific match 85.153.1.0/24 (AS 31365) in BGP
2026-07-26 15:16:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.0.0/21 has more specific match 85.153.2.0/24 (AS 31365) in BGP
2026-07-26 15:16:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.0.0/21 has more specific match 85.153.3.0/24 (AS 31365) in BGP
2026-07-26 15:16:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.0.0/21 has more specific match 85.153.5.0/24 (AS 31365) in BGP
2026-07-26 15:16:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.8.0/23 has no prefixes in BGP
2026-07-26 15:16:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.10.0/24 has an exact match 85.153.10.0/24 (AS 31365) in BGP
2026-07-26 15:17:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.12.0/22 has no prefixes in BGP
2026-07-26 15:17:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.16.0/20 has no prefixes in BGP
2026-07-26 15:17:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.32.0/19 has more specific match 85.153.33.0/24 (AS 31365) in BGP
2026-07-26 15:17:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.32.0/19 has more specific match 85.153.43.0/24 (AS 31365) in BGP
2026-07-26 15:17:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.32.0/19 has more specific match 85.153.58.0/24 (AS 31365) in BGP
2026-07-26 15:17:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.64.0/22 has more specific match 85.153.64.0/24 (AS 201128) in BGP
2026-07-26 15:17:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.72.0/21 has no prefixes in BGP
2026-07-26 15:17:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.80.0/20 has no prefixes in BGP
2026-07-26 15:17:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.96.0/21 has no prefixes in BGP
2026-07-26 15:17:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.104.0/22 has no prefixes in BGP
2026-07-26 15:17:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.112.0/24 has no prefixes in BGP
2026-07-26 15:17:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.114.0/23 has no prefixes in BGP
2026-07-26 15:17:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.116.0/22 has no prefixes in BGP
2026-07-26 15:17:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.153.120.0/21 has no prefixes in BGP
2026-07-26 15:17:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.190.239.0/24 has an exact match 85.190.239.0/24 (AS 207137) in BGP
2026-07-26 15:17:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.194.200.0/22 has an exact match 85.194.200.0/22 (AS 61189) in BGP
2026-07-26 15:17:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.194.200.0/22 has more specific match 85.194.200.0/23 (AS 61189) in BGP
2026-07-26 15:17:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.194.200.0/22 has more specific match 85.194.202.0/23 (AS 61189) in BGP
2026-07-26 15:17:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.196.192.0/18 has an exact match 85.196.192.0/18 (AS 61307) in BGP
2026-07-26 15:17:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.196.192.0/18 has more specific match 85.196.192.0/19 (AS 61307) in BGP
2026-07-26 15:17:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.196.192.0/18 has more specific match 85.196.224.0/19 (AS 61307) in BGP
2026-07-26 15:17:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.222.232.0/22 has an exact match 85.222.232.0/22 (AS 49604) in BGP
2026-07-26 15:17:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.234.244.0/22 has more specific match 85.234.244.0/23 (AS 49604) in BGP
2026-07-26 15:17:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.234.244.0/22 has more specific match 85.234.246.0/23 (AS 49604) in BGP
2026-07-26 15:17:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.234.244.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:17:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.253.0.0/16 has an exact match 85.253.0.0/16 (AS 2586) in BGP
2026-07-26 15:17:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 85.254.13.0/24 has an exact match 85.254.13.0/24 (AS 199527) in BGP
2026-07-26 15:17:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 85.254.182.0/24 (AS 48798) for MaxMind entry 85.254.182.67/32
2026-07-26 15:17:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.32.0/22 has more specific match 86.110.32.0/24 (AS 202635) in BGP
2026-07-26 15:17:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.32.0/22 has more specific match 86.110.35.0/24 (AS 202635) in BGP
2026-07-26 15:17:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.38.0/23 has more specific match 86.110.38.0/24 (AS 202635) in BGP
2026-07-26 15:17:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.38.0/23 has more specific match 86.110.39.0/24 (AS 202635) in BGP
2026-07-26 15:17:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.38.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:17:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.40.0/22 has more specific match 86.110.40.0/24 (AS 202656) in BGP
2026-07-26 15:17:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.40.0/22 has more specific match 86.110.41.0/24 (AS 202656) in BGP
2026-07-26 15:17:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.40.0/22 has more specific match 86.110.42.0/24 (AS 20473) in BGP
2026-07-26 15:17:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.40.0/22 has more specific match 86.110.43.0/24 (AS 202635) in BGP
2026-07-26 15:17:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.40.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:17:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.45.0/24 has an exact match 86.110.45.0/24 (AS 202635) in BGP
2026-07-26 15:17:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.46.0/24 has no prefixes in BGP
2026-07-26 15:17:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.48.0/23 has more specific match 86.110.48.0/24 (AS 42831) in BGP
2026-07-26 15:17:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.48.0/23 has more specific match 86.110.49.0/24 (AS 20473) in BGP
2026-07-26 15:17:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.48.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:17:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.50.0/24 has an exact match 86.110.50.0/24 (AS 42831) in BGP
2026-07-26 15:17:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.53.0/24 has no prefixes in BGP
2026-07-26 15:17:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.54.0/23 has more specific match 86.110.54.0/24 (AS 42831) in BGP
2026-07-26 15:17:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.54.0/23 has more specific match 86.110.55.0/24 (AS 42831) in BGP
2026-07-26 15:17:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.54.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:17:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.56.0/24 has an exact match 86.110.56.0/24 (AS 212238) in BGP
2026-07-26 15:17:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.58.0/23 has more specific match 86.110.59.0/24 (AS 42831) in BGP
2026-07-26 15:17:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 86.110.62.0/23 has more specific match 86.110.62.0/24 (AS 29802) in BGP
2026-07-26 15:17:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.0.0/18 (AS 3327) for MaxMind entry 87.98.2.80/29
2026-07-26 15:17:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.0.0/18 (AS 3327) for MaxMind entry 87.98.2.240/28
2026-07-26 15:17:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.0.0/18 (AS 3327) for MaxMind entry 87.98.5.0/24
2026-07-26 15:17:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.0.0/18 (AS 3327) for MaxMind entry 87.98.32.128/28
2026-07-26 15:17:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.0.0/18 (AS 3327) for MaxMind entry 87.98.32.144/29
2026-07-26 15:17:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.0.0/18 (AS 3327) for MaxMind entry 87.98.33.0/24
2026-07-26 15:17:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.0.0/18 (AS 3327) for MaxMind entry 87.98.36.0/23
2026-07-26 15:17:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.0.0/18 (AS 3327) for MaxMind entry 87.98.39.124/30
2026-07-26 15:17:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.64.0/19 (AS 3327) for MaxMind entry 87.98.93.104/29
2026-07-26 15:17:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.64.0/19 (AS 3327) for MaxMind entry 87.98.94.112/29
2026-07-26 15:17:58 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.98.64.0/19 (AS 3327) for MaxMind entry 87.98.95.208/29
2026-07-26 15:17:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.119.64.0/18 (AS 3257) for MaxMind entry 87.119.125.56/29
2026-07-26 15:18:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 87.119.160.0/19 has an exact match 87.119.160.0/19 (AS 2586) in BGP
2026-07-26 15:18:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 87.121.86.0/24 has an exact match 87.121.86.0/24 (AS 209693) in BGP
2026-07-26 15:18:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 87.245.208.0/21 (AS 9002) for MaxMind entry 87.245.211.128/25
2026-07-26 15:18:04 +0300 - [get_unique_bgp_routes] - INFO - Processed 250/1641 prefixes...
2026-07-26 15:18:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 87.251.19.0/24 has an exact match 87.251.19.0/24 (AS 209693) in BGP
2026-07-26 15:18:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 88.196.0.0/16 has an exact match 88.196.0.0/16 (AS 3249) in BGP
2026-07-26 15:18:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 88.214.21.0/24 has an exact match 88.214.21.0/24 (AS 43357) in BGP
2026-07-26 15:18:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.22.193.0/24 has an exact match 89.22.193.0/24 (AS 214790) in BGP
2026-07-26 15:18:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.36.21.0/24 has no prefixes in BGP
2026-07-26 15:18:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.40.104.0/24 has an exact match 89.40.104.0/24 (AS 202759) in BGP
2026-07-26 15:18:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.42.118.0/23 has an exact match 89.42.118.0/23 (AS 204595) in BGP
2026-07-26 15:18:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.117.164.0/24 has an exact match 89.117.164.0/24 (AS 200017) in BGP
2026-07-26 15:18:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.125.13.0/24 has an exact match 89.125.13.0/24 (AS 213702) in BGP
2026-07-26 15:18:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.150.40.0/24 has an exact match 89.150.40.0/24 (AS 59711) in BGP
2026-07-26 15:18:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.169.15.0/24 has an exact match 89.169.15.0/24 (AS 41745) in BGP
2026-07-26 15:18:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.128.16/30
2026-07-26 15:18:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.128.24/29
2026-07-26 15:18:26 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.128.40/30
2026-07-26 15:18:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.128.64/27
2026-07-26 15:18:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.128.116/30
2026-07-26 15:18:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.128.128/25
2026-07-26 15:18:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.129.128/27
2026-07-26 15:18:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.129.176/28
2026-07-26 15:18:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.130.160/29
2026-07-26 15:18:34 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.130.176/29
2026-07-26 15:18:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.128.0/22 (AS 3327) for MaxMind entry 89.219.131.32/28
2026-07-26 15:18:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.134.0/23 (AS 3327) for MaxMind entry 89.219.134.0/24
2026-07-26 15:18:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.136.64/29
2026-07-26 15:18:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.136.80/28
2026-07-26 15:18:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.137.128/28
2026-07-26 15:18:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.138.96/27
2026-07-26 15:18:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.138.196/30
2026-07-26 15:18:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.139.0/25
2026-07-26 15:18:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.139.144/29
2026-07-26 15:18:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.139.156/30
2026-07-26 15:18:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.139.224/30
2026-07-26 15:18:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.139.240/29
2026-07-26 15:18:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.140.96/28
2026-07-26 15:18:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.140.136/29
2026-07-26 15:18:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.140.144/28
2026-07-26 15:18:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.140.172/30
2026-07-26 15:18:52 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.140.248/29
2026-07-26 15:18:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.141.156/30
2026-07-26 15:18:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.142.0/24
2026-07-26 15:18:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.143.40/29
2026-07-26 15:18:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.143.96/28
2026-07-26 15:18:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.136.0/21 (AS 3327) for MaxMind entry 89.219.143.216/29
2026-07-26 15:18:58 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.144.32/29
2026-07-26 15:19:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.144.168/29
2026-07-26 15:19:01 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.145.84/30
2026-07-26 15:19:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.146.16/29
2026-07-26 15:19:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.147.32/29
2026-07-26 15:19:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.147.184/29
2026-07-26 15:19:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.148.96/28
2026-07-26 15:19:05 +0300 - [get_unique_bgp_routes] - INFO - Processed 300/1641 prefixes...
2026-07-26 15:19:06 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.149.0/29
2026-07-26 15:19:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.150.16/28
2026-07-26 15:19:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.150.100/30
2026-07-26 15:19:10 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.144.0/21 (AS 3327) for MaxMind entry 89.219.150.144/28
2026-07-26 15:19:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.152.0/23 (AS 3327) for MaxMind entry 89.219.152.96/27
2026-07-26 15:19:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.152.0/23 (AS 3327) for MaxMind entry 89.219.152.224/29
2026-07-26 15:19:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.152.0/23 (AS 3327) for MaxMind entry 89.219.153.0/27
2026-07-26 15:19:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.152.0/23 (AS 3327) for MaxMind entry 89.219.153.64/27
2026-07-26 15:19:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.152.0/23 (AS 3327) for MaxMind entry 89.219.153.108/30
2026-07-26 15:19:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.152.0/23 (AS 3327) for MaxMind entry 89.219.153.120/29
2026-07-26 15:19:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.152.0/23 (AS 3327) for MaxMind entry 89.219.153.144/30
2026-07-26 15:19:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 89.219.154.0/24 (AS 3327) for MaxMind entry 89.219.154.192/26
2026-07-26 15:19:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.221.64.0/20 has more specific match 89.221.64.0/21 (AS 3249) in BGP
2026-07-26 15:19:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 89.235.192.0/18 has an exact match 89.235.192.0/18 (AS 8728) in BGP
2026-07-26 15:19:22 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 90.128.0.0/12 (AS 1257) for MaxMind entry 90.130.28.0/23
2026-07-26 15:19:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 90.128.0.0/12 (AS 1257) for MaxMind entry 90.130.32.0/20
2026-07-26 15:19:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 90.130.74.0/24 (AS 1257) for MaxMind entry 90.130.74.115/32
2026-07-26 15:19:26 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 90.128.0.0/12 (AS 1257) for MaxMind entry 90.130.128.0/21
2026-07-26 15:19:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 90.128.0.0/12 (AS 1257) for MaxMind entry 90.137.132.0/23
2026-07-26 15:19:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 90.190.0.0/15 has an exact match 90.190.0.0/15 (AS 3249) in BGP
2026-07-26 15:19:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.95.0.0/16 has an exact match 91.95.0.0/16 (AS 1257) in BGP
2026-07-26 15:19:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.102.122.0/24 has no prefixes in BGP
2026-07-26 15:19:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.129.0.0/17 has more specific match 91.129.64.0/19 (AS 1257) in BGP
2026-07-26 15:19:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 91.128.0.0/14 (AS 1257) for MaxMind entry 91.129.0.0/17
2026-07-26 15:19:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.131.0.0/17 has an exact match 91.131.0.0/17 (AS 1257) in BGP
2026-07-26 15:19:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.146.64.0/19 has an exact match 91.146.64.0/19 (AS 198966) in BGP
2026-07-26 15:19:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.192.116.0/22 has an exact match 91.192.116.0/22 (AS 47143) in BGP
2026-07-26 15:19:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.192.116.0/22 has more specific match 91.192.118.0/24 (AS 47143) in BGP
2026-07-26 15:19:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.192.116.0/22 has more specific match 91.192.119.0/24 (AS 47143) in BGP
2026-07-26 15:19:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.193.254.0/24 has an exact match 91.193.254.0/24 (AS 42689) in BGP
2026-07-26 15:19:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.195.246.0/23 has an exact match 91.195.246.0/23 (AS 43958) in BGP
2026-07-26 15:19:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.195.252.0/23 has an exact match 91.195.252.0/23 (AS 43993) in BGP
2026-07-26 15:19:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.195.252.0/23 has more specific match 91.195.252.0/24 (AS 43993) in BGP
2026-07-26 15:19:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.195.252.0/23 has more specific match 91.195.253.0/24 (AS 43993) in BGP
2026-07-26 15:19:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.198.206.0/24 has an exact match 91.198.206.0/24 (AS 43881) in BGP
2026-07-26 15:19:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.203.29.0/24 has an exact match 91.203.29.0/24 (AS 44929) in BGP
2026-07-26 15:19:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.205.96.0/22 has more specific match 91.205.96.0/24 (AS 47143) in BGP
2026-07-26 15:19:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.205.96.0/22 has more specific match 91.205.97.0/24 (AS 47143) in BGP
2026-07-26 15:19:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.205.96.0/22 has more specific match 91.205.99.0/24 (AS 47143) in BGP
2026-07-26 15:19:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.208.15.0/24 has an exact match 91.208.15.0/24 (AS 47525) in BGP
2026-07-26 15:19:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.208.26.0/24 has an exact match 91.208.26.0/24 (AS 39632) in BGP
2026-07-26 15:19:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.213.43.0/24 has an exact match 91.213.43.0/24 (AS 2586) in BGP
2026-07-26 15:19:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.213.126.0/24 has an exact match 91.213.126.0/24 (AS 396982) in BGP
2026-07-26 15:19:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.216.86.0/24 has an exact match 91.216.86.0/24 (AS 197060) in BGP
2026-07-26 15:19:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.217.50.0/24 has an exact match 91.217.50.0/24 (AS 202480) in BGP
2026-07-26 15:20:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.217.240.0/24 has an exact match 91.217.240.0/24 (AS 213172) in BGP
2026-07-26 15:20:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.223.243.0/24 has an exact match 91.223.243.0/24 (AS 206714) in BGP
2026-07-26 15:20:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.224.188.0/23 has an exact match 91.224.188.0/23 (AS 197611) in BGP
2026-07-26 15:20:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.228.215.0/24 has an exact match 91.228.215.0/24 (AS 62240) in BGP
2026-07-26 15:20:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.234.233.0/24 has an exact match 91.234.233.0/24 (AS 211451) in BGP
2026-07-26 15:20:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.235.234.0/24 has an exact match 91.235.234.0/24 (AS 62005) in BGP
2026-07-26 15:20:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.236.38.0/23 has more specific match 91.236.38.0/24 (AS 198379) in BGP
2026-07-26 15:20:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.236.38.0/23 has more specific match 91.236.39.0/24 (AS 198379) in BGP
2026-07-26 15:20:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.236.38.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:21:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.236.44.0/24 has an exact match 91.236.44.0/24 (AS 198379) in BGP
2026-07-26 15:21:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.236.201.0/24 has no prefixes in BGP
2026-07-26 15:21:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 91.236.222.0/24 has an exact match 91.236.222.0/24 (AS 3249) in BGP
2026-07-26 15:21:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 92.62.96.0/20 has an exact match 92.62.96.0/20 (AS 39823) in BGP
2026-07-26 15:21:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.89.211.0/24 has an exact match 93.89.211.0/24 (AS 62005) in BGP
2026-07-26 15:21:35 +0300 - [get_unique_bgp_routes] - INFO - Processed 350/1641 prefixes...
2026-07-26 15:21:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.89.215.0/24 has an exact match 93.89.215.0/24 (AS 25369) in BGP
2026-07-26 15:21:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.89.216.0/23 has more specific match 93.89.216.0/24 (AS 206715) in BGP
2026-07-26 15:21:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.89.218.0/24 has an exact match 93.89.218.0/24 (AS 202759) in BGP
2026-07-26 15:21:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.113.98.0/24 has an exact match 93.113.98.0/24 (AS 202759) in BGP
2026-07-26 15:21:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.113.214.0/24 has an exact match 93.113.214.0/24 (AS 202759) in BGP
2026-07-26 15:21:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.123.39.0/24 has an exact match 93.123.39.0/24 (AS 213702) in BGP
2026-07-26 15:21:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.185.240.0/20 has an exact match 93.185.240.0/20 (AS 61307) in BGP
2026-07-26 15:21:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.185.240.0/20 has more specific match 93.185.240.0/21 (AS 61307) in BGP
2026-07-26 15:21:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.185.240.0/20 has more specific match 93.185.248.0/21 (AS 61307) in BGP
2026-07-26 15:21:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 93.188.182.0/23 has no prefixes in BGP
2026-07-26 15:21:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 94.23.0.0/16 (AS 16276) for MaxMind entry 94.23.190.128/30
2026-07-26 15:21:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.126.224.0/24 has an exact match 94.126.224.0/24 (AS 59711) in BGP
2026-07-26 15:21:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.154.144.0/22 has an exact match 94.154.144.0/22 (AS 209842) in BGP
2026-07-26 15:21:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.156.236.0/24 has an exact match 94.156.236.0/24 (AS 41745) in BGP
2026-07-26 15:21:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.177.25.0/24 has an exact match 94.177.25.0/24 (AS 201601) in BGP
2026-07-26 15:21:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.183.170.0/24 has an exact match 94.183.170.0/24 (AS 212743) in BGP
2026-07-26 15:21:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.183.205.0/24 has an exact match 94.183.205.0/24 (AS 213915) in BGP
2026-07-26 15:22:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.183.239.0/24 has an exact match 94.183.239.0/24 (AS 212743) in BGP
2026-07-26 15:22:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.145.0/24 has an exact match 94.190.145.0/24 (AS 43937) in BGP
2026-07-26 15:22:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.146.0/23 has more specific match 94.190.146.0/24 (AS 43937) in BGP
2026-07-26 15:22:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.146.0/23 has more specific match 94.190.147.0/24 (AS 43937) in BGP
2026-07-26 15:22:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.146.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:22:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.148.0/22 has more specific match 94.190.148.0/24 (AS 43937) in BGP
2026-07-26 15:22:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.148.0/22 has more specific match 94.190.149.0/24 (AS 43937) in BGP
2026-07-26 15:22:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.148.0/22 has more specific match 94.190.150.0/24 (AS 43937) in BGP
2026-07-26 15:22:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.148.0/22 has more specific match 94.190.151.0/24 (AS 43937) in BGP
2026-07-26 15:22:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.148.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:22:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.152.0/21 has more specific match 94.190.152.0/24 (AS 43937) in BGP
2026-07-26 15:22:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.152.0/21 has more specific match 94.190.153.0/24 (AS 43937) in BGP
2026-07-26 15:22:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.152.0/21 has more specific match 94.190.154.0/24 (AS 43937) in BGP
2026-07-26 15:22:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.152.0/21 has more specific match 94.190.155.0/24 (AS 43937) in BGP
2026-07-26 15:22:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.152.0/21 has more specific match 94.190.156.0/24 (AS 43937) in BGP
2026-07-26 15:22:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.152.0/21 has more specific match 94.190.157.0/24 (AS 43937) in BGP
2026-07-26 15:22:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.152.0/21 has more specific match 94.190.158.0/24 (AS 43937) in BGP
2026-07-26 15:22:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.152.0/21 has more specific match 94.190.159.0/24 (AS 43937) in BGP
2026-07-26 15:22:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.190.152.0/21 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:22:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.232.28.0/23 has more specific match 94.232.28.0/24 (AS 16255) in BGP
2026-07-26 15:22:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.232.28.0/23 has more specific match 94.232.29.0/24 (AS 16255) in BGP
2026-07-26 15:22:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.232.28.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:22:26 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API Connection/Timeout error for 94.232.240.0/22. Retrying...
2026-07-26 15:22:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.232.240.0/22 has more specific match 94.232.243.0/24 (AS 207819) in BGP
2026-07-26 15:22:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 94.246.64.0/18 (AS 12552) for MaxMind entry 94.246.79.240/30
2026-07-26 15:22:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.246.192.0/18 has more specific match 94.246.224.0/19 (AS 2586) in BGP
2026-07-26 15:22:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.246.192.0/18 has more specific match 94.246.192.0/20 (AS 3249) in BGP
2026-07-26 15:22:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.246.192.0/18 has more specific match 94.246.208.0/21 (AS 3249) in BGP
2026-07-26 15:22:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.246.192.0/18 has more specific match 94.246.216.0/21 (AS 2586) in BGP
2026-07-26 15:22:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 94.246.192.0/18 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:22:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.47.173.0/24 has an exact match 95.47.173.0/24 (AS 204671) in BGP
2026-07-26 15:22:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.47.236.0/24 has an exact match 95.47.236.0/24 (AS 204671) in BGP
2026-07-26 15:22:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.85.224.0/24 has an exact match 95.85.224.0/24 (AS 209693) in BGP
2026-07-26 15:22:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.85.242.0/23 has more specific match 95.85.242.0/24 (AS 209693) in BGP
2026-07-26 15:22:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.85.242.0/23 has more specific match 95.85.243.0/24 (AS 209693) in BGP
2026-07-26 15:22:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.85.242.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:22:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.85.245.0/24 has an exact match 95.85.245.0/24 (AS 209693) in BGP
2026-07-26 15:22:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.85.249.0/24 has an exact match 95.85.249.0/24 (AS 209693) in BGP
2026-07-26 15:22:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.129.192.0/21 has an exact match 95.129.192.0/21 (AS 2586) in BGP
2026-07-26 15:22:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.143.111.0/24 has an exact match 95.143.111.0/24 (AS 213459) in BGP
2026-07-26 15:22:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.153.0.0/18 has an exact match 95.153.0.0/18 (AS 1257) in BGP
2026-07-26 15:22:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.156.206.0/24 has an exact match 95.156.206.0/24 (AS 202759) in BGP
2026-07-26 15:22:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 95.210.0.0/16 (AS 29286) for MaxMind entry 95.210.164.0/23
2026-07-26 15:22:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.210.220.0/24 has an exact match 95.210.220.0/24 (AS 29286) in BGP
2026-07-26 15:23:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 95.210.0.0/16 (AS 29286) for MaxMind entry 95.210.226.0/24
2026-07-26 15:23:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 95.215.132.0/22 has an exact match 95.215.132.0/22 (AS 197289) in BGP
2026-07-26 15:23:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 102.38.253.0/24 has an exact match 102.38.253.0/24 (AS 9009) in BGP
2026-07-26 15:23:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.3.224.0/22 has an exact match 103.3.224.0/22 (AS 203020) in BGP
2026-07-26 15:23:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.76.255.0/24 has an exact match 103.76.255.0/24 (AS 203020) in BGP
2026-07-26 15:23:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.88.42.0/24 has an exact match 103.88.42.0/24 (AS 3920) in BGP
2026-07-26 15:23:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.145.75.0/24 has an exact match 103.145.75.0/24 (AS 203020) in BGP
2026-07-26 15:23:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.149.97.0/24 has an exact match 103.149.97.0/24 (AS 203020) in BGP
2026-07-26 15:23:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.220.220.0/22 has more specific match 103.220.220.0/24 (AS 43937) in BGP
2026-07-26 15:23:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.220.220.0/22 has more specific match 103.220.221.0/24 (AS 43937) in BGP
2026-07-26 15:23:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.220.220.0/22 has more specific match 103.220.222.0/24 (AS 43937) in BGP
2026-07-26 15:23:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.220.220.0/22 has more specific match 103.220.223.0/24 (AS 43937) in BGP
2026-07-26 15:23:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.220.220.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:23:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.245.116.0/22 has more specific match 103.245.116.0/24 (AS 43937) in BGP
2026-07-26 15:23:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.245.116.0/22 has more specific match 103.245.117.0/24 (AS 43937) in BGP
2026-07-26 15:23:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.245.116.0/22 has more specific match 103.245.118.0/24 (AS 43937) in BGP
2026-07-26 15:23:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.245.116.0/22 has more specific match 103.245.119.0/24 (AS 43937) in BGP
2026-07-26 15:23:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 103.245.116.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:23:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.9.0/24 (AS 13335) for MaxMind entry 104.28.9.158/31
2026-07-26 15:23:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.9.0/24 (AS 13335) for MaxMind entry 104.28.9.160/32
2026-07-26 15:23:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.31.0/24 (AS 13335) for MaxMind entry 104.28.31.11/32
2026-07-26 15:23:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.31.0/24 (AS 13335) for MaxMind entry 104.28.31.12/32
2026-07-26 15:23:19 +0300 - [get_unique_bgp_routes] - INFO - Processed 400/1641 prefixes...
2026-07-26 15:23:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.45.0/24 (AS 13335) for MaxMind entry 104.28.45.8/31
2026-07-26 15:23:21 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.65.0/24 (AS 13335) for MaxMind entry 104.28.65.11/32
2026-07-26 15:23:22 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.65.0/24 (AS 13335) for MaxMind entry 104.28.65.12/32
2026-07-26 15:23:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.105.0/24 (AS 13335) for MaxMind entry 104.28.105.4/31
2026-07-26 15:23:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.131.0/24 (AS 13335) for MaxMind entry 104.28.131.28/31
2026-07-26 15:23:26 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.139.0/24 (AS 13335) for MaxMind entry 104.28.139.115/32
2026-07-26 15:23:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.139.0/24 (AS 13335) for MaxMind entry 104.28.139.150/32
2026-07-26 15:23:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.148.0/24 (AS 13335) for MaxMind entry 104.28.148.89/32
2026-07-26 15:23:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.156.0/24 (AS 13335) for MaxMind entry 104.28.156.89/32
2026-07-26 15:23:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.157.0/24 (AS 13335) for MaxMind entry 104.28.157.89/32
2026-07-26 15:23:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.159.0/24 (AS 13335) for MaxMind entry 104.28.159.72/32
2026-07-26 15:23:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.169.0/24 (AS 13335) for MaxMind entry 104.28.169.117/32
2026-07-26 15:23:34 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.169.0/24 (AS 13335) for MaxMind entry 104.28.169.118/31
2026-07-26 15:23:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.169.0/24 (AS 13335) for MaxMind entry 104.28.169.120/31
2026-07-26 15:23:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.201.0/24 (AS 13335) for MaxMind entry 104.28.201.136/30
2026-07-26 15:23:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.201.0/24 (AS 13335) for MaxMind entry 104.28.201.140/32
2026-07-26 15:23:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.233.0/24 (AS 13335) for MaxMind entry 104.28.233.136/30
2026-07-26 15:23:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.28.233.0/24 (AS 13335) for MaxMind entry 104.28.233.140/32
2026-07-26 15:23:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.135.0/24 (AS 13335) for MaxMind entry 104.30.135.105/32
2026-07-26 15:23:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.135.0/24 (AS 13335) for MaxMind entry 104.30.135.122/32
2026-07-26 15:23:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.160.180/32
2026-07-26 15:23:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.161.35/32
2026-07-26 15:23:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.161.49/32
2026-07-26 15:23:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.161.251/32
2026-07-26 15:23:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.165.171/32
2026-07-26 15:23:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.167.246/32
2026-07-26 15:23:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.169.217/32
2026-07-26 15:23:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.171.62/32
2026-07-26 15:23:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.174.217/32
2026-07-26 15:23:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.160.0/20 (AS 13335) for MaxMind entry 104.30.174.226/32
2026-07-26 15:23:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 104.30.176.0/20 (AS 13335) for MaxMind entry 104.30.176.78/32
2026-07-26 15:23:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 104.160.16.0/24 has an exact match 104.160.16.0/24 (AS 58065) in BGP
2026-07-26 15:23:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 108.165.21.0/24 has an exact match 108.165.21.0/24 (AS 214623) in BGP
2026-07-26 15:23:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 108.175.100.0/23 has more specific match 108.175.100.0/24 (AS 198632) in BGP
2026-07-26 15:23:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 108.175.100.0/23 has more specific match 108.175.101.0/24 (AS 198632) in BGP
2026-07-26 15:23:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 108.175.100.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:24:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 109.94.209.0/24 has an exact match 109.94.209.0/24 (AS 202376) in BGP
2026-07-26 15:24:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 109.107.128.0/24 has no prefixes in BGP
2026-07-26 15:24:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 109.163.248.0/21 has an exact match 109.163.248.0/21 (AS 2586) in BGP
2026-07-26 15:24:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 109.206.241.0/24 has an exact match 109.206.241.0/24 (AS 41745) in BGP
2026-07-26 15:24:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 109.235.240.0/21 has an exact match 109.235.240.0/21 (AS 8728) in BGP
2026-07-26 15:24:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 114.129.9.0/24 has an exact match 114.129.9.0/24 (AS 34702) in BGP
2026-07-26 15:24:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 130.255.160.0/21 (AS 12552) for MaxMind entry 130.255.160.228/30
2026-07-26 15:24:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 132.243.64.0/20 has more specific match 132.243.68.0/22 (AS 6939) in BGP
2026-07-26 15:24:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 132.243.64.0/20 has more specific match 132.243.76.0/22 (AS 15083) in BGP
2026-07-26 15:24:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 132.243.64.0/20 has more specific match 132.243.65.0/24 (AS 213702) in BGP
2026-07-26 15:24:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 132.243.168.0/24 has an exact match 132.243.168.0/24 (AS 62005) in BGP
2026-07-26 15:24:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 136.228.197.0/24 (AS 202276) for MaxMind entry 136.228.197.241/32
2026-07-26 15:24:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 136.228.197.0/24 (AS 202276) for MaxMind entry 136.228.197.242/31
2026-07-26 15:24:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 138.0.240.0/22 (AS 264850) for MaxMind entry 138.0.241.0/24
2026-07-26 15:24:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.124.4.0/24 has an exact match 138.124.4.0/24 (AS 41745) in BGP
2026-07-26 15:24:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.124.100.0/24 has an exact match 138.124.100.0/24 (AS 207567) in BGP
2026-07-26 15:24:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.249.37.0/24 has an exact match 138.249.37.0/24 (AS 44559) in BGP
2026-07-26 15:24:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.249.56.0/24 has an exact match 138.249.56.0/24 (AS 44559) in BGP
2026-07-26 15:24:21 +0300 - [get_unique_bgp_routes] - INFO - Processed 450/1641 prefixes...
2026-07-26 15:24:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.249.75.0/24 has an exact match 138.249.75.0/24 (AS 44559) in BGP
2026-07-26 15:24:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.249.90.0/24 has an exact match 138.249.90.0/24 (AS 44559) in BGP
2026-07-26 15:24:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.249.128.0/24 has an exact match 138.249.128.0/24 (AS 44559) in BGP
2026-07-26 15:24:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.249.161.0/24 has an exact match 138.249.161.0/24 (AS 44559) in BGP
2026-07-26 15:24:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.249.194.0/24 has an exact match 138.249.194.0/24 (AS 44559) in BGP
2026-07-26 15:24:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 138.249.228.0/24 has an exact match 138.249.228.0/24 (AS 44559) in BGP
2026-07-26 15:24:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 139.45.192.0/19 (AS 9002) for MaxMind entry 139.45.204.0/24
2026-07-26 15:24:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 140.99.188.0/24 has an exact match 140.99.188.0/24 (AS 59711) in BGP
2026-07-26 15:24:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 140.99.192.0/24 has an exact match 140.99.192.0/24 (AS 59711) in BGP
2026-07-26 15:24:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 140.99.195.0/24 has an exact match 140.99.195.0/24 (AS 59711) in BGP
2026-07-26 15:24:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 140.99.198.0/24 has an exact match 140.99.198.0/24 (AS 59711) in BGP
2026-07-26 15:24:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 140.99.201.0/24 has an exact match 140.99.201.0/24 (AS 59711) in BGP
2026-07-26 15:24:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 140.99.204.0/24 has an exact match 140.99.204.0/24 (AS 59711) in BGP
2026-07-26 15:24:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 140.233.182.0/24 has an exact match 140.233.182.0/24 (AS 213476) in BGP
2026-07-26 15:24:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.34.0/23 (AS 54113) for MaxMind entry 140.248.34.72/30
2026-07-26 15:24:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.36.0/23 (AS 54113) for MaxMind entry 140.248.36.98/31
2026-07-26 15:24:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.36.0/23 (AS 54113) for MaxMind entry 140.248.36.100/31
2026-07-26 15:24:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.56.0/24 (AS 54113) for MaxMind entry 140.248.56.63/32
2026-07-26 15:24:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.57.0/24 (AS 54113) for MaxMind entry 140.248.57.63/32
2026-07-26 15:24:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.58.0/24 (AS 54113) for MaxMind entry 140.248.58.63/32
2026-07-26 15:24:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.59.0/24 (AS 54113) for MaxMind entry 140.248.59.63/32
2026-07-26 15:24:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.60.0/24 (AS 54113) for MaxMind entry 140.248.60.63/32
2026-07-26 15:24:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.61.0/24 (AS 54113) for MaxMind entry 140.248.61.63/32
2026-07-26 15:24:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.62.0/24 (AS 54113) for MaxMind entry 140.248.62.63/32
2026-07-26 15:24:52 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 140.248.63.0/24 (AS 54113) for MaxMind entry 140.248.63.63/32
2026-07-26 15:24:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 141.8.128.0/18 (AS 208398) for MaxMind entry 141.8.147.136/29
2026-07-26 15:24:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 141.8.128.0/18 (AS 13238) for MaxMind entry 141.8.147.136/29
2026-07-26 15:24:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 141.105.138.0/24 has an exact match 141.105.138.0/24 (AS 48964) in BGP
2026-07-26 15:24:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 141.105.140.0/24 has an exact match 141.105.140.0/24 (AS 202759) in BGP
2026-07-26 15:24:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 141.105.143.0/24 has an exact match 141.105.143.0/24 (AS 57043) in BGP
2026-07-26 15:24:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 144.31.128.0/23 (AS 215730) for MaxMind entry 144.31.129.192/27
2026-07-26 15:25:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 144.31.170.0/24 has an exact match 144.31.170.0/24 (AS 209693) in BGP
2026-07-26 15:25:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 145.14.16.0/20 has an exact match 145.14.16.0/20 (AS 2586) in BGP
2026-07-26 15:25:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 145.14.32.0/20 has an exact match 145.14.32.0/20 (AS 2586) in BGP
2026-07-26 15:25:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.80.0/31 has no prefixes in BGP
2026-07-26 15:25:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.80.3/32 has no prefixes in BGP
2026-07-26 15:25:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.80.4/30 has no prefixes in BGP
2026-07-26 15:25:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.80.8/29 has no prefixes in BGP
2026-07-26 15:25:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.80.16/28 has no prefixes in BGP
2026-07-26 15:25:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.80.32/27 has no prefixes in BGP
2026-07-26 15:25:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.80.64/26 has no prefixes in BGP
2026-07-26 15:25:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.80.128/25 has no prefixes in BGP
2026-07-26 15:25:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.143.0/24 has an exact match 146.19.143.0/24 (AS 62005) in BGP
2026-07-26 15:25:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.185.0/24 has an exact match 146.19.185.0/24 (AS 62005) in BGP
2026-07-26 15:25:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.19.194.0/24 has no prefixes in BGP
2026-07-26 15:25:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 146.75.169.0/24 (AS 54113) for MaxMind entry 146.75.169.72/30
2026-07-26 15:25:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 146.255.176.0/21 has an exact match 146.255.176.0/21 (AS 2586) in BGP
2026-07-26 15:25:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 147.28.2.0/23 has no prefixes in BGP
2026-07-26 15:25:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 147.28.4.0/22 has no prefixes in BGP
2026-07-26 15:25:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 147.28.8.0/21 has more specific match 147.28.11.0/24 (AS 9434) in BGP
2026-07-26 15:25:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 147.75.147.0/24 has an exact match 147.75.147.0/24 (AS 60664) in BGP
2026-07-26 15:25:23 +0300 - [get_unique_bgp_routes] - INFO - Processed 500/1641 prefixes...
2026-07-26 15:25:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.5.209.0/24 has an exact match 149.5.209.0/24 (AS 202376) in BGP
2026-07-26 15:25:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.5.210.0/23 has more specific match 149.5.210.0/24 (AS 202376) in BGP
2026-07-26 15:25:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.5.210.0/23 has more specific match 149.5.211.0/24 (AS 202376) in BGP
2026-07-26 15:25:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.5.210.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:25:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.5.212.0/24 has an exact match 149.5.212.0/24 (AS 209153) in BGP
2026-07-26 15:25:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.5.214.0/23 has more specific match 149.5.214.0/24 (AS 201601) in BGP
2026-07-26 15:25:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.5.214.0/23 has more specific match 149.5.215.0/24 (AS 209153) in BGP
2026-07-26 15:25:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.5.214.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:25:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.0/29
2026-07-26 15:25:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.8/30
2026-07-26 15:25:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.14/31
2026-07-26 15:25:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.16/30
2026-07-26 15:25:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.22/31
2026-07-26 15:25:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.24/29
2026-07-26 15:25:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.32/28
2026-07-26 15:25:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.48/29
2026-07-26 15:25:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.64/28
2026-07-26 15:25:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.88/29
2026-07-26 15:25:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.96/29
2026-07-26 15:25:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.112/29
2026-07-26 15:25:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.128/29
2026-07-26 15:25:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.146/31
2026-07-26 15:25:52 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.150/31
2026-07-26 15:25:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 149.6.0.0/15 (AS 174) for MaxMind entry 149.6.188.184/29
2026-07-26 15:25:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.13.64.0/24 has an exact match 149.13.64.0/24 (AS 214623) in BGP
2026-07-26 15:25:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 149.87.144.0/24 has an exact match 149.87.144.0/24 (AS 197537) in BGP
2026-07-26 15:26:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 150.251.34.0/24 has an exact match 150.251.34.0/24 (AS 219436) in BGP
2026-07-26 15:26:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 150.251.131.0/24 has an exact match 150.251.131.0/24 (AS 205563) in BGP
2026-07-26 15:26:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 151.241.102.0/24 has an exact match 151.241.102.0/24 (AS 399073) in BGP
2026-07-26 15:26:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 152.55.221.0/24 has an exact match 152.55.221.0/24 (AS 37027) in BGP
2026-07-26 15:26:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 153.56.171.0/24 has an exact match 153.56.171.0/24 (AS 210734) in BGP
2026-07-26 15:26:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 153.72.160.0/19 (AS 396982) for MaxMind entry 153.72.170.0/23
2026-07-26 15:26:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 153.92.181.0/24 (AS 201341) for MaxMind entry 153.92.181.128/26
2026-07-26 15:26:10 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 154.14.0.0/16 (AS 3257) for MaxMind entry 154.14.6.176/29
2026-07-26 15:26:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 154.14.0.0/16 (AS 3257) for MaxMind entry 154.14.224.72/29
2026-07-26 15:26:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 154.14.0.0/16 (AS 3257) for MaxMind entry 154.14.230.216/29
2026-07-26 15:26:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 154.14.0.0/16 (AS 3257) for MaxMind entry 154.14.231.120/29
2026-07-26 15:26:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 154.14.0.0/16 (AS 3257) for MaxMind entry 154.14.231.144/29
2026-07-26 15:26:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 154.14.0.0/16 (AS 3257) for MaxMind entry 154.14.240.184/30
2026-07-26 15:26:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 154.50.208.0/24 (AS 12372) for MaxMind entry 154.50.208.27/32
2026-07-26 15:26:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 154.59.224.0/22 has more specific match 154.59.224.0/24 (AS 209153) in BGP
2026-07-26 15:26:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 154.59.224.0/22 has more specific match 154.59.225.0/24 (AS 199144) in BGP
2026-07-26 15:26:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 154.59.224.0/22 has more specific match 154.59.226.0/24 (AS 209153) in BGP
2026-07-26 15:26:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 154.59.224.0/22 has more specific match 154.59.227.0/24 (AS 209153) in BGP
2026-07-26 15:26:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 154.59.224.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:26:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 154.218.26.0/24 has an exact match 154.218.26.0/24 (AS 202656) in BGP
2026-07-26 15:26:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 154.218.28.0/24 has an exact match 154.218.28.0/24 (AS 202656) in BGP
2026-07-26 15:26:22 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 155.2.160.0/20 (AS 198335) for MaxMind entry 155.2.162.240/29
2026-07-26 15:26:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 155.2.160.0/20 (AS 198335) for MaxMind entry 155.2.166.240/29
2026-07-26 15:26:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 155.2.168.0/22 (AS 198335) for MaxMind entry 155.2.170.240/29
2026-07-26 15:26:26 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 155.2.160.0/20 (AS 198335) for MaxMind entry 155.2.174.240/29
2026-07-26 15:26:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 155.117.226.0/24 has an exact match 155.117.226.0/24 (AS 399073) in BGP
2026-07-26 15:26:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 157.167.49.0/24 has an exact match 157.167.49.0/24 (AS 44444) in BGP
2026-07-26 15:26:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.228.0/24 (AS 16509) for MaxMind entry 157.167.228.31/32
2026-07-26 15:26:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.228.0/24 (AS 16509) for MaxMind entry 157.167.228.32/32
2026-07-26 15:26:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.228.0/24 (AS 16509) for MaxMind entry 157.167.228.146/32
2026-07-26 15:26:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.229.0/24 (AS 16509) for MaxMind entry 157.167.229.31/32
2026-07-26 15:26:34 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.229.0/24 (AS 16509) for MaxMind entry 157.167.229.32/32
2026-07-26 15:26:34 +0300 - [get_unique_bgp_routes] - INFO - Processed 550/1641 prefixes...
2026-07-26 15:26:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.229.0/24 (AS 16509) for MaxMind entry 157.167.229.146/32
2026-07-26 15:26:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.230.0/24 (AS 16509) for MaxMind entry 157.167.230.31/32
2026-07-26 15:26:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.230.0/24 (AS 16509) for MaxMind entry 157.167.230.32/32
2026-07-26 15:26:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.230.0/24 (AS 16509) for MaxMind entry 157.167.230.146/32
2026-07-26 15:26:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.231.0/24 (AS 16509) for MaxMind entry 157.167.231.59/32
2026-07-26 15:26:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.231.0/24 (AS 16509) for MaxMind entry 157.167.231.60/32
2026-07-26 15:26:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.231.0/24 (AS 16509) for MaxMind entry 157.167.231.198/32
2026-07-26 15:26:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.237.0/24 (AS 16509) for MaxMind entry 157.167.237.31/32
2026-07-26 15:26:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.237.0/24 (AS 16509) for MaxMind entry 157.167.237.32/32
2026-07-26 15:26:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.237.0/24 (AS 16509) for MaxMind entry 157.167.237.146/32
2026-07-26 15:26:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.238.0/24 (AS 16509) for MaxMind entry 157.167.238.31/32
2026-07-26 15:26:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.238.0/24 (AS 16509) for MaxMind entry 157.167.238.32/32
2026-07-26 15:26:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.238.0/24 (AS 16509) for MaxMind entry 157.167.238.146/32
2026-07-26 15:26:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.239.0/24 (AS 16509) for MaxMind entry 157.167.239.31/32
2026-07-26 15:26:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.239.0/24 (AS 16509) for MaxMind entry 157.167.239.32/32
2026-07-26 15:26:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.239.0/24 (AS 16509) for MaxMind entry 157.167.239.146/32
2026-07-26 15:26:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.240.0/24 (AS 16509) for MaxMind entry 157.167.240.31/32
2026-07-26 15:26:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.240.0/24 (AS 16509) for MaxMind entry 157.167.240.32/32
2026-07-26 15:26:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 157.167.240.0/24 (AS 16509) for MaxMind entry 157.167.240.146/32
2026-07-26 15:26:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 158.173.75.0/24 has an exact match 158.173.75.0/24 (AS 206804) in BGP
2026-07-26 15:27:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 159.117.235.0/24 (AS 13150) for MaxMind entry 159.117.235.32/27
2026-07-26 15:27:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 159.253.16.0/21 has an exact match 159.253.16.0/21 (AS 198068) in BGP
2026-07-26 15:27:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 159.253.16.0/21 has more specific match 159.253.16.0/24 (AS 198068) in BGP
2026-07-26 15:27:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 159.253.16.0/21 has more specific match 159.253.17.0/24 (AS 198068) in BGP
2026-07-26 15:27:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 159.253.16.0/21 has more specific match 159.253.18.0/24 (AS 198068) in BGP
2026-07-26 15:27:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 159.253.16.0/21 has more specific match 159.253.19.0/24 (AS 198068) in BGP
2026-07-26 15:27:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 159.253.16.0/21 has more specific match 159.253.20.0/24 (AS 198068) in BGP
2026-07-26 15:27:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 159.253.16.0/21 has more specific match 159.253.21.0/24 (AS 198068) in BGP
2026-07-26 15:27:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 159.253.16.0/21 has more specific match 159.253.22.0/24 (AS 198068) in BGP
2026-07-26 15:27:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 159.253.16.0/21 has more specific match 159.253.23.0/24 (AS 198068) in BGP
2026-07-26 15:27:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 160.22.180.0/23 (AS 142108) for MaxMind entry 160.22.180.0/24
2026-07-26 15:27:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 160.25.104.0/24 (AS 208223) for MaxMind entry 160.25.104.113/32
2026-07-26 15:27:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 160.25.105.0/24 (AS 208223) for MaxMind entry 160.25.105.113/32
2026-07-26 15:27:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 160.238.116.0/22 has no prefixes in BGP
2026-07-26 15:27:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 161.123.194.0/24 has an exact match 161.123.194.0/24 (AS 133499) in BGP
2026-07-26 15:27:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 162.120.128.0/17 (AS 15169) for MaxMind entry 162.120.215.130/32
2026-07-26 15:27:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 162.120.128.0/17 (AS 15169) for MaxMind entry 162.120.215.180/30
2026-07-26 15:27:10 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 162.120.128.0/17 (AS 15169) for MaxMind entry 162.120.216.33/32
2026-07-26 15:27:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 162.120.128.0/17 (AS 15169) for MaxMind entry 162.120.216.240/30
2026-07-26 15:27:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.166.0/24 (AS 55256) for MaxMind entry 163.116.166.90/32
2026-07-26 15:27:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.166.0/24 (AS 55256) for MaxMind entry 163.116.166.109/32
2026-07-26 15:27:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.168.0/24 (AS 55256) for MaxMind entry 163.116.168.91/32
2026-07-26 15:27:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.168.0/24 (AS 55256) for MaxMind entry 163.116.168.97/32
2026-07-26 15:27:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.173.0/24 (AS 55256) for MaxMind entry 163.116.173.117/32
2026-07-26 15:27:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.173.0/24 (AS 55256) for MaxMind entry 163.116.173.124/32
2026-07-26 15:27:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.181.0/24 (AS 55256) for MaxMind entry 163.116.181.95/32
2026-07-26 15:27:21 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.181.0/24 (AS 55256) for MaxMind entry 163.116.181.102/32
2026-07-26 15:27:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.189.0/24 (AS 55256) for MaxMind entry 163.116.189.108/31
2026-07-26 15:27:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.246.0/24 (AS 55256) for MaxMind entry 163.116.246.97/32
2026-07-26 15:27:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 163.116.246.0/24 (AS 55256) for MaxMind entry 163.116.246.98/32
2026-07-26 15:27:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 164.137.80.0/24 has an exact match 164.137.80.0/24 (AS 62044) in BGP
2026-07-26 15:27:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 164.137.201.0/24 has an exact match 164.137.201.0/24 (AS 62044) in BGP
2026-07-26 15:27:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.141.0/24 has an exact match 165.231.141.0/24 (AS 58065) in BGP
2026-07-26 15:27:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.143.0/24 has an exact match 165.231.143.0/24 (AS 57858) in BGP
2026-07-26 15:27:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.161.0/24 has an exact match 165.231.161.0/24 (AS 58065) in BGP
2026-07-26 15:27:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.162.0/23 has more specific match 165.231.162.0/24 (AS 58065) in BGP
2026-07-26 15:27:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.162.0/23 has more specific match 165.231.163.0/24 (AS 58065) in BGP
2026-07-26 15:27:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.162.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:27:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.164.0/23 has more specific match 165.231.164.0/24 (AS 58065) in BGP
2026-07-26 15:27:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.164.0/23 has more specific match 165.231.165.0/24 (AS 58065) in BGP
2026-07-26 15:27:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.164.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:27:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.171.0/24 has an exact match 165.231.171.0/24 (AS 58065) in BGP
2026-07-26 15:27:38 +0300 - [get_unique_bgp_routes] - INFO - Processed 600/1641 prefixes...
2026-07-26 15:27:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.172.0/22 has more specific match 165.231.172.0/24 (AS 58065) in BGP
2026-07-26 15:27:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.172.0/22 has more specific match 165.231.173.0/24 (AS 58065) in BGP
2026-07-26 15:27:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.172.0/22 has more specific match 165.231.174.0/24 (AS 58065) in BGP
2026-07-26 15:27:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.172.0/22 has more specific match 165.231.175.0/24 (AS 58065) in BGP
2026-07-26 15:27:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.172.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:27:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 165.231.0.0/16 (AS 37518) for MaxMind entry 165.231.176.0/24
2026-07-26 15:27:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.178.0/24 has an exact match 165.231.178.0/24 (AS 58065) in BGP
2026-07-26 15:27:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.180.0/22 has more specific match 165.231.180.0/24 (AS 58065) in BGP
2026-07-26 15:27:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.180.0/22 has more specific match 165.231.181.0/24 (AS 58065) in BGP
2026-07-26 15:27:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.180.0/22 has more specific match 165.231.182.0/24 (AS 58065) in BGP
2026-07-26 15:27:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.180.0/22 has more specific match 165.231.183.0/24 (AS 58065) in BGP
2026-07-26 15:27:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.180.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:27:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.184.0/22 has more specific match 165.231.184.0/24 (AS 58065) in BGP
2026-07-26 15:27:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.184.0/22 has more specific match 165.231.185.0/24 (AS 58065) in BGP
2026-07-26 15:27:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.184.0/22 has more specific match 165.231.186.0/24 (AS 58065) in BGP
2026-07-26 15:27:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.184.0/22 has more specific match 165.231.187.0/24 (AS 58065) in BGP
2026-07-26 15:27:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.184.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:27:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.190.0/23 has more specific match 165.231.190.0/24 (AS 58065) in BGP
2026-07-26 15:27:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.190.0/23 has more specific match 165.231.191.0/24 (AS 58065) in BGP
2026-07-26 15:27:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.190.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:27:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.193.0/24 has an exact match 165.231.193.0/24 (AS 58065) in BGP
2026-07-26 15:27:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.194.0/23 has more specific match 165.231.195.0/24 (AS 58065) in BGP
2026-07-26 15:27:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 165.231.0.0/16 (AS 37518) for MaxMind entry 165.231.194.0/23
2026-07-26 15:27:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.197.0/24 has an exact match 165.231.197.0/24 (AS 58065) in BGP
2026-07-26 15:27:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.198.0/23 has more specific match 165.231.198.0/24 (AS 58065) in BGP
2026-07-26 15:27:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.198.0/23 has more specific match 165.231.199.0/24 (AS 58065) in BGP
2026-07-26 15:27:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.198.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:27:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.200.0/24 has an exact match 165.231.200.0/24 (AS 58065) in BGP
2026-07-26 15:27:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 165.231.202.0/24 has an exact match 165.231.202.0/24 (AS 58065) in BGP
2026-07-26 15:27:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 167.104.64.0/19 has more specific match 167.104.64.0/21 (AS 202225) in BGP
2026-07-26 15:27:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 168.90.196.0/22 (AS 264850) for MaxMind entry 168.90.198.0/24
2026-07-26 15:27:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 171.22.244.0/22 has an exact match 171.22.244.0/22 (AS 3221) in BGP
2026-07-26 15:27:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 171.22.244.0/22 has more specific match 171.22.246.0/23 (AS 206844) in BGP
2026-07-26 15:27:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 171.22.244.0/22 has more specific match 171.22.244.0/24 (AS 206844) in BGP
2026-07-26 15:27:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 171.22.244.0/22 has more specific match 171.22.245.0/24 (AS 206844) in BGP
2026-07-26 15:27:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 172.69.136.0/24 has an exact match 172.69.136.0/24 (AS 13335) in BGP
2026-07-26 15:28:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 172.225.34.0/24 (AS 36183) for MaxMind entry 172.225.34.48/28
2026-07-26 15:28:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 172.225.70.0/24 (AS 36183) for MaxMind entry 172.225.70.64/27
2026-07-26 15:28:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 172.224.0.0/12 (AS 20940) for MaxMind entry 172.225.182.0/27
2026-07-26 15:28:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 172.225.210.0/24 (AS 36183) for MaxMind entry 172.225.210.32/28
2026-07-26 15:28:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.46.0.0/17 has an exact match 176.46.0.0/17 (AS 3249) in BGP
2026-07-26 15:28:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.97.74.0/24 has an exact match 176.97.74.0/24 (AS 34702) in BGP
2026-07-26 15:28:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.112.144.0/20 has more specific match 176.112.144.0/22 (AS 201601) in BGP
2026-07-26 15:28:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.112.144.0/20 has more specific match 176.112.148.0/22 (AS 201601) in BGP
2026-07-26 15:28:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.112.144.0/20 has more specific match 176.112.156.0/22 (AS 201601) in BGP
2026-07-26 15:28:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.112.144.0/20 has more specific match 176.112.152.0/24 (AS 201601) in BGP
2026-07-26 15:28:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.112.144.0/20 has more specific match 176.112.153.0/24 (AS 201601) in BGP
2026-07-26 15:28:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.112.144.0/20 has more specific match 176.112.155.0/24 (AS 201601) in BGP
2026-07-26 15:28:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.113.69.0/24 has an exact match 176.113.69.0/24 (AS 43357) in BGP
2026-07-26 15:28:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.118.4.0/22 has an exact match 176.118.4.0/22 (AS 204595) in BGP
2026-07-26 15:28:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.118.167.0/24 has an exact match 176.118.167.0/24 (AS 202376) in BGP
2026-07-26 15:28:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.124.32.0/24 has an exact match 176.124.32.0/24 (AS 62005) in BGP
2026-07-26 15:28:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 176.124.247.0/24 has an exact match 176.124.247.0/24 (AS 12757) in BGP
2026-07-26 15:28:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.21.240.0/21 has an exact match 178.21.240.0/21 (AS 50794) in BGP
2026-07-26 15:28:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.23.112.0/21 has an exact match 178.23.112.0/21 (AS 2586) in BGP
2026-07-26 15:28:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.92.51.0/24 has an exact match 178.92.51.0/24 (AS 399073) in BGP
2026-07-26 15:28:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.92.53.0/24 has an exact match 178.92.53.0/24 (AS 399073) in BGP
2026-07-26 15:28:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.93.132.0/24 has an exact match 178.93.132.0/24 (AS 399073) in BGP
2026-07-26 15:28:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.171.42.0/23 has an exact match 178.171.42.0/23 (AS 209372) in BGP
2026-07-26 15:28:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.214.96.0/23 has more specific match 178.214.97.0/24 (AS 197313) in BGP
2026-07-26 15:28:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.214.99.0/24 has no prefixes in BGP
2026-07-26 15:28:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.214.100.0/22 has no prefixes in BGP
2026-07-26 15:28:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.214.104.0/21 has no prefixes in BGP
2026-07-26 15:28:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.214.112.0/20 has more specific match 178.214.120.0/24 (AS 47143) in BGP
2026-07-26 15:28:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.214.112.0/20 has more specific match 178.214.121.0/24 (AS 47143) in BGP
2026-07-26 15:28:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.214.112.0/20 has more specific match 178.214.126.0/24 (AS 25369) in BGP
2026-07-26 15:28:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.236.200.0/22 has more specific match 178.236.200.0/23 (AS 42300) in BGP
2026-07-26 15:28:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.236.200.0/22 has more specific match 178.236.200.0/24 (AS 42300) in BGP
2026-07-26 15:28:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.236.200.0/22 has more specific match 178.236.201.0/24 (AS 42300) in BGP
2026-07-26 15:28:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.236.200.0/22 has more specific match 178.236.202.0/24 (AS 42300) in BGP
2026-07-26 15:28:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.236.200.0/22 has more specific match 178.236.203.0/24 (AS 207872) in BGP
2026-07-26 15:28:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.236.200.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:28:36 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API HTTP 500 error for 178.248.136.0/21. Retrying...
2026-07-26 15:28:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.248.136.0/21 has an exact match 178.248.136.0/21 (AS 204595) in BGP
2026-07-26 15:28:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.251.56.0/21 has an exact match 178.251.56.0/21 (AS 2586) in BGP
2026-07-26 15:28:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 178.255.11.0/24 (AS 43937) for MaxMind entry 178.255.11.0/30
2026-07-26 15:28:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 178.255.11.0/24 (AS 43937) for MaxMind entry 178.255.11.4/31
2026-07-26 15:28:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 178.255.11.0/24 (AS 43937) for MaxMind entry 178.255.11.7/32
2026-07-26 15:28:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 178.255.11.0/24 (AS 43937) for MaxMind entry 178.255.11.8/29
2026-07-26 15:28:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 178.255.11.0/24 (AS 43937) for MaxMind entry 178.255.11.16/28
2026-07-26 15:28:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 178.255.11.0/24 (AS 43937) for MaxMind entry 178.255.11.32/27
2026-07-26 15:28:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 178.255.11.0/24 (AS 43937) for MaxMind entry 178.255.11.64/26
2026-07-26 15:28:55 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API HTTP 500 error for 178.255.11.128/25. Retrying...
2026-07-26 15:28:58 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 178.255.11.0/24 (AS 43937) for MaxMind entry 178.255.11.128/25
2026-07-26 15:28:58 +0300 - [get_unique_bgp_routes] - INFO - Processed 650/1641 prefixes...
2026-07-26 15:28:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.255.12.0/23 has more specific match 178.255.12.0/24 (AS 43937) in BGP
2026-07-26 15:28:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.255.12.0/23 has more specific match 178.255.13.0/24 (AS 43937) in BGP
2026-07-26 15:28:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 178.255.12.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has an exact match 181.114.240.0/20 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.240.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.241.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.242.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.243.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.244.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.245.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.246.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.247.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.248.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.249.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.250.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.251.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.252.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.253.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.254.0/24 (AS 198068) in BGP
2026-07-26 15:29:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 181.114.240.0/20 has more specific match 181.114.255.0/24 (AS 198068) in BGP
2026-07-26 15:29:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.1.235.0/24 has no prefixes in BGP
2026-07-26 15:29:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.4.72.0/23 has more specific match 185.4.72.0/24 (AS 198068) in BGP
2026-07-26 15:29:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.4.72.0/23 has more specific match 185.4.73.0/24 (AS 198068) in BGP
2026-07-26 15:29:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.4.72.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:29:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.4.74.0/24 has an exact match 185.4.74.0/24 (AS 198068) in BGP
2026-07-26 15:29:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.4.75.0/24 (AS 198068) for MaxMind entry 185.4.75.0/25
2026-07-26 15:29:06 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.4.75.0/24 (AS 198068) for MaxMind entry 185.4.75.128/26
2026-07-26 15:29:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.4.75.0/24 (AS 198068) for MaxMind entry 185.4.75.192/27
2026-07-26 15:29:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.4.75.0/24 (AS 198068) for MaxMind entry 185.4.75.224/29
2026-07-26 15:29:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.4.75.0/24 (AS 198068) for MaxMind entry 185.4.75.232/31
2026-07-26 15:29:10 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.4.75.0/24 (AS 198068) for MaxMind entry 185.4.75.234/32
2026-07-26 15:29:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.4.75.0/24 (AS 198068) for MaxMind entry 185.4.75.236/30
2026-07-26 15:29:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.4.75.0/24 (AS 198068) for MaxMind entry 185.4.75.240/28
2026-07-26 15:29:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.6.176.0/24 (AS 43937) for MaxMind entry 185.6.176.192/26
2026-07-26 15:29:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.6.179.0/24 has an exact match 185.6.179.0/24 (AS 43937) in BGP
2026-07-26 15:29:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.7.252.0/22 has an exact match 185.7.252.0/22 (AS 61189) in BGP
2026-07-26 15:29:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.7.252.0/22 has more specific match 185.7.252.0/23 (AS 61189) in BGP
2026-07-26 15:29:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.7.252.0/22 has more specific match 185.7.254.0/23 (AS 61189) in BGP
2026-07-26 15:29:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.12.236.0/22 has an exact match 185.12.236.0/22 (AS 39823) in BGP
2026-07-26 15:29:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.13.16.0/22 has an exact match 185.13.16.0/22 (AS 2586) in BGP
2026-07-26 15:29:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.14.216.0/22 has an exact match 185.14.216.0/22 (AS 57873) in BGP
2026-07-26 15:29:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.18.160.0/22 has no prefixes in BGP
2026-07-26 15:29:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.20.56.0/22 has an exact match 185.20.56.0/22 (AS 3249) in BGP
2026-07-26 15:29:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.20.100.0/22 has more specific match 185.20.101.0/24 (AS 199328) in BGP
2026-07-26 15:29:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.23.236.0/24 has an exact match 185.23.236.0/24 (AS 199144) in BGP
2026-07-26 15:29:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.28.120.0/22 has more specific match 185.28.120.0/24 (AS 60608) in BGP
2026-07-26 15:29:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.28.120.0/22 has more specific match 185.28.121.0/24 (AS 60608) in BGP
2026-07-26 15:29:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.31.9.0/24 has no prefixes in BGP
2026-07-26 15:29:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.31.92.0/22 has an exact match 185.31.92.0/22 (AS 60415) in BGP
2026-07-26 15:29:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.31.240.0/22 has an exact match 185.31.240.0/22 (AS 49604) in BGP
2026-07-26 15:29:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.34.36.0/22 has an exact match 185.34.36.0/22 (AS 2586) in BGP
2026-07-26 15:29:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.36.140.0/23 has an exact match 185.36.140.0/23 (AS 214790) in BGP
2026-07-26 15:29:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.36.140.0/23 has more specific match 185.36.140.0/24 (AS 214790) in BGP
2026-07-26 15:29:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.36.140.0/23 has more specific match 185.36.141.0/24 (AS 214790) in BGP
2026-07-26 15:29:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.36.142.0/24 has an exact match 185.36.142.0/24 (AS 214790) in BGP
2026-07-26 15:29:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.37.252.0/23 has more specific match 185.37.252.0/24 (AS 3214) in BGP
2026-07-26 15:29:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.37.252.0/23 has more specific match 185.37.253.0/24 (AS 3214) in BGP
2026-07-26 15:29:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.37.252.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:29:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.37.254.0/24 has no prefixes in BGP
2026-07-26 15:29:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.39.8.0/24 has an exact match 185.39.8.0/24 (AS 39486) in BGP
2026-07-26 15:29:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.39.10.0/24 has an exact match 185.39.10.0/24 (AS 16509) in BGP
2026-07-26 15:29:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.40.236.0/22 has an exact match 185.40.236.0/22 (AS 3249) in BGP
2026-07-26 15:29:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.43.104.0/22 has an exact match 185.43.104.0/22 (AS 3249) in BGP
2026-07-26 15:29:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.45.140.0/22 has an exact match 185.45.140.0/22 (AS 199800) in BGP
2026-07-26 15:29:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.46.20.0/22 has an exact match 185.46.20.0/22 (AS 34702) in BGP
2026-07-26 15:29:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.50.96.0/22 has more specific match 185.50.96.0/24 (AS 62024) in BGP
2026-07-26 15:29:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.50.96.0/22 has more specific match 185.50.97.0/24 (AS 62024) in BGP
2026-07-26 15:29:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.50.96.0/22 has more specific match 185.50.98.0/24 (AS 62024) in BGP
2026-07-26 15:29:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.50.96.0/22 has more specific match 185.50.99.0/24 (AS 203906) in BGP
2026-07-26 15:29:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.50.96.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:29:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.53.88.0/23 has more specific match 185.53.88.0/24 (AS 208673) in BGP
2026-07-26 15:29:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.53.88.0/23 has more specific match 185.53.89.0/24 (AS 208673) in BGP
2026-07-26 15:29:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.53.88.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:29:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.53.90.0/24 has an exact match 185.53.90.0/24 (AS 3920) in BGP
2026-07-26 15:29:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.55.48.0/22 has an exact match 185.55.48.0/22 (AS 202063) in BGP
2026-07-26 15:29:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.55.48.0/22 has more specific match 185.55.51.0/24 (AS 202063) in BGP
2026-07-26 15:29:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.59.32.0/22 has an exact match 185.59.32.0/22 (AS 201906) in BGP
2026-07-26 15:29:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.59.32.0/22 has more specific match 185.59.32.0/24 (AS 201906) in BGP
2026-07-26 15:29:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.59.32.0/22 has more specific match 185.59.33.0/24 (AS 201906) in BGP
2026-07-26 15:29:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.59.32.0/22 has more specific match 185.59.34.0/24 (AS 201906) in BGP
2026-07-26 15:29:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.59.32.0/22 has more specific match 185.59.35.0/24 (AS 201906) in BGP
2026-07-26 15:29:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.68.208.0/22 has more specific match 185.68.208.0/24 (AS 201601) in BGP
2026-07-26 15:29:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.68.208.0/22 has more specific match 185.68.209.0/24 (AS 201601) in BGP
2026-07-26 15:29:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.68.208.0/22 has more specific match 185.68.210.0/24 (AS 201601) in BGP
2026-07-26 15:29:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.68.208.0/22 has more specific match 185.68.211.0/24 (AS 201601) in BGP
2026-07-26 15:29:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.68.208.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:30:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.72.28.0/22 has an exact match 185.72.28.0/22 (AS 2586) in BGP
2026-07-26 15:30:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.73.68.0/22 has more specific match 185.73.68.0/24 (AS 59725) in BGP
2026-07-26 15:30:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.73.68.0/22 has more specific match 185.73.69.0/24 (AS 206919) in BGP
2026-07-26 15:30:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.73.124.0/23 has more specific match 185.73.124.0/24 (AS 210734) in BGP
2026-07-26 15:30:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.73.124.0/23 has more specific match 185.73.125.0/24 (AS 203545) in BGP
2026-07-26 15:30:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.73.124.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:30:23 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API Connection/Timeout error for 185.73.132.0/23. Retrying...
2026-07-26 15:30:45 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API Connection/Timeout error for 185.73.132.0/23. Retrying...
2026-07-26 15:30:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.73.132.0/23 has more specific match 185.73.132.0/24 (AS 62248) in BGP
2026-07-26 15:30:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.75.176.0/24 (AS 20648) for MaxMind entry 185.75.176.192/26
2026-07-26 15:30:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.78.44.0/22 has an exact match 185.78.44.0/22 (AS 47736) in BGP
2026-07-26 15:30:52 +0300 - [get_unique_bgp_routes] - INFO - Processed 700/1641 prefixes...
2026-07-26 15:30:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.82.154.0/24 has an exact match 185.82.154.0/24 (AS 198006) in BGP
2026-07-26 15:30:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.83.4.0/22 has more specific match 185.83.4.0/24 (AS 51349) in BGP
2026-07-26 15:30:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.86.211.0/24 has an exact match 185.86.211.0/24 (AS 216263) in BGP
2026-07-26 15:30:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.87.216.0/22 has more specific match 185.87.216.0/24 (AS 216408) in BGP
2026-07-26 15:30:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.87.216.0/22 has more specific match 185.87.218.0/24 (AS 16509) in BGP
2026-07-26 15:30:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.87.216.0/22 has more specific match 185.87.219.0/24 (AS 16509) in BGP
2026-07-26 15:31:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.88.37.0/24 has an exact match 185.88.37.0/24 (AS 41745) in BGP
2026-07-26 15:31:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.93.7.0/24 has an exact match 185.93.7.0/24 (AS 211494) in BGP
2026-07-26 15:31:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.93.33.0/24 has an exact match 185.93.33.0/24 (AS 202759) in BGP
2026-07-26 15:31:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.94.112.0/22 has more specific match 185.94.112.0/23 (AS 200804) in BGP
2026-07-26 15:31:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.94.112.0/22 has more specific match 185.94.114.0/23 (AS 200804) in BGP
2026-07-26 15:31:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.94.112.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:31:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.97.36.0/22 has more specific match 185.97.36.0/24 (AS 205346) in BGP
2026-07-26 15:31:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.97.148.0/23 has more specific match 185.97.148.0/24 (AS 62407) in BGP
2026-07-26 15:31:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.97.150.0/24 has an exact match 185.97.150.0/24 (AS 20948) in BGP
2026-07-26 15:31:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.97.248.0/22 has an exact match 185.97.248.0/22 (AS 61307) in BGP
2026-07-26 15:31:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.97.248.0/22 has more specific match 185.97.248.0/23 (AS 61307) in BGP
2026-07-26 15:31:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.97.248.0/22 has more specific match 185.97.250.0/23 (AS 61307) in BGP
2026-07-26 15:31:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.99.24.0/23 (AS 30967) for MaxMind entry 185.99.24.236/30
2026-07-26 15:31:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.99.26.0/23 (AS 30967) for MaxMind entry 185.99.26.236/30
2026-07-26 15:31:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.103.203.0/24 has no prefixes in BGP
2026-07-26 15:31:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.107.197.0/24 has an exact match 185.107.197.0/24 (AS 200425) in BGP
2026-07-26 15:31:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.111.27.0/24 has an exact match 185.111.27.0/24 (AS 62240) in BGP
2026-07-26 15:31:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.113.252.0/22 has more specific match 185.113.252.0/24 (AS 204072) in BGP
2026-07-26 15:31:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.114.116.0/24 has an exact match 185.114.116.0/24 (AS 34702) in BGP
2026-07-26 15:31:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.114.176.0/22 has an exact match 185.114.176.0/22 (AS 204595) in BGP
2026-07-26 15:31:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.116.88.0/22 has more specific match 185.116.88.0/23 (AS 214432) in BGP
2026-07-26 15:31:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.116.88.0/22 has more specific match 185.116.91.0/24 (AS 212980) in BGP
2026-07-26 15:31:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.117.64.0/22 has an exact match 185.117.64.0/22 (AS 198776) in BGP
2026-07-26 15:31:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.118.160.0/22 has no prefixes in BGP
2026-07-26 15:31:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.122.185.0/24 has an exact match 185.122.185.0/24 (AS 202759) in BGP
2026-07-26 15:31:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.123.53.0/24 has an exact match 185.123.53.0/24 (AS 62005) in BGP
2026-07-26 15:31:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.125.136.0/22 has no prefixes in BGP
2026-07-26 15:31:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.125.241.0/24 has an exact match 185.125.241.0/24 (AS 206844) in BGP
2026-07-26 15:31:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.129.16.0/23 has more specific match 185.129.16.0/24 (AS 202106) in BGP
2026-07-26 15:31:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.129.16.0/23 has more specific match 185.129.17.0/24 (AS 202106) in BGP
2026-07-26 15:31:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.129.16.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:31:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.137.99.0/24 has no prefixes in BGP
2026-07-26 15:31:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.139.252.0/22 has an exact match 185.139.252.0/22 (AS 203311) in BGP
2026-07-26 15:31:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.145.4.0/22 has an exact match 185.145.4.0/22 (AS 203081) in BGP
2026-07-26 15:31:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.147.120.0/22 has an exact match 185.147.120.0/22 (AS 203021) in BGP
2026-07-26 15:31:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.153.144.0/22 has an exact match 185.153.144.0/22 (AS 198966) in BGP
2026-07-26 15:31:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.154.220.0/22 has more specific match 185.154.220.0/24 (AS 207254) in BGP
2026-07-26 15:31:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.154.220.0/22 has more specific match 185.154.221.0/24 (AS 207254) in BGP
2026-07-26 15:31:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.154.220.0/22 has more specific match 185.154.222.0/24 (AS 207254) in BGP
2026-07-26 15:31:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.154.220.0/22 has more specific match 185.154.223.0/24 (AS 207254) in BGP
2026-07-26 15:31:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.154.220.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:31:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.155.96.0/22 has more specific match 185.155.96.0/24 (AS 202759) in BGP
2026-07-26 15:31:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.155.96.0/22 has more specific match 185.155.97.0/24 (AS 202759) in BGP
2026-07-26 15:31:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.155.96.0/22 has more specific match 185.155.98.0/24 (AS 202759) in BGP
2026-07-26 15:31:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.155.96.0/22 has more specific match 185.155.99.0/24 (AS 202759) in BGP
2026-07-26 15:31:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.155.96.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:31:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.155.222.0/23 has more specific match 185.155.222.0/24 (AS 202759) in BGP
2026-07-26 15:31:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.155.222.0/23 has more specific match 185.155.223.0/24 (AS 214132) in BGP
2026-07-26 15:31:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.155.222.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:31:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.155.252.0/22 has an exact match 185.155.252.0/22 (AS 197060) in BGP
2026-07-26 15:31:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.157.108.0/22 has an exact match 185.157.108.0/22 (AS 202652) in BGP
2026-07-26 15:31:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.158.176.0/22 has an exact match 185.158.176.0/22 (AS 202635) in BGP
2026-07-26 15:31:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.159.24.0/22 has no prefixes in BGP
2026-07-26 15:31:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.159.247.0/24 has an exact match 185.159.247.0/24 (AS 209242) in BGP
2026-07-26 15:31:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.161.84.0/22 has an exact match 185.161.84.0/22 (AS 8240) in BGP
2026-07-26 15:31:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.161.84.0/22 has more specific match 185.161.87.0/24 (AS 8240) in BGP
2026-07-26 15:31:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.161.249.0/24 has an exact match 185.161.249.0/24 (AS 201273) in BGP
2026-07-26 15:31:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.162.44.0/24 (AS 201341) for MaxMind entry 185.162.44.64/26
2026-07-26 15:31:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.166.87.0/24 (AS 203020) for MaxMind entry 185.166.87.164/30
2026-07-26 15:31:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.166.87.0/24 (AS 203020) for MaxMind entry 185.166.87.168/29
2026-07-26 15:31:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.166.87.0/24 (AS 203020) for MaxMind entry 185.166.87.176/28
2026-07-26 15:31:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.169.68.0/22 has an exact match 185.169.68.0/22 (AS 205930) in BGP
2026-07-26 15:31:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.170.59.0/24 has an exact match 185.170.59.0/24 (AS 214132) in BGP
2026-07-26 15:31:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.172.24.0/22 has an exact match 185.172.24.0/22 (AS 8240) in BGP
2026-07-26 15:31:58 +0300 - [get_unique_bgp_routes] - INFO - Processed 750/1641 prefixes...
2026-07-26 15:31:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.174.135.0/24 has an exact match 185.174.135.0/24 (AS 59711) in BGP
2026-07-26 15:32:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.174.159.0/24 has an exact match 185.174.159.0/24 (AS 203020) in BGP
2026-07-26 15:32:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.174.160.0/22 has more specific match 185.174.160.0/23 (AS 206844) in BGP
2026-07-26 15:32:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.174.160.0/22 has more specific match 185.174.162.0/23 (AS 206844) in BGP
2026-07-26 15:32:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.174.160.0/22 has more specific match 185.174.160.0/24 (AS 206844) in BGP
2026-07-26 15:32:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.174.160.0/22 has more specific match 185.174.161.0/24 (AS 206844) in BGP
2026-07-26 15:32:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.174.160.0/22 has more specific match 185.174.162.0/24 (AS 206844) in BGP
2026-07-26 15:32:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.174.160.0/22 has more specific match 185.174.163.0/24 (AS 206844) in BGP
2026-07-26 15:32:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.174.160.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:32:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.190.249.0/24 has an exact match 185.190.249.0/24 (AS 49191) in BGP
2026-07-26 15:32:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.191.16.0/22 has an exact match 185.191.16.0/22 (AS 196743) in BGP
2026-07-26 15:32:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.193.49.0/24 has an exact match 185.193.49.0/24 (AS 202759) in BGP
2026-07-26 15:32:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.193.60.0/22 has an exact match 185.193.60.0/22 (AS 202635) in BGP
2026-07-26 15:32:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.194.52.0/23 has more specific match 185.194.52.0/24 (AS 3214) in BGP
2026-07-26 15:32:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.194.52.0/23 has more specific match 185.194.53.0/24 (AS 3214) in BGP
2026-07-26 15:32:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.194.52.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:32:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.195.20.0/22 has an exact match 185.195.20.0/22 (AS 202652) in BGP
2026-07-26 15:32:10 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.196.208.0/22 (AS 206082) for MaxMind entry 185.196.210.4/30
2026-07-26 15:32:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 185.196.208.0/22 (AS 206082) for MaxMind entry 185.196.211.4/30
2026-07-26 15:32:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.200.68.0/22 has an exact match 185.200.68.0/22 (AS 8728) in BGP
2026-07-26 15:32:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.200.196.0/24 has an exact match 185.200.196.0/24 (AS 34702) in BGP
2026-07-26 15:32:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.204.153.0/24 has no prefixes in BGP
2026-07-26 15:32:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.209.96.0/22 has an exact match 185.209.96.0/22 (AS 47736) in BGP
2026-07-26 15:32:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.213.44.0/24 has an exact match 185.213.44.0/24 (AS 207872) in BGP
2026-07-26 15:32:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.215.184.0/22 has more specific match 185.215.184.0/24 (AS 202759) in BGP
2026-07-26 15:32:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.215.184.0/22 has more specific match 185.215.185.0/24 (AS 202759) in BGP
2026-07-26 15:32:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.215.184.0/22 has more specific match 185.215.186.0/24 (AS 202759) in BGP
2026-07-26 15:32:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.215.184.0/22 has more specific match 185.215.187.0/24 (AS 202759) in BGP
2026-07-26 15:32:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.215.184.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:32:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.216.44.0/24 has an exact match 185.216.44.0/24 (AS 205504) in BGP
2026-07-26 15:32:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.216.46.0/23 has more specific match 185.216.46.0/24 (AS 8892) in BGP
2026-07-26 15:32:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.219.88.0/24 has no prefixes in BGP
2026-07-26 15:32:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.220.132.0/22 has an exact match 185.220.132.0/22 (AS 198776) in BGP
2026-07-26 15:32:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.222.106.0/24 has an exact match 185.222.106.0/24 (AS 214623) in BGP
2026-07-26 15:32:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.223.170.0/23 has more specific match 185.223.170.0/24 (AS 214790) in BGP
2026-07-26 15:32:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.223.170.0/23 has more specific match 185.223.171.0/24 (AS 214790) in BGP
2026-07-26 15:32:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.223.170.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:32:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.80.0/22 has more specific match 185.235.80.0/24 (AS 44794) in BGP
2026-07-26 15:32:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.80.0/22 has more specific match 185.235.81.0/24 (AS 62406) in BGP
2026-07-26 15:32:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.80.0/22 has more specific match 185.235.82.0/24 (AS 44794) in BGP
2026-07-26 15:32:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.80.0/22 has more specific match 185.235.83.0/24 (AS 62406) in BGP
2026-07-26 15:32:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.80.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:32:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.143.0/24 has an exact match 185.235.143.0/24 (AS 211494) in BGP
2026-07-26 15:32:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.160.0/22 has more specific match 185.235.160.0/24 (AS 204411) in BGP
2026-07-26 15:32:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.160.0/22 has more specific match 185.235.161.0/24 (AS 204411) in BGP
2026-07-26 15:32:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.160.0/22 has more specific match 185.235.162.0/24 (AS 204411) in BGP
2026-07-26 15:32:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.160.0/22 has more specific match 185.235.163.0/24 (AS 204411) in BGP
2026-07-26 15:32:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.235.160.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:32:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.236.32.0/22 has an exact match 185.236.32.0/22 (AS 209587) in BGP
2026-07-26 15:32:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.242.184.0/24 has an exact match 185.242.184.0/24 (AS 43108) in BGP
2026-07-26 15:32:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.244.100.0/22 has an exact match 185.244.100.0/22 (AS 202635) in BGP
2026-07-26 15:32:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.246.184.0/22 has an exact match 185.246.184.0/22 (AS 34702) in BGP
2026-07-26 15:32:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.249.222.0/24 has an exact match 185.249.222.0/24 (AS 43937) in BGP
2026-07-26 15:32:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.250.152.0/22 has no prefixes in BGP
2026-07-26 15:32:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.252.177.0/24 has an exact match 185.252.177.0/24 (AS 209693) in BGP
2026-07-26 15:32:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.254.34.0/24 has an exact match 185.254.34.0/24 (AS 203065) in BGP
2026-07-26 15:32:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.254.122.0/24 has an exact match 185.254.122.0/24 (AS 211328) in BGP
2026-07-26 15:32:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 185.255.178.0/24 has an exact match 185.255.178.0/24 (AS 41745) in BGP
2026-07-26 15:32:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 186.243.167.0/24 has an exact match 186.243.167.0/24 (AS 44559) in BGP
2026-07-26 15:32:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 186.243.217.0/24 has an exact match 186.243.217.0/24 (AS 44559) in BGP
2026-07-26 15:32:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 186.246.69.0/24 has an exact match 186.246.69.0/24 (AS 44559) in BGP
2026-07-26 15:32:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 186.246.114.0/24 has an exact match 186.246.114.0/24 (AS 44559) in BGP
2026-07-26 15:32:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 187.15.123.0/24 has an exact match 187.15.123.0/24 (AS 207137) in BGP
2026-07-26 15:32:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.0.48.0/20 has an exact match 188.0.48.0/20 (AS 57201) in BGP
2026-07-26 15:32:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.64.179.0/24 has an exact match 188.64.179.0/24 (AS 199527) in BGP
2026-07-26 15:32:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.66.0.0/21 has an exact match 188.66.0.0/21 (AS 196743) in BGP
2026-07-26 15:32:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.92.160.0/21 has an exact match 188.92.160.0/21 (AS 39823) in BGP
2026-07-26 15:32:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.95.208.0/21 has an exact match 188.95.208.0/21 (AS 51504) in BGP
2026-07-26 15:32:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.119.112.0/24 has no prefixes in BGP
2026-07-26 15:32:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.190.18.0/24 has an exact match 188.190.18.0/24 (AS 202759) in BGP
2026-07-26 15:33:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.214.32.0/24 has an exact match 188.214.32.0/24 (AS 202759) in BGP
2026-07-26 15:33:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.214.36.0/23 has more specific match 188.214.36.0/24 (AS 202759) in BGP
2026-07-26 15:33:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.214.36.0/23 has more specific match 188.214.37.0/24 (AS 202759) in BGP
2026-07-26 15:33:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.214.36.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:33:03 +0300 - [get_unique_bgp_routes] - INFO - Processed 800/1641 prefixes...
2026-07-26 15:33:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.227.248.0/21 has an exact match 188.227.248.0/21 (AS 12757) in BGP
2026-07-26 15:33:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 188.255.236.0/24 has an exact match 188.255.236.0/24 (AS 204785) in BGP
2026-07-26 15:33:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 192.83.230.0/24 has an exact match 192.83.230.0/24 (AS 3130) in BGP
2026-07-26 15:33:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.3.30.0/24 has an exact match 193.3.30.0/24 (AS 202635) in BGP
2026-07-26 15:33:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.16.32.0/22 has no prefixes in BGP
2026-07-26 15:33:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.28.254.0/24 has an exact match 193.28.254.0/24 (AS 31081) in BGP
2026-07-26 15:33:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.31.108.0/22 has more specific match 193.31.111.0/24 (AS 16509) in BGP
2026-07-26 15:33:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.32.100.0/24 has an exact match 193.32.100.0/24 (AS 57196) in BGP
2026-07-26 15:33:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.40.0.0/16 has an exact match 193.40.0.0/16 (AS 3221) in BGP
2026-07-26 15:33:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.40.0.0/16 has more specific match 193.40.195.0/24 (AS 3332) in BGP
2026-07-26 15:33:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.42.48.0/22 has more specific match 193.42.48.0/24 (AS 210002) in BGP
2026-07-26 15:33:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.42.48.0/22 has more specific match 193.42.49.0/24 (AS 210002) in BGP
2026-07-26 15:33:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.42.112.0/24 has an exact match 193.42.112.0/24 (AS 199144) in BGP
2026-07-26 15:33:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.47.234.0/23 has no prefixes in BGP
2026-07-26 15:33:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.47.244.0/23 has no prefixes in BGP
2026-07-26 15:33:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.56.121.0/24 has no prefixes in BGP
2026-07-26 15:33:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.56.122.0/24 has no prefixes in BGP
2026-07-26 15:33:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.93.252.0/24 has an exact match 193.93.252.0/24 (AS 202225) in BGP
2026-07-26 15:33:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.109.120.0/24 has an exact match 193.109.120.0/24 (AS 62005) in BGP
2026-07-26 15:33:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.138.8.0/24 has an exact match 193.138.8.0/24 (AS 34729) in BGP
2026-07-26 15:33:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.138.27.0/24 has an exact match 193.138.27.0/24 (AS 12337) in BGP
2026-07-26 15:33:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.143.8.0/21 has an exact match 193.143.8.0/21 (AS 43958) in BGP
2026-07-26 15:33:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.143.240.0/21 has an exact match 193.143.240.0/21 (AS 43958) in BGP
2026-07-26 15:33:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.148.76.0/22 has no prefixes in BGP
2026-07-26 15:33:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.161.245.0/24 has an exact match 193.161.245.0/24 (AS 200017) in BGP
2026-07-26 15:33:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.164.12.0/24 has an exact match 193.164.12.0/24 (AS 207819) in BGP
2026-07-26 15:33:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.164.128.0/24 has an exact match 193.164.128.0/24 (AS 213459) in BGP
2026-07-26 15:33:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.202.40.0/22 has more specific match 193.202.40.0/24 (AS 210302) in BGP
2026-07-26 15:33:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.203.196.0/23 has an exact match 193.203.196.0/23 (AS 3332) in BGP
2026-07-26 15:33:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.203.196.0/23 has more specific match 193.203.196.0/24 (AS 59807) in BGP
2026-07-26 15:33:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 193.221.204.0/22 has no prefixes in BGP
2026-07-26 15:33:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.0.51.0/24 has an exact match 194.0.51.0/24 (AS 12757) in BGP
2026-07-26 15:33:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.0.177.0/24 has an exact match 194.0.177.0/24 (AS 174) in BGP
2026-07-26 15:33:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.0.203.0/24 has an exact match 194.0.203.0/24 (AS 42380) in BGP
2026-07-26 15:33:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.1.209.0/24 has an exact match 194.1.209.0/24 (AS 42472) in BGP
2026-07-26 15:33:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.4.168.0/22 has no prefixes in BGP
2026-07-26 15:33:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.15.248.0/22 has an exact match 194.15.248.0/22 (AS 42300) in BGP
2026-07-26 15:33:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.15.248.0/22 has more specific match 194.15.248.0/24 (AS 42300) in BGP
2026-07-26 15:33:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.15.248.0/22 has more specific match 194.15.251.0/24 (AS 206084) in BGP
2026-07-26 15:33:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.26.141.0/24 has an exact match 194.26.141.0/24 (AS 62005) in BGP
2026-07-26 15:33:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.29.54.0/24 has an exact match 194.29.54.0/24 (AS 16509) in BGP
2026-07-26 15:33:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.30.168.0/24 has no prefixes in BGP
2026-07-26 15:33:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.31.56.0/24 has an exact match 194.31.56.0/24 (AS 61328) in BGP
2026-07-26 15:33:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.36.162.0/24 has an exact match 194.36.162.0/24 (AS 42012) in BGP
2026-07-26 15:33:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.48.211.0/24 has an exact match 194.48.211.0/24 (AS 210671) in BGP
2026-07-26 15:33:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 194.50.99.0/24 (AS 34800) for MaxMind entry 194.50.99.64/32
2026-07-26 15:33:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.55.8.0/22 has an exact match 194.55.8.0/22 (AS 2586) in BGP
2026-07-26 15:33:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.56.212.0/24 has an exact match 194.56.212.0/24 (AS 215329) in BGP
2026-07-26 15:34:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 194.69.104.0/23 (AS 35106) for MaxMind entry 194.69.104.0/24
2026-07-26 15:34:01 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 194.69.104.0/23 (AS 35106) for MaxMind entry 194.69.105.0/25
2026-07-26 15:34:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 194.69.104.0/23 (AS 35106) for MaxMind entry 194.69.105.128/26
2026-07-26 15:34:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 194.69.104.0/23 (AS 35106) for MaxMind entry 194.69.105.192/27
2026-07-26 15:34:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 194.69.104.0/23 (AS 35106) for MaxMind entry 194.69.105.224/28
2026-07-26 15:34:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.76.198.0/24 has no prefixes in BGP
2026-07-26 15:34:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.76.227.0/24 has an exact match 194.76.227.0/24 (AS 207408) in BGP
2026-07-26 15:34:07 +0300 - [get_unique_bgp_routes] - INFO - Processed 850/1641 prefixes...
2026-07-26 15:34:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.93.64.0/22 has no prefixes in BGP
2026-07-26 15:34:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.106.96.0/19 has an exact match 194.106.96.0/19 (AS 3249) in BGP
2026-07-26 15:34:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.116.188.0/23 has no prefixes in BGP
2026-07-26 15:34:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.126.96.0/19 has an exact match 194.126.96.0/19 (AS 3249) in BGP
2026-07-26 15:34:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.127.164.0/24 has an exact match 194.127.164.0/24 (AS 43357) in BGP
2026-07-26 15:34:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 194.132.49.0/24 (AS 12552) for MaxMind entry 194.132.49.192/27
2026-07-26 15:34:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.146.64.0/23 has no prefixes in BGP
2026-07-26 15:34:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.146.82.0/23 has no prefixes in BGP
2026-07-26 15:34:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.147.241.0/24 has no prefixes in BGP
2026-07-26 15:34:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.147.244.0/24 has no prefixes in BGP
2026-07-26 15:34:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.147.255.0/24 has no prefixes in BGP
2026-07-26 15:34:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.149.89.0/24 has no prefixes in BGP
2026-07-26 15:34:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.150.64.0/22 has an exact match 194.150.64.0/22 (AS 2586) in BGP
2026-07-26 15:34:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.156.1.0/24 has an exact match 194.156.1.0/24 (AS 202656) in BGP
2026-07-26 15:34:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.180.226.152/29 has no prefixes in BGP
2026-07-26 15:34:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 194.204.0.0/18 has an exact match 194.204.0.0/18 (AS 2586) in BGP
2026-07-26 15:34:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.8.204.0/23 has an exact match 195.8.204.0/23 (AS 42016) in BGP
2026-07-26 15:34:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.12.224.0/19 (AS 1299) for MaxMind entry 195.12.225.48/30
2026-07-26 15:34:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.20.151.0/24 has an exact match 195.20.151.0/24 (AS 197517) in BGP
2026-07-26 15:34:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.34.212.0/22 has no prefixes in BGP
2026-07-26 15:34:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.42.102.0/23 has an exact match 195.42.102.0/23 (AS 47143) in BGP
2026-07-26 15:34:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.42.102.0/23 has more specific match 195.42.103.0/24 (AS 47143) in BGP
2026-07-26 15:34:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.43.86.0/23 has an exact match 195.43.86.0/23 (AS 51349) in BGP
2026-07-26 15:34:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.50.192.0/18 has more specific match 195.50.192.0/19 (AS 3249) in BGP
2026-07-26 15:34:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.50.192.0/18 has more specific match 195.50.224.0/19 (AS 3249) in BGP
2026-07-26 15:34:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.50.192.0/18 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:34:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.54.166.0/23 has more specific match 195.54.166.0/24 (AS 203701) in BGP
2026-07-26 15:34:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.54.166.0/23 has more specific match 195.54.167.0/24 (AS 203701) in BGP
2026-07-26 15:34:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.54.166.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:34:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.60.83.96/27 has no prefixes in BGP
2026-07-26 15:34:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.66.106.0/24 has an exact match 195.66.106.0/24 (AS 44839) in BGP
2026-07-26 15:34:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.67.0.0/16 (AS 3301) for MaxMind entry 195.67.197.16/30
2026-07-26 15:34:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.67.0.0/16 (AS 3301) for MaxMind entry 195.67.197.144/30
2026-07-26 15:34:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.80.96.0/19 has an exact match 195.80.96.0/19 (AS 8240) in BGP
2026-07-26 15:34:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.82.146.0/23 has more specific match 195.82.146.0/24 (AS 209378) in BGP
2026-07-26 15:34:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.130.196.0/24 has an exact match 195.130.196.0/24 (AS 207254) in BGP
2026-07-26 15:34:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.138.53.0/24 has no prefixes in BGP
2026-07-26 15:34:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.212.0.0/16 (AS 2686) for MaxMind entry 195.212.23.121/32
2026-07-26 15:34:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.0.0/24
2026-07-26 15:34:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.1.0/25
2026-07-26 15:34:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.1.128/26
2026-07-26 15:34:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.1.192/27
2026-07-26 15:34:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.1.224/28
2026-07-26 15:34:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.2.0/23
2026-07-26 15:34:52 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.4.0/22
2026-07-26 15:34:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.8.0/21
2026-07-26 15:34:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.222.16.0/21 has more specific match 195.222.16.0/24 (AS 3327) in BGP
2026-07-26 15:34:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.16.0/21
2026-07-26 15:34:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.24.0/23
2026-07-26 15:34:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.26.8/29
2026-07-26 15:34:58 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.26.26/31
2026-07-26 15:34:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.26.28/30
2026-07-26 15:35:01 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.26.32/27
2026-07-26 15:35:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.26.64/26
2026-07-26 15:35:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.26.128/25
2026-07-26 15:35:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.27.0/24
2026-07-26 15:35:06 +0300 - [get_unique_bgp_routes] - INFO - Processed 900/1641 prefixes...
2026-07-26 15:35:06 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 195.222.0.0/19 (AS 3327) for MaxMind entry 195.222.28.0/22
2026-07-26 15:35:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.238.64.0/23 has an exact match 195.238.64.0/23 (AS 43883) in BGP
2026-07-26 15:35:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.245.110.0/24 has an exact match 195.245.110.0/24 (AS 202656) in BGP
2026-07-26 15:35:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.245.239.0/24 has an exact match 195.245.239.0/24 (AS 57043) in BGP
2026-07-26 15:35:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 195.250.160.0/19 has an exact match 195.250.160.0/19 (AS 3249) in BGP
2026-07-26 15:35:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 196.48.0.0/16 (AS 37518) for MaxMind entry 196.48.10.0/24
2026-07-26 15:35:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 196.56.0.0/16 (AS 37518) for MaxMind entry 196.56.10.0/24
2026-07-26 15:35:22 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 196.57.0.0/16 (AS 37518) for MaxMind entry 196.57.10.0/24
2026-07-26 15:35:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 196.58.0.0/16 (AS 37518) for MaxMind entry 196.58.10.0/24
2026-07-26 15:35:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.196.216.0/21 has more specific match 196.196.216.0/24 (AS 58065) in BGP
2026-07-26 15:35:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.196.216.0/21 has more specific match 196.196.217.0/24 (AS 58065) in BGP
2026-07-26 15:35:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.196.216.0/21 has more specific match 196.196.218.0/24 (AS 58065) in BGP
2026-07-26 15:35:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.196.216.0/21 has more specific match 196.196.219.0/24 (AS 58065) in BGP
2026-07-26 15:35:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.196.216.0/21 has more specific match 196.196.220.0/24 (AS 58065) in BGP
2026-07-26 15:35:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.196.216.0/21 has more specific match 196.196.221.0/24 (AS 58065) in BGP
2026-07-26 15:35:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.196.216.0/21 has more specific match 196.196.222.0/24 (AS 58065) in BGP
2026-07-26 15:35:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.196.216.0/21 has more specific match 196.196.223.0/24 (AS 58065) in BGP
2026-07-26 15:35:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.196.216.0/21 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:35:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.197.10.0/24 has an exact match 196.197.10.0/24 (AS 58065) in BGP
2026-07-26 15:35:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.198.10.0/24 has an exact match 196.198.10.0/24 (AS 58065) in BGP
2026-07-26 15:35:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.199.10.0/24 has an exact match 196.199.10.0/24 (AS 58065) in BGP
2026-07-26 15:35:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 196.242.244.0/24 has an exact match 196.242.244.0/24 (AS 58065) in BGP
2026-07-26 15:35:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 199.4.158.0/24 has an exact match 199.4.158.0/24 (AS 203065) in BGP
2026-07-26 15:35:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 199.19.248.0/21 (AS 396982) for MaxMind entry 199.19.254.208/28
2026-07-26 15:35:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 199.116.168.0/21 (AS 396982) for MaxMind entry 199.116.172.224/27
2026-07-26 15:35:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 199.244.100.0/23 has more specific match 199.244.101.0/24 (AS 209181) in BGP
2026-07-26 15:35:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 199.244.103.0/24 has an exact match 199.244.103.0/24 (AS 214623) in BGP
2026-07-26 15:35:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 200.10.32.0/20 (AS 264850) for MaxMind entry 200.10.33.0/24
2026-07-26 15:35:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 200.10.32.0/20 (AS 264850) for MaxMind entry 200.10.42.0/24
2026-07-26 15:35:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 201.4.45.0/24 has an exact match 201.4.45.0/24 (AS 3214) in BGP
2026-07-26 15:35:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 202.122.129.0/24 has an exact match 202.122.129.0/24 (AS 203701) in BGP
2026-07-26 15:35:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 204.17.195.0/24 has an exact match 204.17.195.0/24 (AS 204595) in BGP
2026-07-26 15:35:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 205.237.92.0/24 has an exact match 205.237.92.0/24 (AS 214623) in BGP
2026-07-26 15:35:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 205.237.94.0/24 has an exact match 205.237.94.0/24 (AS 214623) in BGP
2026-07-26 15:35:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 207.244.210.0/23 has an exact match 207.244.210.0/23 (AS 213757) in BGP
2026-07-26 15:35:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 208.167.192.0/20 (AS 1273) for MaxMind entry 208.167.192.48/29
2026-07-26 15:35:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 209.131.70.0/24 has an exact match 209.131.70.0/24 (AS 199144) in BGP
2026-07-26 15:36:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 209.206.29.0/24 (AS 13150) for MaxMind entry 209.206.29.112/28
2026-07-26 15:36:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 212.7.0.0/19 has an exact match 212.7.0.0/19 (AS 8728) in BGP
2026-07-26 15:36:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.27.224.0/19 (AS 3327) for MaxMind entry 212.27.224.0/24
2026-07-26 15:36:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.27.228.0/24 (AS 3327) for MaxMind entry 212.27.228.78/31
2026-07-26 15:36:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.27.224.0/19 (AS 3327) for MaxMind entry 212.27.233.0/24
2026-07-26 15:36:06 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.27.224.0/19 (AS 3327) for MaxMind entry 212.27.244.8/29
2026-07-26 15:36:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.27.224.0/19 (AS 3327) for MaxMind entry 212.27.246.0/23
2026-07-26 15:36:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.27.224.0/19 (AS 3327) for MaxMind entry 212.27.248.32/27
2026-07-26 15:36:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.27.224.0/19 (AS 3327) for MaxMind entry 212.27.248.96/27
2026-07-26 15:36:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.27.224.0/19 (AS 3327) for MaxMind entry 212.27.248.160/27
2026-07-26 15:36:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.192.128/27
2026-07-26 15:36:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.192.184/31
2026-07-26 15:36:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.192.188/30
2026-07-26 15:36:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.192.192/26
2026-07-26 15:36:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.193.0/24
2026-07-26 15:36:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.194.0/23
2026-07-26 15:36:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.196.0/22
2026-07-26 15:36:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.200.0/24
2026-07-26 15:36:21 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.0/29
2026-07-26 15:36:22 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.8/31
2026-07-26 15:36:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.28/30
2026-07-26 15:36:23 +0300 - [get_unique_bgp_routes] - INFO - Processed 950/1641 prefixes...
2026-07-26 15:36:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.48/30
2026-07-26 15:36:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.52/31
2026-07-26 15:36:26 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.56/31
2026-07-26 15:36:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.60/31
2026-07-26 15:36:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.68/31
2026-07-26 15:36:34 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.74/32
2026-07-26 15:36:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.76/30
2026-07-26 15:36:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.81/32
2026-07-26 15:36:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.86/31
2026-07-26 15:36:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.94/31
2026-07-26 15:36:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.96/31
2026-07-26 15:36:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.99/32
2026-07-26 15:36:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.104/31
2026-07-26 15:36:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.106/32
2026-07-26 15:36:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.108/30
2026-07-26 15:36:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.112/31
2026-07-26 15:36:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.116/32
2026-07-26 15:36:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.118/32
2026-07-26 15:36:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.121/32
2026-07-26 15:36:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.122/31
2026-07-26 15:36:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.124/31
2026-07-26 15:36:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.128/31
2026-07-26 15:37:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.134/31
2026-07-26 15:37:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.138/31
2026-07-26 15:37:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.140/31
2026-07-26 15:37:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.146/31
2026-07-26 15:37:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.156/31
2026-07-26 15:37:06 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.160/32
2026-07-26 15:37:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.162/31
2026-07-26 15:37:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.164/31
2026-07-26 15:37:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.168/29
2026-07-26 15:37:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.176/29
2026-07-26 15:37:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.184/30
2026-07-26 15:37:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.191/32
2026-07-26 15:37:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.192/30
2026-07-26 15:37:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.198/32
2026-07-26 15:37:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.204/31
2026-07-26 15:37:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.220/30
2026-07-26 15:37:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.224/29
2026-07-26 15:37:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.236/31
2026-07-26 15:37:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.240/29
2026-07-26 15:37:21 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.248/31
2026-07-26 15:37:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.201.252/30
2026-07-26 15:37:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.202.0/24
2026-07-26 15:37:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.203.0/25
2026-07-26 15:37:26 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.203.128/27
2026-07-26 15:37:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.203.176/28
2026-07-26 15:37:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.203.192/26
2026-07-26 15:37:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.204.0/22
2026-07-26 15:37:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.47.192.0/19 (AS 3327) for MaxMind entry 212.47.208.0/20
2026-07-26 15:37:30 +0300 - [get_unique_bgp_routes] - INFO - Processed 1000/1641 prefixes...
2026-07-26 15:37:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.0.192/28
2026-07-26 15:37:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.0.224/28
2026-07-26 15:37:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.9.68/30
2026-07-26 15:37:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.9.128/30
2026-07-26 15:37:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.9.216/30
2026-07-26 15:37:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.20.16/30
2026-07-26 15:37:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.20.72/29
2026-07-26 15:37:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.20.96/30
2026-07-26 15:37:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.20.112/29
2026-07-26 15:37:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.20.136/29
2026-07-26 15:37:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.0/29
2026-07-26 15:37:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.8/30
2026-07-26 15:37:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.16/30
2026-07-26 15:37:50 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API HTTP 500 error for 212.49.22.32/30. Retrying...
2026-07-26 15:37:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.32/30
2026-07-26 15:37:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.44/30
2026-07-26 15:37:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.48/29
2026-07-26 15:37:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.108/30
2026-07-26 15:37:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.132/30
2026-07-26 15:37:58 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.140/30
2026-07-26 15:37:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.160/30
2026-07-26 15:38:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.200/29
2026-07-26 15:38:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.22.248/29
2026-07-26 15:38:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.30.0/28
2026-07-26 15:38:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.49.0.0/19 (AS 3327) for MaxMind entry 212.49.31.160/30
2026-07-26 15:38:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.81.64.0/18 (AS 3257) for MaxMind entry 212.81.65.200/29
2026-07-26 15:38:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 212.102.144.0/22 has more specific match 212.102.144.0/23 (AS 209372) in BGP
2026-07-26 15:38:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 212.102.144.0/22 has more specific match 212.102.146.0/24 (AS 209372) in BGP
2026-07-26 15:38:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 212.102.144.0/22 has more specific match 212.102.147.0/24 (AS 209372) in BGP
2026-07-26 15:38:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 212.102.144.0/22 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:38:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 212.107.32.0/19 has an exact match 212.107.32.0/19 (AS 1257) in BGP
2026-07-26 15:38:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 212.107.32.0/19 has more specific match 212.107.52.0/22 (AS 197289) in BGP
2026-07-26 15:38:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.115.128.0/18 (AS 3257) for MaxMind entry 212.115.142.124/30
2026-07-26 15:38:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.115.128.0/18 (AS 3257) for MaxMind entry 212.115.142.160/30
2026-07-26 15:38:10 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.115.128.0/18 (AS 3257) for MaxMind entry 212.115.164.152/29
2026-07-26 15:38:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.222.0.0/16 (AS 3257) for MaxMind entry 212.222.176.176/28
2026-07-26 15:38:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.222.0.0/16 (AS 3257) for MaxMind entry 212.222.177.144/28
2026-07-26 15:38:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.222.0.0/16 (AS 3257) for MaxMind entry 212.222.179.200/29
2026-07-26 15:38:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.222.0.0/16 (AS 3257) for MaxMind entry 212.222.198.72/29
2026-07-26 15:38:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.222.0.0/16 (AS 3257) for MaxMind entry 212.222.198.120/29
2026-07-26 15:38:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.222.0.0/16 (AS 3257) for MaxMind entry 212.222.222.120/29
2026-07-26 15:38:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 212.222.0.0/16 (AS 3257) for MaxMind entry 212.222.240.104/29
2026-07-26 15:38:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.5.72.0/24 has an exact match 213.5.72.0/24 (AS 57063) in BGP
2026-07-26 15:38:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.35.128.0/17 has an exact match 213.35.128.0/17 (AS 3249) in BGP
2026-07-26 15:38:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.100.136.0/22 has an exact match 213.100.136.0/22 (AS 1257) in BGP
2026-07-26 15:38:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.100.224.0/19 has an exact match 213.100.224.0/19 (AS 1257) in BGP
2026-07-26 15:38:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 213.101.128.0/21 (AS 1257) for MaxMind entry 213.101.132.0/23
2026-07-26 15:38:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 213.100.0.0/14 (AS 1257) for MaxMind entry 213.101.192.0/20
2026-07-26 15:38:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 213.100.0.0/14 (AS 1257) for MaxMind entry 213.102.133.0/24
2026-07-26 15:38:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 213.100.0.0/14 (AS 1257) for MaxMind entry 213.102.134.0/23
2026-07-26 15:38:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.102.136.0/21 has an exact match 213.102.136.0/21 (AS 1257) in BGP
2026-07-26 15:38:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 213.100.0.0/14 (AS 1257) for MaxMind entry 213.102.152.0/22
2026-07-26 15:38:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 213.100.0.0/14 (AS 1257) for MaxMind entry 213.103.164.0/22
2026-07-26 15:38:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.111.179.0/24 has an exact match 213.111.179.0/24 (AS 202759) in BGP
2026-07-26 15:38:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.111.181.0/24 has an exact match 213.111.181.0/24 (AS 202759) in BGP
2026-07-26 15:38:49 +0300 - [get_unique_bgp_routes] - INFO - Processed 1050/1641 prefixes...
2026-07-26 15:38:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.111.189.0/24 has an exact match 213.111.189.0/24 (AS 202759) in BGP
2026-07-26 15:38:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.111.190.0/24 has an exact match 213.111.190.0/24 (AS 202759) in BGP
2026-07-26 15:38:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 213.130.192.0/19 (AS 1257) for MaxMind entry 213.130.192.0/21
2026-07-26 15:38:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 213.130.192.0/19 (AS 1257) for MaxMind entry 213.130.212.0/22
2026-07-26 15:38:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 213.156.252.0/24 (AS 16509) for MaxMind entry 213.156.252.3/32
2026-07-26 15:38:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.168.0.0/19 has an exact match 213.168.0.0/19 (AS 3249) in BGP
2026-07-26 15:38:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.180.0.0/19 has an exact match 213.180.0.0/19 (AS 3249) in BGP
2026-07-26 15:38:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.184.32.0/19 has an exact match 213.184.32.0/19 (AS 8240) in BGP
2026-07-26 15:39:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.232.0/23 has more specific match 213.187.232.0/24 (AS 43937) in BGP
2026-07-26 15:39:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.232.0/23 has more specific match 213.187.233.0/24 (AS 43937) in BGP
2026-07-26 15:39:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.232.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:39:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.236.0/24 has an exact match 213.187.236.0/24 (AS 43937) in BGP
2026-07-26 15:39:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.238.0/24 has an exact match 213.187.238.0/24 (AS 43937) in BGP
2026-07-26 15:39:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.249.0/24 has no prefixes in BGP
2026-07-26 15:39:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.250.0/23 has more specific match 213.187.250.0/24 (AS 43937) in BGP
2026-07-26 15:39:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.250.0/23 has more specific match 213.187.251.0/24 (AS 43937) in BGP
2026-07-26 15:39:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.250.0/23 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:39:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.252.0/22 has more specific match 213.187.252.0/24 (AS 43937) in BGP
2026-07-26 15:39:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.252.0/22 has more specific match 213.187.253.0/24 (AS 43937) in BGP
2026-07-26 15:39:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.187.252.0/22 has more specific match 213.187.254.0/24 (AS 43937) in BGP
2026-07-26 15:39:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.219.64.0/18 has an exact match 213.219.64.0/18 (AS 3249) in BGP
2026-07-26 15:39:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 213.232.112.0/24 has an exact match 213.232.112.0/24 (AS 43357) in BGP
2026-07-26 15:39:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 216.87.53.0/24 has an exact match 216.87.53.0/24 (AS 208440) in BGP
2026-07-26 15:39:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 216.131.121.0/24 has an exact match 216.131.121.0/24 (AS 206804) in BGP
2026-07-26 15:39:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 217.9.12.0/24 has an exact match 217.9.12.0/24 (AS 213702) in BGP
2026-07-26 15:39:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 217.22.5.0/24 has an exact match 217.22.5.0/24 (AS 204671) in BGP
2026-07-26 15:39:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 217.28.240.0/20 (AS 3327) for MaxMind entry 217.28.241.88/31
2026-07-26 15:39:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 217.28.240.0/20 (AS 3327) for MaxMind entry 217.28.241.112/32
2026-07-26 15:39:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 217.28.240.0/20 (AS 3327) for MaxMind entry 217.28.242.0/28
2026-07-26 15:39:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 217.28.245.0/24 (AS 3327) for MaxMind entry 217.28.245.136/30
2026-07-26 15:39:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 217.71.32.0/20 has an exact match 217.71.32.0/20 (AS 3249) in BGP
2026-07-26 15:39:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 217.78.239.0/24 has an exact match 217.78.239.0/24 (AS 199144) in BGP
2026-07-26 15:39:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 217.118.112.0/20 (AS 3257) for MaxMind entry 217.118.113.148/30
2026-07-26 15:39:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 217.119.138.0/24 has an exact match 217.119.138.0/24 (AS 213757) in BGP
2026-07-26 15:39:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 217.142.26.0/23 has an exact match 217.142.26.0/23 (AS 14593) in BGP
2026-07-26 15:39:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 217.146.64.0/20 has an exact match 217.146.64.0/20 (AS 49604) in BGP
2026-07-26 15:39:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 217.156.128.0/17 (AS 3549) for MaxMind entry 217.156.238.224/28
2026-07-26 15:39:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 217.159.128.0/17 has an exact match 217.159.128.0/17 (AS 3249) in BGP
2026-07-26 15:39:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 217.180.63.0/24 has an exact match 217.180.63.0/24 (AS 211192) in BGP
2026-07-26 15:39:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:d:470::/64
2026-07-26 15:39:34 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:d:8d5::/64
2026-07-26 15:39:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:19:15e::/64
2026-07-26 15:39:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1d:e7::/64
2026-07-26 15:39:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:26:10::/64
2026-07-26 15:39:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:26:47::/64
2026-07-26 15:39:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:26:3a8::/64
2026-07-26 15:39:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:26:774::/64
2026-07-26 15:39:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:48::/64
2026-07-26 15:39:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:54::/64
2026-07-26 15:39:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:c0::/64
2026-07-26 15:39:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:1b1::/64
2026-07-26 15:39:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:1ef::/64
2026-07-26 15:39:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:218::/64
2026-07-26 15:39:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:27d::/64
2026-07-26 15:39:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:29a::/64
2026-07-26 15:39:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:29d::/64
2026-07-26 15:39:50 +0300 - [get_unique_bgp_routes] - INFO - Processed 1100/1641 prefixes...
2026-07-26 15:39:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:2f3::/64
2026-07-26 15:39:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:395::/64
2026-07-26 15:39:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:3af::/64
2026-07-26 15:39:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:49a::/64
2026-07-26 15:39:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:551::/64
2026-07-26 15:39:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:578::/64
2026-07-26 15:39:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:5f8::/64
2026-07-26 15:40:01 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:768::/64
2026-07-26 15:40:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:777::/64
2026-07-26 15:40:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:851::/64
2026-07-26 15:40:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:859::/64
2026-07-26 15:40:06 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:944::/64
2026-07-26 15:40:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:af0::/64
2026-07-26 15:40:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:b33::/64
2026-07-26 15:40:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:bf5::/64
2026-07-26 15:40:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:c16::/64
2026-07-26 15:40:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:c24::/64
2026-07-26 15:40:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:cb1::/64
2026-07-26 15:40:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:d97::/64
2026-07-26 15:40:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:e66::/64
2026-07-26 15:40:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:ede::/64
2026-07-26 15:40:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:f10::/64
2026-07-26 15:40:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:f2a::/64
2026-07-26 15:40:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:fd9::/64
2026-07-26 15:40:21 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:101d::/64
2026-07-26 15:40:22 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:28:10f5::/64
2026-07-26 15:40:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:36:5dc::/64
2026-07-26 15:40:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:6d:2ce::/64
2026-07-26 15:40:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:6d:7a0::/64
2026-07-26 15:40:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:6d:c14::/64
2026-07-26 15:40:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:6f:199::/64
2026-07-26 15:40:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:6f:42c::/64
2026-07-26 15:40:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:6f:674::/64
2026-07-26 15:40:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:71:36b::/64
2026-07-26 15:40:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:71:3dd::/64
2026-07-26 15:40:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:71:663::/64
2026-07-26 15:40:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:71:717::/64
2026-07-26 15:40:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f05:1c4::/64
2026-07-26 15:40:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f07:1d0::/64
2026-07-26 15:40:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f0b:46::/64
2026-07-26 15:40:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f0b:11f::/64
2026-07-26 15:40:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f0b:5df::/64
2026-07-26 15:40:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f0b:8f7::/64
2026-07-26 15:40:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f0b:966::/64
2026-07-26 15:40:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f0b:9b6::/64
2026-07-26 15:40:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f0b:a1d::/64
2026-07-26 15:40:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f0f:1a::/64
2026-07-26 15:40:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f11:c7::/64
2026-07-26 15:40:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f13:f::/64
2026-07-26 15:40:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f13:40c::/64
2026-07-26 15:40:51 +0300 - [get_unique_bgp_routes] - INFO - Processed 1150/1641 prefixes...
2026-07-26 15:40:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f13:488::/64
2026-07-26 15:40:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f13:4d0::/64
2026-07-26 15:41:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f13:cd6::/64
2026-07-26 15:41:29 +0300 - [get_unique_bgp_routes] - WARNING - RIPEstat API Connection/Timeout error for 2001:470:1f15:7c::/64. Retrying...
2026-07-26 15:41:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f15:7c::/64
2026-07-26 15:41:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f15:b2::/64
2026-07-26 15:41:34 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f15:2df::/64
2026-07-26 15:41:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f15:6b0::/64
2026-07-26 15:41:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f15:a58::/64
2026-07-26 15:41:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f15:d47::/64
2026-07-26 15:41:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f1b:122::/64
2026-07-26 15:41:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f1b:487::/64
2026-07-26 15:41:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f29:63::/64
2026-07-26 15:41:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f29:132::/64
2026-07-26 15:41:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:1f29:263::/64
2026-07-26 15:41:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:221d::/48
2026-07-26 15:41:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:50f0::/48
2026-07-26 15:41:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:599c::/48
2026-07-26 15:41:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:59e5::/48
2026-07-26 15:41:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:618e::/48
2026-07-26 15:41:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:6344::/48
2026-07-26 15:41:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:70cd::/48
2026-07-26 15:41:52 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:7272::/48
2026-07-26 15:41:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:73f6::/48
2026-07-26 15:41:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:746f::/48
2026-07-26 15:41:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:782f::/48
2026-07-26 15:41:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:7847::/48
2026-07-26 15:41:58 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:7b2c::/48
2026-07-26 15:41:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:7cdf::/48
2026-07-26 15:42:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:b5f9::/48
2026-07-26 15:42:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:dc2f::/48
2026-07-26 15:42:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:dc6d::/48
2026-07-26 15:42:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:dcfa::/48
2026-07-26 15:42:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:dd0e::/48
2026-07-26 15:42:06 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:de30::/48
2026-07-26 15:42:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:de34::/48
2026-07-26 15:42:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:de6e::/48
2026-07-26 15:42:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:de92::/48
2026-07-26 15:42:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:debe::/48
2026-07-26 15:42:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:defc::/48
2026-07-26 15:42:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:df47::/48
2026-07-26 15:42:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:df95::/48
2026-07-26 15:42:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:470::/32 (AS 6939) for MaxMind entry 2001:470:f18d::/48
2026-07-26 15:42:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:678:94::/48 has an exact match 2001:678:94::/48 (AS 42) in BGP
2026-07-26 15:42:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:678:5e0::/48 has an exact match 2001:678:5e0::/48 (AS 204671) in BGP
2026-07-26 15:42:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:678:a54::/48 has no prefixes in BGP
2026-07-26 15:42:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:678:f64::/48 has an exact match 2001:678:f64::/48 (AS 16509) in BGP
2026-07-26 15:42:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:32c::/48 has no prefixes in BGP
2026-07-26 15:42:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:3c8::/48 has no prefixes in BGP
2026-07-26 15:42:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:6e4::/48 has no prefixes in BGP
2026-07-26 15:42:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:804::/48 has no prefixes in BGP
2026-07-26 15:42:25 +0300 - [get_unique_bgp_routes] - INFO - Processed 1200/1641 prefixes...
2026-07-26 15:42:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:dd8::/48 has no prefixes in BGP
2026-07-26 15:42:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:e64::/48 has no prefixes in BGP
2026-07-26 15:42:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:ec4::/48 has an exact match 2001:67c:ec4::/48 (AS 207522) in BGP
2026-07-26 15:42:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:f24::/48 has no prefixes in BGP
2026-07-26 15:42:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:f74::/48 has an exact match 2001:67c:f74::/48 (AS 57063) in BGP
2026-07-26 15:42:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:1184::/48 has an exact match 2001:67c:1184::/48 (AS 206714) in BGP
2026-07-26 15:42:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:16cc::/48 has an exact match 2001:67c:16cc::/48 (AS 210434) in BGP
2026-07-26 15:42:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:2098::/48 has an exact match 2001:67c:2098::/48 (AS 208076) in BGP
2026-07-26 15:42:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:23d4::/48 has an exact match 2001:67c:23d4::/48 (AS 57201) in BGP
2026-07-26 15:42:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:67c:2618::/48 has no prefixes in BGP
2026-07-26 15:42:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:7d0::/32 has an exact match 2001:7d0::/32 (AS 3249) in BGP
2026-07-26 15:42:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:7f8:15::/48 has no prefixes in BGP
2026-07-26 15:42:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:7f8:50::/48 has no prefixes in BGP
2026-07-26 15:42:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:7f8:125::/48 has no prefixes in BGP
2026-07-26 15:42:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:978::/32 (AS 174) for MaxMind entry 2001:978:2:e::/64
2026-07-26 15:42:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:978:1000::/47 has more specific match 2001:978:1001::/48 (AS 199144) in BGP
2026-07-26 15:42:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:978::/32 (AS 174) for MaxMind entry 2001:978:1000::/47
2026-07-26 15:42:45 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1:1::/64
2026-07-26 15:42:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:2:1::/64
2026-07-26 15:42:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:5:1::/64
2026-07-26 15:42:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:6:1::/64
2026-07-26 15:42:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:8::/64
2026-07-26 15:42:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:9:1::/64
2026-07-26 15:42:52 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:ff:37::/64
2026-07-26 15:42:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:ff:38::/64
2026-07-26 15:42:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:101:2::/64
2026-07-26 15:42:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:104:498::/64
2026-07-26 15:42:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:105:189::/64
2026-07-26 15:42:58 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:301:1000::/63
2026-07-26 15:42:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:301:1002::/64
2026-07-26 15:43:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:301:1005::/64
2026-07-26 15:43:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:303:1::/64
2026-07-26 15:43:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c10:1::/64
2026-07-26 15:43:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c10:3::/64
2026-07-26 15:43:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c10:4::/64
2026-07-26 15:43:06 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c10:7::/64
2026-07-26 15:43:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c10:8::/64
2026-07-26 15:43:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c10:12::/63
2026-07-26 15:43:10 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c10:15::/64
2026-07-26 15:43:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c10:16::/63
2026-07-26 15:43:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c10:18::/64
2026-07-26 15:43:13 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c12:1::/64
2026-07-26 15:43:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c12:2::/64
2026-07-26 15:43:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c12:11::/64
2026-07-26 15:43:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c12:13::/64
2026-07-26 15:43:17 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c12:14::/64
2026-07-26 15:43:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c12:16::/64
2026-07-26 15:43:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:c15::/64
2026-07-26 15:43:21 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:cff::/64
2026-07-26 15:43:22 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1000::/63
2026-07-26 15:43:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1000:2::/64
2026-07-26 15:43:23 +0300 - [get_unique_bgp_routes] - INFO - Processed 1250/1641 prefixes...
2026-07-26 15:43:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1000:1000::/63
2026-07-26 15:43:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1000:1003::/64
2026-07-26 15:43:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1000:1004::/63
2026-07-26 15:43:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1200::/62
2026-07-26 15:43:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1201::/48
2026-07-26 15:43:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1400:1::/64
2026-07-26 15:43:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1400:1000::/64
2026-07-26 15:43:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1400:1002::/64
2026-07-26 15:43:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1400:1005::/64
2026-07-26 15:43:34 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1400:1007::/64
2026-07-26 15:43:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1400:1008::/64
2026-07-26 15:43:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2001:ad0::/32 (AS 3327) for MaxMind entry 2001:ad0:1700:1000::/64
2026-07-26 15:43:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:bb8::/32 has an exact match 2001:bb8::/32 (AS 3221) in BGP
2026-07-26 15:43:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:1530::/32 has an exact match 2001:1530::/32 (AS 2586) in BGP
2026-07-26 15:43:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:1b28::/32 has an exact match 2001:1b28::/32 (AS 8728) in BGP
2026-07-26 15:43:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:1b28::/32 has more specific match 2001:1b28:405::/48 (AS 51103) in BGP
2026-07-26 15:43:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:1b28::/32 has more specific match 2001:1b28:406::/48 (AS 205950) in BGP
2026-07-26 15:43:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:1bf0::/29 has an exact match 2001:1bf0::/29 (AS 2586) in BGP
2026-07-26 15:43:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2001:3786:3456::/48 has an exact match 2001:3786:3456::/48 (AS 205563) in BGP
2026-07-26 15:43:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2400:cb00:152::/48 has an exact match 2400:cb00:152::/48 (AS 13335) in BGP
2026-07-26 15:43:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0::/48 has no prefixes in BGP
2026-07-26 15:43:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:2::/47 has no prefixes in BGP
2026-07-26 15:43:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:4::/46 has no prefixes in BGP
2026-07-26 15:43:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:8::/45 has no prefixes in BGP
2026-07-26 15:43:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:10::/44 has no prefixes in BGP
2026-07-26 15:43:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:20::/43 has no prefixes in BGP
2026-07-26 15:43:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:40::/42 has no prefixes in BGP
2026-07-26 15:43:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:80::/41 has no prefixes in BGP
2026-07-26 15:43:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:100::/40 has no prefixes in BGP
2026-07-26 15:43:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:200::/39 has no prefixes in BGP
2026-07-26 15:43:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:400::/38 has no prefixes in BGP
2026-07-26 15:43:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:800::/37 has no prefixes in BGP
2026-07-26 15:43:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:1000::/36 has no prefixes in BGP
2026-07-26 15:43:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:2000::/35 has no prefixes in BGP
2026-07-26 15:44:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:4000::/34 has no prefixes in BGP
2026-07-26 15:44:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2401:eaa0:8000::/33 has no prefixes in BGP
2026-07-26 15:44:02 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:b05f::/48
2026-07-26 15:44:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:b0a4::/48
2026-07-26 15:44:04 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:b0d1::/48
2026-07-26 15:44:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:b0d9::/48
2026-07-26 15:44:07 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:b164::/48
2026-07-26 15:44:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:b199::/48
2026-07-26 15:44:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:b257::/48
2026-07-26 15:44:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:b2f7::/48
2026-07-26 15:44:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:b31f::/48
2026-07-26 15:44:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2600:7000::/24 (AS 6939) for MaxMind entry 2600:70ff:d037::/48
2026-07-26 15:44:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2604:ea80:6200::/40 has an exact match 2604:ea80:6200::/40 (AS 206804) in BGP
2026-07-26 15:44:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2605:7a80:9914::/47 has more specific match 2605:7a80:9914::/48 (AS 13449) in BGP
2026-07-26 15:44:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2605:7a80:9914::/47 has more specific match 2605:7a80:9915::/48 (AS 13449) in BGP
2026-07-26 15:44:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2605:7a80:9914::/47 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:44:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:22e8:4000::/54
2026-07-26 15:44:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:22ee:8000::/54
2026-07-26 15:44:21 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:22ee:a000::/54
2026-07-26 15:44:22 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:22ee:c000::/54
2026-07-26 15:44:22 +0300 - [get_unique_bgp_routes] - INFO - Processed 1300/1641 prefixes...
2026-07-26 15:44:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:22ee:e000::/54
2026-07-26 15:44:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:22fc:2000::/54
2026-07-26 15:44:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:2316::/54
2026-07-26 15:44:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:2316:2000::/54
2026-07-26 15:44:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:2316:4000::/54
2026-07-26 15:44:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:40::/32 (AS 15169) for MaxMind entry 2606:40:2316:6000::/54
2026-07-26 15:44:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:54c0::/34 (AS 13335) for MaxMind entry 2606:54c0:3050::/44
2026-07-26 15:44:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:54c3::/45 (AS 13335) for MaxMind entry 2606:54c3:0:12b9::/64
2026-07-26 15:44:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:54c3::/45 (AS 13335) for MaxMind entry 2606:54c3:0:13ad::/64
2026-07-26 15:44:34 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2606:f4c0:2000::/36 (AS 396982) for MaxMind entry 2606:f4c0:2960::/44
2026-07-26 15:44:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2607:740:6d::/48 has an exact match 2607:740:6d::/48 (AS 9009) in BGP
2026-07-26 15:44:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2620:171:71::/48 has an exact match 2620:171:71::/48 (AS 42) in BGP
2026-07-26 15:44:38 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a00:807::/32 (AS 1257) for MaxMind entry 2a00:807:80::/41
2026-07-26 15:44:39 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a00:807::/32 (AS 1257) for MaxMind entry 2a00:807:c000::/64
2026-07-26 15:44:40 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a00:807::/32 (AS 1257) for MaxMind entry 2a00:807:d000::/64
2026-07-26 15:44:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a00:807::/32 (AS 1257) for MaxMind entry 2a00:807:e000::/64
2026-07-26 15:44:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a00:ca0::/32 (AS 29286) for MaxMind entry 2a00:ca0:2054:a000::/52
2026-07-26 15:44:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a00:ca0::/32 (AS 29286) for MaxMind entry 2a00:ca0:2058:c000::/50
2026-07-26 15:44:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:16e0::/32 has an exact match 2a00:16e0::/32 (AS 3249) in BGP
2026-07-26 15:44:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:6a00::/29 has more specific match 2a00:6a00::/32 (AS 56588) in BGP
2026-07-26 15:44:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:6cc0::/32 has more specific match 2a00:6cc0::/48 (AS 62407) in BGP
2026-07-26 15:44:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:9b40::/32 has no prefixes in BGP
2026-07-26 15:45:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:9ec0::/32 has no prefixes in BGP
2026-07-26 15:45:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:9f80::/32 has no prefixes in BGP
2026-07-26 15:45:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:b9e0::/32 has no prefixes in BGP
2026-07-26 15:45:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:c3a0::/32 has an exact match 2a00:c3a0::/32 (AS 51349) in BGP
2026-07-26 15:45:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:c700::/32 has no prefixes in BGP
2026-07-26 15:45:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:ce80::/32 has no prefixes in BGP
2026-07-26 15:45:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a00:d800::/32 has no prefixes in BGP
2026-07-26 15:45:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a00:fd40:c::/48 (AS 61335) for MaxMind entry 2a00:fd40:c:2d00::/56
2026-07-26 15:45:26 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008::/61
2026-07-26 15:45:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:8::/62
2026-07-26 15:45:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:c::/64
2026-07-26 15:45:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:f::/64
2026-07-26 15:45:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:10::/60
2026-07-26 15:45:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:20::/59
2026-07-26 15:45:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:40::/58
2026-07-26 15:45:52 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:80::/57
2026-07-26 15:45:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:100::/56
2026-07-26 15:45:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:200::/55
2026-07-26 15:45:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:400::/54
2026-07-26 15:45:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:800::/53
2026-07-26 15:45:58 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:1000::/52
2026-07-26 15:46:00 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:2000::/51
2026-07-26 15:46:01 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:4000::/50
2026-07-26 15:46:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a01:110:9008::/48 (AS 35106) for MaxMind entry 2a01:110:9008:8000::/49
2026-07-26 15:46:04 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:158::/32 has an exact match 2a01:158::/32 (AS 3249) in BGP
2026-07-26 15:46:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:1b8::/32 has an exact match 2a01:1b8::/32 (AS 1257) in BGP
2026-07-26 15:46:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:1b8::/32 has more specific match 2a01:1b8:5::/48 (AS 206804) in BGP
2026-07-26 15:46:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:6da0::/32 has an exact match 2a01:6da0::/32 (AS 3249) in BGP
2026-07-26 15:46:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:8020::/32 has an exact match 2a01:8020::/32 (AS 199800) in BGP
2026-07-26 15:46:12 +0300 - [get_unique_bgp_routes] - INFO - Processed 1350/1641 prefixes...
2026-07-26 15:46:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:82a0::/32 has no prefixes in BGP
2026-07-26 15:46:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:8640:f::/48 has an exact match 2a01:8640:f::/48 (AS 59711) in BGP
2026-07-26 15:46:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:8640:17::/48 has an exact match 2a01:8640:17::/48 (AS 59711) in BGP
2026-07-26 15:46:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:8640:18::/48 has an exact match 2a01:8640:18::/48 (AS 59711) in BGP
2026-07-26 15:46:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:97a0::/32 has an exact match 2a01:97a0::/32 (AS 34702) in BGP
2026-07-26 15:46:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:a3e0::/32 has no prefixes in BGP
2026-07-26 15:46:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:e740::/29 has no prefixes in BGP
2026-07-26 15:46:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a01:ecc1:e000::/36 has an exact match 2a01:ecc1:e000::/36 (AS 200203) in BGP
2026-07-26 15:46:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:88::/32 has an exact match 2a02:88::/32 (AS 8240) in BGP
2026-07-26 15:46:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:2d8::/32 (AS 9002) for MaxMind entry 2a02:2d8:0:b000::/56
2026-07-26 15:46:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:e80::/32 has an exact match 2a02:e80::/32 (AS 39823) in BGP
2026-07-26 15:46:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:26f7:d0c0::/48 has an exact match 2a02:26f7:d0c0::/48 (AS 36183) in BGP
2026-07-26 15:46:37 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7::/32 (AS 20940) for MaxMind entry 2a02:26f7:d0c1:4000::/64
2026-07-26 15:46:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:26f7:d0c4::/48 has an exact match 2a02:26f7:d0c4::/48 (AS 36183) in BGP
2026-07-26 15:46:41 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7::/32 (AS 20940) for MaxMind entry 2a02:26f7:d0c5:4000::/64
2026-07-26 15:46:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7:d0c8::/48 (AS 36183) for MaxMind entry 2a02:26f7:d0c8:4000::/64
2026-07-26 15:46:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7:d0c8::/48 (AS 36183) for MaxMind entry 2a02:26f7:d0c8:d440::/60
2026-07-26 15:46:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7:d0c8::/48 (AS 36183) for MaxMind entry 2a02:26f7:d0c8:d450::/61
2026-07-26 15:46:52 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7:d0c8::/48 (AS 36183) for MaxMind entry 2a02:26f7:d0c8:d458::/63
2026-07-26 15:46:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7::/32 (AS 20940) for MaxMind entry 2a02:26f7:d0c9:4000::/64
2026-07-26 15:46:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7::/32 (AS 20940) for MaxMind entry 2a02:26f7:d0cc:4000::/64
2026-07-26 15:46:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7::/32 (AS 20940) for MaxMind entry 2a02:26f7:d0cc:d440::/60
2026-07-26 15:46:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7::/32 (AS 20940) for MaxMind entry 2a02:26f7:d0cc:d450::/61
2026-07-26 15:46:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7::/32 (AS 20940) for MaxMind entry 2a02:26f7:d0cc:d458::/63
2026-07-26 15:46:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a02:26f7::/32 (AS 20940) for MaxMind entry 2a02:26f7:d0cd:4000::/64
2026-07-26 15:47:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:29e8::/29 has more specific match 2a02:29eb::/32 (AS 49604) in BGP
2026-07-26 15:47:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:29e8::/29 has more specific match 2a02:29ec::/32 (AS 49604) in BGP
2026-07-26 15:47:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:29e8::/29 has more specific match 2a02:29e9:10::/48 (AS 49604) in BGP
2026-07-26 15:47:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:29e8::/29 has more specific match 2a02:29e9:20::/48 (AS 49604) in BGP
2026-07-26 15:47:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:29e8::/29 has more specific match 2a02:29e9:30::/48 (AS 49604) in BGP
2026-07-26 15:47:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:29e8::/29 has more specific match 2a02:29ea:a::/48 (AS 49604) in BGP
2026-07-26 15:47:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:29e8::/29 has more specific match 2a02:29ea:1e::/48 (AS 49604) in BGP
2026-07-26 15:47:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:29e8::/29 has more specific match 2a02:29ea:ffff::/48 (AS 49604) in BGP
2026-07-26 15:47:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:5740:10::/48 has an exact match 2a02:5740:10::/48 (AS 58065) in BGP
2026-07-26 15:47:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a02:68a0::/32 has an exact match 2a02:68a0::/32 (AS 201906) in BGP
2026-07-26 15:47:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:f80:372::/48 has an exact match 2a03:f80:372::/48 (AS 202759) in BGP
2026-07-26 15:47:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:29c0::/32 has an exact match 2a03:29c0::/32 (AS 61189) in BGP
2026-07-26 15:47:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:29c0::/32 has more specific match 2a03:29c0:1000::/36 (AS 61189) in BGP
2026-07-26 15:47:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:29c0::/32 has more specific match 2a03:29c0:2000::/36 (AS 61189) in BGP
2026-07-26 15:47:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:29c0::/32 has more specific match 2a03:29c0:f1ff::/48 (AS 61189) in BGP
2026-07-26 15:47:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:29c0::/32 has more specific match 2a03:29c0:fffe::/48 (AS 61189) in BGP
2026-07-26 15:47:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:42e0::/32 has no prefixes in BGP
2026-07-26 15:47:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:4360::/32 has an exact match 2a03:4360::/32 (AS 61307) in BGP
2026-07-26 15:47:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:5820::/32 has an exact match 2a03:5820::/32 (AS 47736) in BGP
2026-07-26 15:47:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:5880::/32 has an exact match 2a03:5880::/32 (AS 12757) in BGP
2026-07-26 15:47:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:5880::/32 has more specific match 2a03:5880:104::/48 (AS 12757) in BGP
2026-07-26 15:47:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:95c0::/32 has no prefixes in BGP
2026-07-26 15:47:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:c840::/32 has no prefixes in BGP
2026-07-26 15:47:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:e980::/32 has no prefixes in BGP
2026-07-26 15:47:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:f480::/32 has more specific match 2a03:f480:1::/48 (AS 198068) in BGP
2026-07-26 15:47:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:f480::/32 has more specific match 2a03:f480:2::/48 (AS 198068) in BGP
2026-07-26 15:47:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a03:f480::/32 has more specific match 2a03:f480:3::/48 (AS 198068) in BGP
2026-07-26 15:47:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:3340::/29 has no prefixes in BGP
2026-07-26 15:47:21 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:1400::/39 (AS 54113) for MaxMind entry 2a04:4e41:1401:9000::/52
2026-07-26 15:47:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:1400::/39 (AS 54113) for MaxMind entry 2a04:4e41:1410::/48
2026-07-26 15:47:24 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:1800::/39 (AS 54113) for MaxMind entry 2a04:4e41:1802:1000::/52
2026-07-26 15:47:25 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:1800::/39 (AS 54113) for MaxMind entry 2a04:4e41:1816::/48
2026-07-26 15:47:26 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:4010::/44 (AS 54113) for MaxMind entry 2a04:4e41:4013:f000::/52
2026-07-26 15:47:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:4020::/44 (AS 54113) for MaxMind entry 2a04:4e41:4023:f000::/52
2026-07-26 15:47:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:4030::/44 (AS 54113) for MaxMind entry 2a04:4e41:4033:f000::/52
2026-07-26 15:47:29 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:4040::/44 (AS 54113) for MaxMind entry 2a04:4e41:4043:f000::/52
2026-07-26 15:47:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:4050::/44 (AS 54113) for MaxMind entry 2a04:4e41:4053:f000::/52
2026-07-26 15:47:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:4060::/44 (AS 54113) for MaxMind entry 2a04:4e41:4063:f000::/52
2026-07-26 15:47:33 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:4070::/44 (AS 54113) for MaxMind entry 2a04:4e41:4073:f000::/52
2026-07-26 15:47:33 +0300 - [get_unique_bgp_routes] - INFO - Processed 1400/1641 prefixes...
2026-07-26 15:47:34 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:4080::/44 (AS 54113) for MaxMind entry 2a04:4e41:4083:f000::/52
2026-07-26 15:47:35 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:5600::/39 (AS 54113) for MaxMind entry 2a04:4e41:5601:9000::/52
2026-07-26 15:47:36 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a04:4e41:5600::/39 (AS 54113) for MaxMind entry 2a04:4e41:5610::/48
2026-07-26 15:47:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:6f00::/29 has more specific match 2a04:6f00::/32 (AS 3214) in BGP
2026-07-26 15:47:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:6f00::/29 has more specific match 2a04:6f02::/32 (AS 3214) in BGP
2026-07-26 15:47:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:6f00::/29 has more specific match 2a04:6f03::/32 (AS 3214) in BGP
2026-07-26 15:47:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:6f00::/29 has more specific match 2a04:6f04::/32 (AS 3214) in BGP
2026-07-26 15:47:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:6f00::/29 has more specific match 2a04:6f05::/32 (AS 3214) in BGP
2026-07-26 15:47:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:6f00::/29 has more specific match 2a04:6f06::/32 (AS 3214) in BGP
2026-07-26 15:47:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:6f00::/29 has more specific match 2a04:6f07::/32 (AS 3214) in BGP
2026-07-26 15:47:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:6f00::/29 has more specific match 2a04:6f00:4::/48 (AS 3214) in BGP
2026-07-26 15:47:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:7e80::/29 has an exact match 2a04:7e80::/29 (AS 50794) in BGP
2026-07-26 15:47:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:80c0::/29 has no prefixes in BGP
2026-07-26 15:47:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:c280::/29 has no prefixes in BGP
2026-07-26 15:47:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a04:d400::/29 has no prefixes in BGP
2026-07-26 15:47:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a05:541::/32 (AS 8342) for MaxMind entry 2a05:541:129::/48
2026-07-26 15:47:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a05:1cc0::/29 has an exact match 2a05:1cc0::/29 (AS 201601) in BGP
2026-07-26 15:47:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a05:4080::/29 has no prefixes in BGP
2026-07-26 15:47:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a05:4280::/29 has an exact match 2a05:4280::/29 (AS 62248) in BGP
2026-07-26 15:47:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a05:cfc0::/29 has more specific match 2a05:cfc0:3::/48 (AS 214279) in BGP
2026-07-26 15:47:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a05:cfc0::/29 has more specific match 2a05:cfc0:4::/48 (AS 214279) in BGP
2026-07-26 15:47:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a06:9c0::/29 has an exact match 2a06:9c0::/29 (AS 57934) in BGP
2026-07-26 15:47:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a06:3040:6::/48 has an exact match 2a06:3040:6::/48 (AS 203020) in BGP
2026-07-26 15:47:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a06:6b00::/29 has no prefixes in BGP
2026-07-26 15:47:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a06:a980::/29 has no prefixes in BGP
2026-07-26 15:47:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a06:dd02::/31 has no prefixes in BGP
2026-07-26 15:47:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a06:dd04::/30 has no prefixes in BGP
2026-07-26 15:48:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1180::/29 has an exact match 2a07:1180::/29 (AS 203311) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has an exact match 2a07:1280::/32 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:1000::/36 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:3000::/36 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:e000::/36 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:f000::/36 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:1000::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:1100::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:1200::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:1300::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:1400::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:1f00::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:3000::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:3100::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:3200::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:e000::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:e100::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:e200::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:f000::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:f100::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:f200::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:f300::/40 (AS 206844) in BGP
2026-07-26 15:48:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:1280::/32 has more specific match 2a07:1280:f400::/40 (AS 206844) in BGP
2026-07-26 15:48:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:44c0::/29 has no prefixes in BGP
2026-07-26 15:48:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:7f00::/29 has no prefixes in BGP
2026-07-26 15:48:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:8800::/29 has no prefixes in BGP
2026-07-26 15:48:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:9000::/29 has no prefixes in BGP
2026-07-26 15:48:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:9280::/29 has an exact match 2a07:9280::/29 (AS 202759) in BGP
2026-07-26 15:48:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:9900::/29 has no prefixes in BGP
2026-07-26 15:48:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:d880::/32 has an exact match 2a07:d880::/32 (AS 43357) in BGP
2026-07-26 15:48:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:d880::/32 has more specific match 2a07:d880:2::/48 (AS 43357) in BGP
2026-07-26 15:48:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:d881:3::/48 has an exact match 2a07:d881:3::/48 (AS 43357) in BGP
2026-07-26 15:48:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:d883:704::/48 has an exact match 2a07:d883:704::/48 (AS 43357) in BGP
2026-07-26 15:48:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:d887:3f00::/40 has an exact match 2a07:d887:3f00::/40 (AS 43357) in BGP
2026-07-26 15:48:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:ddc0::/29 has more specific match 2a07:ddc0::/48 (AS 49191) in BGP
2026-07-26 15:48:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:ddc0::/29 has more specific match 2a07:ddc0:1::/48 (AS 49191) in BGP
2026-07-26 15:48:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:ddc0::/29 has more specific match 2a07:ddc0:2::/48 (AS 49191) in BGP
2026-07-26 15:48:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:ddc0::/29 has more specific match 2a07:ddc0:3::/48 (AS 49191) in BGP
2026-07-26 15:48:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000::/46 has more specific match 2a07:e000:1::/48 (AS 206777) in BGP
2026-07-26 15:48:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:4::/48 has no prefixes in BGP
2026-07-26 15:48:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:6::/47 has more specific match 2a07:e000:6::/48 (AS 197739) in BGP
2026-07-26 15:48:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:8::/45 has more specific match 2a07:e000:a::/48 (AS 219342) in BGP
2026-07-26 15:48:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:8::/45 has more specific match 2a07:e000:f::/48 (AS 219166) in BGP
2026-07-26 15:48:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:10::/44 has an exact match 2a07:e000:10::/44 (AS 20473) in BGP
2026-07-26 15:48:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:20::/43 has more specific match 2a07:e000:20::/44 (AS 219207) in BGP
2026-07-26 15:48:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:20::/43 has more specific match 2a07:e000:30::/48 (AS 219166) in BGP
2026-07-26 15:48:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:40::/42 has no prefixes in BGP
2026-07-26 15:48:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:80::/41 has no prefixes in BGP
2026-07-26 15:48:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:100::/40 has an exact match 2a07:e000:100::/40 (AS 20473) in BGP
2026-07-26 15:48:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:200::/39 has no prefixes in BGP
2026-07-26 15:48:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:400::/38 has no prefixes in BGP
2026-07-26 15:48:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:800::/37 has no prefixes in BGP
2026-07-26 15:48:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:1000::/36 has no prefixes in BGP
2026-07-26 15:48:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:2000::/35 has no prefixes in BGP
2026-07-26 15:48:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:4000::/34 has no prefixes in BGP
2026-07-26 15:48:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e000:8000::/33 has no prefixes in BGP
2026-07-26 15:48:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e001::/32 has no prefixes in BGP
2026-07-26 15:48:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e002::/31 has no prefixes in BGP
2026-07-26 15:48:38 +0300 - [get_unique_bgp_routes] - INFO - Processed 1450/1641 prefixes...
2026-07-26 15:48:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a07:e004::/30 has no prefixes in BGP
2026-07-26 15:48:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a09:5840::/29 has an exact match 2a09:5840::/29 (AS 202759) in BGP
2026-07-26 15:48:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a09:8240::/32 has more specific match 2a09:8240:100::/48 (AS 199867) in BGP
2026-07-26 15:48:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a09:bac0:152::/48 has no prefixes in BGP
2026-07-26 15:48:43 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:4c::/64
2026-07-26 15:48:44 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:d7::/64
2026-07-26 15:48:46 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:4c9::/64
2026-07-26 15:48:47 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:4db::/64
2026-07-26 15:48:48 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:58b::/64
2026-07-26 15:48:49 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:5f5::/64
2026-07-26 15:48:50 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:607::/64
2026-07-26 15:48:51 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:6d0::/64
2026-07-26 15:48:53 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:a7d::/64
2026-07-26 15:48:54 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:cfd::/64
2026-07-26 15:48:55 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:1216::/64
2026-07-26 15:48:56 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:1378::/64
2026-07-26 15:48:57 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:170e::/64
2026-07-26 15:48:59 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1000::/48 (AS 13335) for MaxMind entry 2a09:bac0:1000:1717::/64
2026-07-26 15:49:01 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1001::/48 (AS 13335) for MaxMind entry 2a09:bac0:1001:4c::/64
2026-07-26 15:49:03 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac0:1001::/48 (AS 13335) for MaxMind entry 2a09:bac0:1001:323::/64
2026-07-26 15:49:05 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac1::/32 (AS 13335) for MaxMind entry 2a09:bac1:2180::/64
2026-07-26 15:49:06 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac1::/32 (AS 13335) for MaxMind entry 2a09:bac1:2180:3d8::/64
2026-07-26 15:49:08 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac1::/32 (AS 13335) for MaxMind entry 2a09:bac1:21a0::/64
2026-07-26 15:49:09 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac1::/32 (AS 13335) for MaxMind entry 2a09:bac1:21a0:3d8::/64
2026-07-26 15:49:11 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac1::/32 (AS 13335) for MaxMind entry 2a09:bac1:21c0::/64
2026-07-26 15:49:12 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac1::/32 (AS 13335) for MaxMind entry 2a09:bac1:21c0:3d8::/64
2026-07-26 15:49:14 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac1::/32 (AS 13335) for MaxMind entry 2a09:bac1:21e0::/64
2026-07-26 15:49:15 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac1::/32 (AS 13335) for MaxMind entry 2a09:bac1:21e0:3d8::/64
2026-07-26 15:49:16 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac2::/32 (AS 13335) for MaxMind entry 2a09:bac2:3050::/44
2026-07-26 15:49:18 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac3::/32 (AS 13335) for MaxMind entry 2a09:bac3:3050::/44
2026-07-26 15:49:19 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac4::/32 (AS 13335) for MaxMind entry 2a09:bac4:1f8::/45
2026-07-26 15:49:20 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac4::/32 (AS 13335) for MaxMind entry 2a09:bac4:11f8::/45
2026-07-26 15:49:23 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac5::/32 (AS 13335) for MaxMind entry 2a09:bac5:30a0::/44
2026-07-26 15:49:26 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac6::/32 (AS 13335) for MaxMind entry 2a09:bac6:30a0::/44
2026-07-26 15:49:27 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a09:bac6::/32 (AS 13335) for MaxMind entry 2a09:bac6:dac0::/45
2026-07-26 15:49:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a09:c500::/29 has an exact match 2a09:c500::/29 (AS 209842) in BGP
2026-07-26 15:49:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a09:d9c0::/32 has an exact match 2a09:d9c0::/32 (AS 207568) in BGP
2026-07-26 15:49:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a09:f540::/29 has more specific match 2a09:f540::/32 (AS 202376) in BGP
2026-07-26 15:49:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a09:f540::/29 has more specific match 2a09:f541::/32 (AS 202376) in BGP
2026-07-26 15:49:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a09:f540::/29 has more specific match 2a09:f540:3::/48 (AS 202376) in BGP
2026-07-26 15:49:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0a:5b40::/29 has more specific match 2a0a:5b40::/48 (AS 44794) in BGP
2026-07-26 15:49:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0a:5b40::/29 has more specific match 2a0a:5b40:1::/48 (AS 62406) in BGP
2026-07-26 15:49:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0a:5b40::/29 has more specific match 2a0a:5b40:2::/48 (AS 44794) in BGP
2026-07-26 15:49:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0a:5b40::/29 has more specific match 2a0a:5b40:3::/48 (AS 62406) in BGP
2026-07-26 15:49:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0a:acc0::/29 has no prefixes in BGP
2026-07-26 15:49:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0a:ae80::/29 has no prefixes in BGP
2026-07-26 15:49:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:40::/29 has an exact match 2a0b:40::/29 (AS 205930) in BGP
2026-07-26 15:49:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:2540::/29 has more specific match 2a0b:2542:300::/40 (AS 206315) in BGP
2026-07-26 15:49:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:2540::/29 has more specific match 2a0b:2542:900::/40 (AS 8229) in BGP
2026-07-26 15:49:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:2540::/29 has more specific match 2a0b:2542::/48 (AS 137256) in BGP
2026-07-26 15:49:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:2540::/29 has more specific match 2a0b:2542:150::/48 (AS 134666) in BGP
2026-07-26 15:49:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:2540::/29 has more specific match 2a0b:2542:180::/48 (AS 134666) in BGP
2026-07-26 15:49:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:2540::/29 has more specific match 2a0b:2542:182::/48 (AS 134666) in BGP
2026-07-26 15:49:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:2540::/29 has more specific match 2a0b:2542:1ee::/48 (AS 134666) in BGP
2026-07-26 15:49:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:2540::/29 has more specific match 2a0b:2542:1ff::/48 (AS 134666) in BGP
2026-07-26 15:49:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:4440::/29 has no prefixes in BGP
2026-07-26 15:49:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:48c0::/29 has no prefixes in BGP
2026-07-26 15:49:42 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a0b:4e07:3::/48 (AS 11967) for MaxMind entry 2a0b:4e07:3:2330::/60
2026-07-26 15:49:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:6140::/29 has more specific match 2a0b:6140:1::/48 (AS 207254) in BGP
2026-07-26 15:49:43 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:6140::/29 has more specific match 2a0b:6140:2::/48 (AS 207254) in BGP
2026-07-26 15:49:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:6c00::/29 has an exact match 2a0b:6c00::/29 (AS 8240) in BGP
2026-07-26 15:49:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:6c00::/29 has more specific match 2a0b:6c00::/32 (AS 8240) in BGP
2026-07-26 15:49:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:7140:1::/48 has an exact match 2a0b:7140:1::/48 (AS 207408) in BGP
2026-07-26 15:49:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:ac40::/29 has no prefixes in BGP
2026-07-26 15:49:47 +0300 - [get_unique_bgp_routes] - INFO - Processed 1500/1641 prefixes...
2026-07-26 15:49:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:b240::/29 has no prefixes in BGP
2026-07-26 15:49:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:b2c0::/29 has more specific match 2a0b:b2c0::/48 (AS 205504) in BGP
2026-07-26 15:49:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:b2c0::/29 has more specific match 2a0b:b2c0:2::/48 (AS 8892) in BGP
2026-07-26 15:49:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:ba40::/29 has no prefixes in BGP
2026-07-26 15:49:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0b:f740::/29 has an exact match 2a0b:f740::/29 (AS 198776) in BGP
2026-07-26 15:49:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0c:1180::/29 has more specific match 2a0c:1180::/40 (AS 12293) in BGP
2026-07-26 15:49:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0c:9d40::/29 has no prefixes in BGP
2026-07-26 15:49:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0c:e240::/32 has no prefixes in BGP
2026-07-26 15:49:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:3344:7b00::/40 has an exact match 2a0d:3344:7b00::/40 (AS 14593) in BGP
2026-07-26 15:49:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:3e40::/29 has no prefixes in BGP
2026-07-26 15:49:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:6800::/29 has an exact match 2a0d:6800::/29 (AS 14576) in BGP
2026-07-26 15:49:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:6b00::/29 has no prefixes in BGP
2026-07-26 15:50:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:8f00::/29 has no prefixes in BGP
2026-07-26 15:50:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:a180::/32 has an exact match 2a0d:a180::/32 (AS 211494) in BGP
2026-07-26 15:50:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:d904:2::/48 has an exact match 2a0d:d904:2::/48 (AS 207567) in BGP
2026-07-26 15:50:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:e500::/32 has an exact match 2a0d:e500::/32 (AS 41625) in BGP
2026-07-26 15:50:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:e500::/32 has more specific match 2a0d:e500:1::/48 (AS 41625) in BGP
2026-07-26 15:50:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0d:e500::/32 has more specific match 2a0d:e500:2::/48 (AS 41625) in BGP
2026-07-26 15:50:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4201:2000::/47 has more specific match 2a0e:4201:2000::/48 (AS 137409) in BGP
2026-07-26 15:50:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4201:2000::/47 has more specific match 2a0e:4201:2001::/48 (AS 137409) in BGP
2026-07-26 15:50:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4201:2000::/47 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:50:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4440::/29 has no prefixes in BGP
2026-07-26 15:50:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940::/46 has more specific match 2a0e:4940:1::/48 (AS 206804) in BGP
2026-07-26 15:50:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940::/46 has more specific match 2a0e:4940:2::/48 (AS 206804) in BGP
2026-07-26 15:50:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940::/46 has more specific match 2a0e:4940:3::/48 (AS 206804) in BGP
2026-07-26 15:50:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:4::/47 has more specific match 2a0e:4940:4::/48 (AS 206804) in BGP
2026-07-26 15:50:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:4::/47 has more specific match 2a0e:4940:5::/48 (AS 206804) in BGP
2026-07-26 15:50:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:4::/47 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:50:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:7::/48 has no prefixes in BGP
2026-07-26 15:50:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:8::/45 has no prefixes in BGP
2026-07-26 15:50:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:10::/44 has no prefixes in BGP
2026-07-26 15:50:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:20::/43 has no prefixes in BGP
2026-07-26 15:50:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:40::/42 has no prefixes in BGP
2026-07-26 15:50:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:80::/41 has no prefixes in BGP
2026-07-26 15:50:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:100::/40 has no prefixes in BGP
2026-07-26 15:50:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:200::/39 has no prefixes in BGP
2026-07-26 15:50:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:400::/38 has no prefixes in BGP
2026-07-26 15:50:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:800::/37 has no prefixes in BGP
2026-07-26 15:50:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:1000::/36 has no prefixes in BGP
2026-07-26 15:50:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:2000::/35 has no prefixes in BGP
2026-07-26 15:50:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:4000::/34 has no prefixes in BGP
2026-07-26 15:50:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:4940:8000::/33 has no prefixes in BGP
2026-07-26 15:50:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:7c80::/29 has an exact match 2a0e:7c80::/29 (AS 208834) in BGP
2026-07-26 15:50:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:8680::/29 has no prefixes in BGP
2026-07-26 15:50:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:a840::/32 has more specific match 2a0e:a840::/48 (AS 208440) in BGP
2026-07-26 15:50:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:a840::/32 has more specific match 2a0e:a840:1::/48 (AS 208440) in BGP
2026-07-26 15:50:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:a840::/32 has more specific match 2a0e:a840:20::/48 (AS 208440) in BGP
2026-07-26 15:50:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:e740::/29 has more specific match 2a0e:e740::/30 (AS 208338) in BGP
2026-07-26 15:50:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:e740::/29 has more specific match 2a0e:e744::/30 (AS 208283) in BGP
2026-07-26 15:50:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0e:e740::/29 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:50:28 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a0e:ec05::/32 (AS 52042) for MaxMind entry 2a0e:ec05:9bc0::/42
2026-07-26 15:50:30 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a0e:ec05::/32 (AS 52042) for MaxMind entry 2a0e:ec05:9c00::/40
2026-07-26 15:50:31 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a0e:ec05::/32 (AS 52042) for MaxMind entry 2a0e:ec05:9d00::/41
2026-07-26 15:50:32 +0300 - [get_unique_bgp_routes] - INFO - Using best less-specific match 2a0e:ec05::/32 (AS 52042) for MaxMind entry 2a0e:ec05:9d80::/42
2026-07-26 15:50:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a0f:a680::/29 has no prefixes in BGP
2026-07-26 15:50:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:1::/48 has an exact match 2a10:1fc0:1::/48 (AS 62005) in BGP
2026-07-26 15:50:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:e::/47 has more specific match 2a10:1fc0:e::/48 (AS 62005) in BGP
2026-07-26 15:50:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:e::/47 has more specific match 2a10:1fc0:f::/48 (AS 62005) in BGP
2026-07-26 15:50:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:e::/47 is perfectly covered by its more-specific BGP routes. Ignoring possible less-specifics.
2026-07-26 15:50:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:13::/48 has an exact match 2a10:1fc0:13::/48 (AS 62005) in BGP
2026-07-26 15:50:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:14::/46 has more specific match 2a10:1fc0:14::/48 (AS 62005) in BGP
2026-07-26 15:50:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:14::/46 has more specific match 2a10:1fc0:15::/48 (AS 62005) in BGP
2026-07-26 15:50:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:14::/46 has more specific match 2a10:1fc0:16::/48 (AS 62005) in BGP
2026-07-26 15:50:48 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:18::/45 has no prefixes in BGP
2026-07-26 15:50:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:20::/43 has no prefixes in BGP
2026-07-26 15:50:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:40::/42 has no prefixes in BGP
2026-07-26 15:50:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:80::/41 has no prefixes in BGP
2026-07-26 15:50:51 +0300 - [get_unique_bgp_routes] - INFO - Processed 1550/1641 prefixes...
2026-07-26 15:50:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:100::/40 has no prefixes in BGP
2026-07-26 15:50:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:200::/39 has no prefixes in BGP
2026-07-26 15:50:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:400::/38 has no prefixes in BGP
2026-07-26 15:50:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:800::/37 has no prefixes in BGP
2026-07-26 15:50:56 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:1000::/36 has no prefixes in BGP
2026-07-26 15:50:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:2000::/35 has no prefixes in BGP
2026-07-26 15:51:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:4000::/34 has no prefixes in BGP
2026-07-26 15:51:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc0:8000::/33 has no prefixes in BGP
2026-07-26 15:51:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc1::/32 has no prefixes in BGP
2026-07-26 15:51:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc2::/31 has no prefixes in BGP
2026-07-26 15:51:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:1fc4::/30 has no prefixes in BGP
2026-07-26 15:51:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:2a00::/29 has no prefixes in BGP
2026-07-26 15:51:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:46c0::/29 has more specific match 2a10:46c0::/32 (AS 208367) in BGP
2026-07-26 15:51:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b000::/29 has no prefixes in BGP
2026-07-26 15:51:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140::/48 has no prefixes in BGP
2026-07-26 15:51:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:2::/47 has no prefixes in BGP
2026-07-26 15:51:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:4::/46 has no prefixes in BGP
2026-07-26 15:51:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:8::/45 has no prefixes in BGP
2026-07-26 15:51:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:10::/44 has no prefixes in BGP
2026-07-26 15:51:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:20::/43 has no prefixes in BGP
2026-07-26 15:51:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:40::/42 has no prefixes in BGP
2026-07-26 15:51:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:80::/41 has no prefixes in BGP
2026-07-26 15:51:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:100::/40 has no prefixes in BGP
2026-07-26 15:51:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:200::/39 has no prefixes in BGP
2026-07-26 15:51:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:400::/38 has no prefixes in BGP
2026-07-26 15:51:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:800::/37 has no prefixes in BGP
2026-07-26 15:51:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:1000::/36 has no prefixes in BGP
2026-07-26 15:51:27 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:2000::/35 has no prefixes in BGP
2026-07-26 15:51:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:4000::/34 has no prefixes in BGP
2026-07-26 15:51:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b140:8000::/33 has no prefixes in BGP
2026-07-26 15:51:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b141::/32 has no prefixes in BGP
2026-07-26 15:51:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b142::/31 has no prefixes in BGP
2026-07-26 15:51:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:b144::/30 has no prefixes in BGP
2026-07-26 15:51:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:c940::/30 has more specific match 2a10:c943::/32 (AS 214790) in BGP
2026-07-26 15:51:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:c940::/30 has more specific match 2a10:c943:100::/48 (AS 214790) in BGP
2026-07-26 15:51:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:c940::/30 has more specific match 2a10:c943:200::/48 (AS 214790) in BGP
2026-07-26 15:51:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:c945::/32 has no prefixes in BGP
2026-07-26 15:51:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:c946::/31 has no prefixes in BGP
2026-07-26 15:51:36 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a10:f040::/32 has no prefixes in BGP
2026-07-26 15:51:37 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a11:1400:5043::/48 has an exact match 2a11:1400:5043::/48 (AS 219436) in BGP
2026-07-26 15:51:38 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a11:2600::/29 has no prefixes in BGP
2026-07-26 15:51:39 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a11:6a00::/29 has more specific match 2a11:6a00::/48 (AS 48539) in BGP
2026-07-26 15:51:40 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a11:9000::/29 has no prefixes in BGP
2026-07-26 15:51:41 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a11:cc40::/29 has no prefixes in BGP
2026-07-26 15:51:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:e00::/32 has an exact match 2a12:e00::/32 (AS 214132) in BGP
2026-07-26 15:51:42 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:e00::/32 has more specific match 2a12:e00:100::/40 (AS 214132) in BGP
2026-07-26 15:51:44 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:1200::/29 has no prefixes in BGP
2026-07-26 15:51:45 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:1b80::/32 has an exact match 2a12:1b80::/32 (AS 16509) in BGP
2026-07-26 15:51:46 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:2780::/29 has more specific match 2a12:2780::/48 (AS 48539) in BGP
2026-07-26 15:51:47 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:7280::/29 has an exact match 2a12:7280::/29 (AS 396982) in BGP
2026-07-26 15:51:49 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:7c40::/29 has no prefixes in BGP
2026-07-26 15:51:50 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:8200::/29 has more specific match 2a12:8200::/48 (AS 48539) in BGP
2026-07-26 15:51:51 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:8340::/29 has more specific match 2a12:8340::/48 (AS 201273) in BGP
2026-07-26 15:51:51 +0300 - [get_unique_bgp_routes] - INFO - Processed 1600/1641 prefixes...
2026-07-26 15:51:52 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:9d40::/29 has no prefixes in BGP
2026-07-26 15:51:53 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:ab00::/29 has more specific match 2a12:ab00::/48 (AS 48539) in BGP
2026-07-26 15:51:54 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:bc40::/29 has no prefixes in BGP
2026-07-26 15:51:55 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:bec4:150::/44 has an exact match 2a12:bec4:150::/44 (AS 213702) in BGP
2026-07-26 15:51:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:c740::/29 has more specific match 2a12:c740::/48 (AS 62005) in BGP
2026-07-26 15:51:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:c740::/29 has more specific match 2a12:c740:1::/48 (AS 62005) in BGP
2026-07-26 15:51:57 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a12:c740::/29 has more specific match 2a12:c740:2::/48 (AS 62005) in BGP
2026-07-26 15:51:58 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:240:7::/48 has an exact match 2a13:240:7::/48 (AS 207137) in BGP
2026-07-26 15:51:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:b80::/29 has more specific match 2a13:b80::/32 (AS 203065) in BGP
2026-07-26 15:51:59 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:b80::/29 has more specific match 2a13:b81::/32 (AS 203065) in BGP
2026-07-26 15:52:00 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:1c80::/29 has no prefixes in BGP
2026-07-26 15:52:01 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:6000::/29 has no prefixes in BGP
2026-07-26 15:52:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:7a40::/29 has more specific match 2a13:7a42:100::/40 (AS 57196) in BGP
2026-07-26 15:52:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:7a40::/29 has more specific match 2a13:7a42:200::/40 (AS 57196) in BGP
2026-07-26 15:52:02 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:7a40::/29 has more specific match 2a13:7a42:300::/40 (AS 57196) in BGP
2026-07-26 15:52:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:85c0::/29 has more specific match 2a13:85c0:100::/40 (AS 216408) in BGP
2026-07-26 15:52:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:85c0::/29 has more specific match 2a13:85c0::/48 (AS 16509) in BGP
2026-07-26 15:52:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:85c0::/29 has more specific match 2a13:85c0:1::/48 (AS 16509) in BGP
2026-07-26 15:52:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:85c0::/29 has more specific match 2a13:85c0:10::/48 (AS 16509) in BGP
2026-07-26 15:52:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:85c0::/29 has more specific match 2a13:85c0:11::/48 (AS 16509) in BGP
2026-07-26 15:52:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:85c0::/29 has more specific match 2a13:85c0:20::/48 (AS 16509) in BGP
2026-07-26 15:52:03 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:85c0::/29 has more specific match 2a13:85c0:21::/48 (AS 16509) in BGP
2026-07-26 15:52:05 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:a5c3:4300::/42 has an exact match 2a13:a5c3:4300::/42 (AS 44324) in BGP
2026-07-26 15:52:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc0::/31 has more specific match 2a13:adc0::/48 (AS 3920) in BGP
2026-07-26 15:52:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc0::/31 has more specific match 2a13:adc0:1::/48 (AS 3920) in BGP
2026-07-26 15:52:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc0::/31 has more specific match 2a13:adc0:2::/48 (AS 3920) in BGP
2026-07-26 15:52:06 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc0::/31 has more specific match 2a13:adc0:3::/48 (AS 3920) in BGP
2026-07-26 15:52:07 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc2::/32 has no prefixes in BGP
2026-07-26 15:52:08 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:1::/48 has no prefixes in BGP
2026-07-26 15:52:09 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:2::/47 has no prefixes in BGP
2026-07-26 15:52:10 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:4::/46 has no prefixes in BGP
2026-07-26 15:52:11 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:8::/45 has no prefixes in BGP
2026-07-26 15:52:12 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:10::/44 has no prefixes in BGP
2026-07-26 15:52:13 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:20::/43 has no prefixes in BGP
2026-07-26 15:52:14 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:40::/42 has no prefixes in BGP
2026-07-26 15:52:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:80::/41 has no prefixes in BGP
2026-07-26 15:52:15 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:100::/40 has no prefixes in BGP
2026-07-26 15:52:16 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:200::/39 has no prefixes in BGP
2026-07-26 15:52:17 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:400::/38 has no prefixes in BGP
2026-07-26 15:52:18 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:800::/37 has no prefixes in BGP
2026-07-26 15:52:19 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:1000::/36 has no prefixes in BGP
2026-07-26 15:52:20 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:2000::/35 has no prefixes in BGP
2026-07-26 15:52:21 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:4000::/34 has no prefixes in BGP
2026-07-26 15:52:22 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc3:8000::/33 has no prefixes in BGP
2026-07-26 15:52:23 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:adc4::/30 has no prefixes in BGP
2026-07-26 15:52:24 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:c180::/29 has no prefixes in BGP
2026-07-26 15:52:25 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:c5c0::/32 has an exact match 2a13:c5c0::/32 (AS 216263) in BGP
2026-07-26 15:52:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:ca40::/29 has more specific match 2a13:ca40::/32 (AS 202635) in BGP
2026-07-26 15:52:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:ca40::/29 has more specific match 2a13:ca41::/32 (AS 202635) in BGP
2026-07-26 15:52:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:ca40::/29 has more specific match 2a13:ca42::/32 (AS 202635) in BGP
2026-07-26 15:52:26 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:ca40::/29 has more specific match 2a13:ca43::/32 (AS 202635) in BGP
2026-07-26 15:52:28 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:cec0::/29 has an exact match 2a13:cec0::/29 (AS 31605) in BGP
2026-07-26 15:52:29 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:e5c0::/32 has more specific match 2a13:e5c0:8888::/48 (AS 47294) in BGP
2026-07-26 15:52:30 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a13:f0c0::/29 has no prefixes in BGP
2026-07-26 15:52:31 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a14:280::/29 has no prefixes in BGP
2026-07-26 15:52:32 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a14:67c2:895::/48 has an exact match 2a14:67c2:895::/48 (AS 214848) in BGP
2026-07-26 15:52:33 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a14:7580:6000::/40 has more specific match 2a14:7580:6010::/44 (AS 209554) in BGP
2026-07-26 15:52:34 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a14:8c80::/32 has no prefixes in BGP
2026-07-26 15:52:35 +0300 - [get_unique_bgp_routes] - INFO - MaxMind entry 2a14:b680::/32 has more specific match 2a14:b680::/48 (AS 204671) in BGP
2026-07-26 15:52:35 +0300 - [get_unique_bgp_routes] - INFO - Found 1273 prefixes in BGP
2026-07-26 15:52:35 +0300 - [get_as_names] - INFO - Fetching names for 282 unique ASNs...
2026-07-26 15:54:28 +0300 - [get_aspas] - INFO - Loading RPKI ASPAs from "/var/lib/rpki-client/json"...
2026-07-26 15:54:30 +0300 - [get_aspas] - INFO - Loaded 2488 validated ASPA payloads
2026-07-26 15:54:30 +0300 - [main] - INFO - Starting to compare 282 AS numbers associated with EE against RPKI ASPAs
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 42 (WOODYNET-1 - WoodyNet, Inc.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 174 (COGENT-174 - Cogent Communications, LLC) has an ASPA object with following set of provider ASes: 0
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 1257 (SWIPNET - Tele2 Sverige AB) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 1273 (CW - IDDQD-AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 1299 (TWELVE99 Arelion Sweden AB) has an ASPA object with following set of provider ASes: 0
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 2586 (ELISAEE-AS Elisa Eesti AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 2686 (ATGS-MMD-AS - AT&T Enterprises, LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3130 (RGNET-SEA RGnet OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3214 (XTOM xTom GmbH) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3221 (EENet-AS Haridus- ja Teadusministeerium) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3249 (ESTPAK Telia Eesti AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3257 (GTT-BACKBONE GTT Communications Inc.) has an ASPA object with following set of provider ASes: 0
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3301 (TELIANET-SWEDEN Telia Company AB) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3320 (DTAG Deutsche Telekom AG) has an ASPA object with following set of provider ASes: 0
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3327 (CITIC CITIC Telecom CPC Netherlands B.V.) has an ASPA object with following set of provider ASes: 2914, 3216, 3257, 3326, 6453, 8359, 12741, 59692, 203790
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3332 (SWEDBANK-AS Swedbank AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3549 (LVLT-3549 - Level 3 Parent, LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 3920 (PUSHPKT PUSHPKT OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 6939 (HURRICANE - Hurricane Electric LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 7377 (UCSD - University of California, San Diego) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 8229 (KIBERNET-AS KiberNet Kft.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 8240 (AS8240 Information System Authority) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 8342 (RTCOMM-AS JSC RTComm.RU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 8728 (AS INFONET) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 8892 (SKLNK UAB Skylink LT.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 9002 (RETN-AS RETN Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 9009 (M247 M247 Europe SRL) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 9434 (ABONE-AS-AP - Internet Initiative Japan, Inc.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 10779 (STEPBROBD - StepBroBD, Inc.) has an ASPA object with following set of provider ASes: 3204, 20473, 21700, 23961, 35661, 36236
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 11967 (HOP179 Hop179 OU) has an ASPA object with following set of provider ASes: 835, 1299, 6939, 34927, 213449, 213753, 214809, 215828
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 12293 (XVID Xvid Services OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 12337 (NORIS-NETWORK noris network AG) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 12372 (Cubic-Telecom Cubic Telecom Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 12552 (GlobalConnect-AS12552 GlobalConnect AB) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 12757 (IPTRON IPTRON.NET OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 13150 (CATON CATO NETWORKS LTD) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 13238 (YANDEX YANDEX LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 13335 (CLOUDFLARENET - Cloudflare, Inc.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 13449 (DXMS - Dexamis) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 14576 (HOSTING-SOLUTIONS - Hosting Solution Ltd.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 14593 (SPACEX-STARLINK - Space Exploration Technologies Corporation) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 15083 (INFOLINK-MIA-US - Infolink Global Corporation) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 15169 (GOOGLE - Google LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 16255 (IRIDIUM-AS IridiumProvider OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 16276 (OVH OVH SAS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 16509 (AMAZON-02 - Amazon.com, Inc.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 20473 (AS-VULTR - The Constant Company, LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 20648 (TMN-SA TMN SA) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 20940 (AKAMAI-ASN1 Akamai International B.V.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 20948 (SKYLINK-AS Skylink Networking Ltd) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 25369 (BANDWIDTH-AS Hydra Communications Ltd) has an ASPA object with following set of provider ASes: 174, 1299, 3223, 3257, 13335
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 29286 (SKYLOGIC-AS SKYLOGIC S.P.A.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 29802 (HVC-AS - HIVELOCITY, Inc.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 30967 (TRUPHONE-LTD TP Global Operations Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 31081 (RIIGIKONTROLL-AS National Audit Office of Estonia) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 31365 (NGI2-TR NGI2 Technologies OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 31605 (ALLOY-NETWORKS Titanium OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 34702 (WAVECOM-AS Aktsiaselts WaveCom) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 34729 (SILBERAUTO Veho Baltics OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 34800 (SBAG Securebit AG) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 35004 (NETGRUP Branch Enterprise "Netgroup-Service") does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 35106 (MICROSOFT-LIVE-MEETING Microsoft Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 36183 (AKAMAI-AS - Akamai Technologies, Inc.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 37027 (Simbanet (T) Limited - Simbanet (T) Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 37518 (Fiber Grid INC - Fiber Grid INC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 39038 (KERNEL-AS Kernel AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 39486 (HOSTROYALE HostRoyale Technologies Pvt Ltd) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 39632 (EESTIPANK Eesti Pank) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 39823 (COMPIC Compic OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 41625 (ETSERVICE-AS Express Teleservice Corp) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 41745 (FORTIS-AS Baykov Ilya Sergeevich) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 42012 (ETV-AS Estonian Public Broadcasting) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 42016 (TLL-AERO-AS AS Tallinna Lennujaam) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 42300 (TOPCONNECT-AS TOP CONNECT OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 42380 (ERGOLT-AS Ergo Insurance SE) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 42472 (SMARTEN-AS AS Smarten Logistics) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 42689 (Glide Glide Student & Residential Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 42831 (UKSERVERS-AS UK Dedicated Servers Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 43108 (GARM-AS GARMTECH LP) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 43357 (OWL Owl Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 43682 (EE-SEB-AS AS SEB Pank) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 43881 (SMARTLINK-AS Revnetek Systems OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 43883 (CITY-AS Citynet OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 43937 (PTNET Playtech Estonia OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 43958 (TALLINK-AS AS Tallink Grupp) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 43993 (ITel-AS IronTelecom OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 44066 (DE-FIRSTCOLO firstcolo GmbH) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 44324 (MOEDOVE-AS MoeDove LLC) has an ASPA object with following set of provider ASes: 3204, 3356, 6204, 6939, 7720, 8772, 8849, 18041, 18423, 29632, 31898, 32595, 33387, 34927, 38074, 40792, 47272, 48266, 53356, 53667, 53808, 59105, 134823, 134835, 138997, 140227, 202782, 206216, 206499, 207841, 216211, 393577
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 44444 (Forcepoint-Cloud-AS Forcepoint UK Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 44559 (ITHOSTLINE IT HOSTLINE LTD) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 44794 (DNSCALE DNScale OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 44839 (TELEGRUPP-AS Telegrupp AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 44929 (NORD_CONNECT Nord Connect OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 47143 (TDHN Todayhost Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 47294 (NOMD-AS Nomadl OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 47525 (TBB-AS AS TBB pank) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 47736 (SMIT IT and Development Center of Ministry of Interior, Estonia) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 48539 (bifrost-systems Bifrost Systems OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 48798 (SNLT-AS SIA "BITE Latvija") does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 48964 (ENTERRA-as Private Enterprise "Enterra") does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 49191 (SOFTERIUM-AS Global Software Investment OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 49419 (CANDIDATOR-AB Iver Sverige AB) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 49604 (ZONE Zone Media OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 50794 (levira Levira AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 51103 (EDS-EE EDS SYSTEMS OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 51349 (EIS-AS Foundation Eesti Interneti Sihtasutus) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 51504 (Telset AS Telset) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 51964 (ORANGE-BUSINESS-SERVICES-IPSN-ASN ORANGE BUSINESS SERVICES U.S. Inc.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 52042 (Kew Kew Solutions Unipessoal Lda) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 54113 (FASTLY - Fastly, Inc.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 55256 (NETSKOPE - Netskope Inc) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 56588 (EE-CERT Information System Authority) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 57043 (HOSTKEY-AS HOSTKEY B.V.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 57063 (PUZL-AS GPU Computing OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 57196 (CLONOTH Clonoth OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 57201 (EDF-AS Estonian Defence Forces) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 57858 (AS57858 Angelnet Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 57873 (SONICTEST SONICTEST Ltd.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 57934 (WJY-AS WJY OU) has an ASPA object with following set of provider ASes: 3204
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 58061 (SCALAXY-AS Scalaxy B.V.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 58065 (PacketExchange Orion Network Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 59711 (HZ-EU-AS HZ Hosting Ltd) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 59725 (Solifinance-AS Solifinance OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 59807 (SWEDBANK-AS Swedbank AB) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 60415 (LOGINET-AS Loginet Solutions LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 60528 (MYWEBLTD MYWEB LIMITED) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 60608 (Olympic Olympic Entertainment Group AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 60664 (X-ION x-ion GmbH) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 61189 (ELKDATA Elkdata OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 61307 (EE-AS-STV AS STV) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 61328 (METROTEC OU Metrotec) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 61335 (OOO-Sysmedia-as PE Denis Podolskii) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 62005 (BV-EU-AS BlueVPS OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 62024 (PACS SIHTASUTUS EESTI TERVISHOIU PILDIPANK) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 62044 (ZSCALER-EMEA Zscaler Switzerland GmbH) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 62240 (Clouvider Clouvider Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 62248 (MODIRUM MODIRUM MDPAY OU) has an ASPA object with following set of provider ASes: 1299, 2116, 13335, 50304, 208367
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 62406 (DNSCALE DNScale OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 62407 (MHCOM-AS MHCOM GmbH) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 133499 (HOSTROYALETECHNOLOGIES-AS-AP - HostRoyale Technologies Pvt Ltd) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 134666 (HoshiNetwork - Hoshi Network) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 137256 (CATIO-NETWORK-AS-AP - CatIO Network) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 137409 (GSLNETWORKS-AS-AP - GSL Networks Pty LTD) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 142108 (ROTKONETWORKSOU-AS-AP - Rotko Networks) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 152179 (GCNL-AS-AP - GLOBAL COMMUNICATION NETWORK LIMITED) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 196743 (interframe OU Interframe) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 197060 (IP-KONEKESKUSTEOU Prominion OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 197289 (HELMES-AS AS HELMES) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 197313 (RMV Roman Veligon) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 197517 (SALVA-AS Salva Kindlustuse AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 197537 (WISDOM-CLOUD WISDOM CLOUD INTERNET TECHNOLOGY PTE. LTD.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 197574 (EXPRESSHOST ExpressHost Ltd) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 197611 (LHV-AS AS LHV Pank) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 197739 (Astranance Astranance LLC FZ) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 198006 (bearmetal Bear Metal OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 198068 (PAGM-AS P.A.G.M. OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 198335 (TRANSATEL TRANSATEL SAS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 198379 (EE-ATEA AS Atea) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 198605 (AVAST-AS-DC AVAST Software s.r.o.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 198632 (EE-ESTPAK-IPT Telia Eesti AS) has an ASPA object with following set of provider ASes: 3249
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 198776 (Edelaraudtee EDELARAUDTEE AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 198966 (FILL Reintiler OU) has an ASPA object with following set of provider ASes: 3249, 3327
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 199144 (HEXCORECLOUD-AS HexCore cloud s.r.o.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 199328 (EKSPRESS-DIGITAL Ekspress Grupp AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 199527 (BITE-LT-AS UAB "Bite Lietuva") does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 199800 (VORGUVARA OIXIO IT AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 199867 (PAGM-AS-2 P.A.G.M. OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 200017 (Ecolando Elisteka UAB) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 200203 (DATABRIDGE GLOBAL DATA BRIDGE INTERNATIONAL LIMITED) has an ASPA object with following set of provider ASes: 49418
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 200425 (BG-TAL Genius Sports UK Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 200804 (NSS OU NORTHSIDE SOLUTIONS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 201128 (TR-BILINTEL Bilintel Bilisim Ticaret Limited Sirketi) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 201273 (CUBE2 cubequadrat OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 201341 (Centurion-Internet-services trafficforce, UAB) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 201601 (Astrec-Data Astrec Data OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 201906 (EESTIPOST-AS Eesti Post AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202063 (Admiral-Markets Admiral Markets AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202106 (GAMETECH GAMETECH DIJITAL TEKNOLOJI ANONIM SIRKETI) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202225 (bighost-nl Helionet OU) has an ASPA object with following set of provider ASes: 8315, 49981
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202276 (ibossripe IBOSS, INC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202376 (ARVID-LOGICUM Arvid Logicum OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202480 (EE-TallinnaSadam AS Tallinna Sadam) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202635 (SERVERFARM Server Farm LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202652 (ELEVI-AS Elevi AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202656 (XServerCloud Ivanov Vitaliy Sergeevich) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 202759 (FairyHosting RJ Network OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 203020 (HostRoyale HostRoyale Technologies Pvt Ltd) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 203021 (TERVISEKASSA Tervisekassa) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 203065 (eu-LISA eu-LISA) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 203081 (GEENET Geenet OY) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 203311 (CCDCOE NATO Cooperative Cyber Defence Centre of Excellence) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 203545 (NERZEN-BILISIM-TEKNOLOJILERI Savas Anac) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 203701 (ROCKET-AS RocketConnect OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 203906 (PERH Sihtasutus Pohja-Eesti Regionaalhaigla) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 204072 (QUICKPORT Quickport OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 204384 (SweetTV LLC "OTT UKRAINE") does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 204411 (BIGBANK Bigbank AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 204595 (UUSPROGRAMM UUS PROGRAMM) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 204671 (HABR-AS Habr Europe OU) has an ASPA object with following set of provider ASes: 174, 3223, 6939, 8728, 9002
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 204785 (TakeHost Raul Ghita trading as 'Ghita Telekom') does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 205346 (EANS Lennuliiklusteeninduse AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 205504 (FAL-AS Skylink Networking Ltd) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 205563 (zGato Marc Gomez) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 205930 (VIRTUAALCOM Virtuaal.com OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 205950 (INFONET-DC INFONET DC OY) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 206082 (DANISH-CROWN-AS Danish Crown A/S) has an ASPA object with following set of provider ASes: 3257, 31027, 200910
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 206084 (velosiot VELOS IOT JERSEY LIMITED) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 206315 (SHUCHENG Shucheng Li) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 206714 (SKIDSOLUTIONS SK ID Solutions AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 206715 (UXHOST UXHOST LTD) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 206777 (MSINGH MOHIT SINGH) has an ASPA object with following set of provider ASes: 3920, 137409
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 206804 (EstNOC-GLOBAL EstNOC OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 206844 (RIKS Riigi Info- ja Kommunikatsioonitehnoloogia Keskus) has an ASPA object with following set of provider ASes: 8240
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 206919 (AGL-DIVISION-AS Carizma Invest OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 207137 (PACKETHUBSA PacketHub S.A.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 207254 (EE-emeedia AS Postimees Grupp) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 207408 (servinga-EE servinga GmbH) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 207522 (mygaru_au Mygaru OU Private Limited Company) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 207567 (INTEZIONET-AS Intezio Worldwide Limited) has an ASPA object with following set of provider ASes: 49581, 62255, 209693
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 207568 (teleone Teleone OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 207819 (novametro NOVAMETRO OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 207872 (CTE1 OU CSC Telecom Estonia) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 208076 (INFRA1-AS-EE Infra1 OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 208223 (FOXO-AS SHU-HAO TUNG) has an ASPA object with following set of provider ASes: 6939, 14447, 17408, 18041, 20473, 27523, 44324, 53808, 59105, 204539, 204921, 209533, 212895, 213605, 215828, 393577
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 208283 (Cybernetica2-EE Cybernetica AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 208338 (Cybernetica-EE Cybernetica AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 208367 (CSPACEHOSTINGS CSpace Hostings OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 208398 (TELETECH Edge Technology Plus d.o.o. Beograd) has an ASPA object with following set of provider ASes: 174, 1299, 3491, 6762
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 208440 (GMHOST-EE GmhostGrupp OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 208673 (ESTOXY-EE ESTOXY OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 208834 (COOPPANK Coop Pank AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209153 (ARVID Arvid Logicum OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209181 (ZENEX5IVE-NL Zenex 5ive Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209242 (CLOUDFLARESPECTRUM Cloudflare London, LLC) has an ASPA object with following set of provider ASes: 13335
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209372 (WSTelecom_Customers WS Telecom Inc) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209378 (INIOS-AS Inios Oy) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209554 (ISIF-AS ISIF OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209587 (eestiloto AS Eesti Loto) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209693 (OC-NETWORK OC NETWORKS LIMITED) has an ASPA object with following set of provider ASes: 9002, 30823, 49581, 49612, 51765, 62255, 201814, 207208, 215730
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209798 (EASA Eesti Avaliku Sektori Andmeside MTU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 209842 (CYBEXER CybExer Technologies OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 210002 (STP SmartTel Plus OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 210302 (PIPEDRIVE-M3 Pipedrive OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 210434 (AS-NETS360 nets360 OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 210671 (Virtuaalinfra-AS Virtuaalinfra OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 210734 (IPHOSTER IPHOSTER OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 211192 (Netwave-AS-AP NetWave Inc.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 211328 (nets-ee-as Nets Estonia AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 211451 (EEMCF MCF Group Estonia OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 211494 (NARAYANA Narayana OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 212238 (CDNEXT Datacamp Limited) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 212743 (ETERNITY-AS ETERNITY INTERNATIONAL LIMITED) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 212980 (UAB-ATLANTIS-CAPITAL UAB "Atlantis Capital") does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 213172 (ee-tehik Health and Welfare Information Systems) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 213459 (SNOWD Snowd Security OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 213476 (LITLINK Litlink UAB) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 213702 (QWINS-LTD QWINS LTD) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 213757 (IMPRESSIVE-SOLUTIONS-AS Impressive Solutions OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 213915 (HOSTES-AS HOSTES LTD) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 214132 (EE-3NV-AS 3NV OU) has an ASPA object with following set of provider ASes: 174, 1257
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 214279 (DASABO DASABO OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 214432 (ZLIDC Zhilian Technology CO., LTD.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 214623 (ON2644819-NET 2644819 Ontario Inc) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 214639 (TAKEHOST-AS Raul Ghita trading as 'Ghita Telekom') does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 214776 (TELIQON-AS Teliqon Communications OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 214790 (BRAINOZA Brainoza OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 214848 (CompatibleNetwork Tianjin Compatible Network Technology Co., Ltd.) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 215294 (luminabroadband Lumina broadband UAB) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 215329 (RXTX SIA "RXTX Baltija") does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 215447 (PRIMEND Primend OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 215709 (AS-YOLLA YOLLA CALLS INTERNATIONAL OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 215730 (H2NEXUS-AS H2NEXUS LTD) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 216263 (RADICENTER Radicenter OU) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 216408 (TAVEX Tavid AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 219166 (labv6-AS) has an ASPA object with following set of provider ASes: 35708, 209533, 212895
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 219207 (AS-FUYANG-SIQIN) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 219342 (ALEKSEY-AS) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 219429 (Project) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 219436 (CrocNet) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 264850 (AS264850 - TODAS LAS REDES SA) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 396982 (GOOGLE-CLOUD-PLATFORM - Google LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [main] - INFO - AS 399073 (TBB-ASN - BUNNY TECHNOLOGY LLC) does not have an ASPA object
2026-07-26 15:54:30 +0300 - [generate_graph] - INFO - Graph successfully saved to "ee_aspa_objects.png"
country,as_numbers_with_aspa_obj,as_numbers_without_aspa_obj
EE,26,256
@tonusoo

tonusoo commented Jul 26, 2026

Copy link
Copy Markdown
Author

Austria:

at_aspa_objects

Belgium:

be_aspa_objects

Bulgaria:

bg_aspa_objects

Croatia:

hr_aspa_objects

Cyprus:

cy_aspa_objects

Czech Republic:

cz_aspa_objects

Denmark:

dk_aspa_objects

Estonia:

ee_aspa_objects

Finland:

fi_aspa_objects

France:

fr_aspa_objects

Germany:

de_aspa_objects

Greece:

gr_aspa_objects

Hungary:

hu_aspa_objects

Ireland:

ie_aspa_objects

Italy:

it_aspa_objects

Latvia:

lv_aspa_objects

Lithuania:

lt_aspa_objects

Luxembourg:

lu_aspa_objects

Malta:

mt_aspa_objects

Netherlands:

nl_aspa_objects

Poland:

pl_aspa_objects

Portugal:

pt_aspa_objects

Romania:

ro_aspa_objects

Slovakia:

sk_aspa_objects

Slovenia:

si_aspa_objects

Spain:

es_aspa_objects

Sweden:

se_aspa_objects

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment